diff --git a/resources/language-metavariables/tree-sitter-php/.eslintrc.js b/resources/language-metavariables/tree-sitter-php/.eslintrc.js new file mode 100644 index 000000000..b2e707a9e --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.eslintrc.js @@ -0,0 +1,20 @@ +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/resources/language-metavariables/tree-sitter-php/.gitattributes b/resources/language-metavariables/tree-sitter-php/.gitattributes new file mode 100644 index 000000000..8dfc39934 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.gitattributes @@ -0,0 +1,12 @@ +* text=auto eol=lf + +/src/** linguist-vendored +/examples/* linguist-vendored + +src/grammar.json linguist-generated +src/node-types.json linguist-generated +src/parser.c linguist-generated + +src/grammar.json -diff +src/node-types.json -diff +src/parser.c -diff diff --git a/resources/language-metavariables/tree-sitter-php/.github/ISSUE_TEMPLATE/bug_report.yml b/resources/language-metavariables/tree-sitter-php/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..aa913a616 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,59 @@ +name: Bug Report +description: File a bug or issue +title: "bug: " +labels: [bug] +body: + - type: markdown + attributes: + value: | + **Before** reporting an issue, make sure to search [existing issues](https://github.com/tree-sitter/tree-sitter-php/issues). Usage questions such as ***"How do I...?"*** either belong in [Discussions](https://github.com/tree-sitter/tree-sitter/discussions) upstream or in our [Discord server](https://discord.gg/w7nTvsVJhm) and will be closed. + If your issue is related to a bug in your editor-experience because your editor *leverages* tree-sitter and this parser, then it is likely your issue does *NOT* belong here and belongs in the relevant editor's repository. + - type: checkboxes + attributes: + label: Did you check existing issues? + description: Make sure you've checked all of the below before submitting an issue + options: + - label: I have read all the [tree-sitter docs](https://tree-sitter.github.io/tree-sitter/using-parsers) if it relates to using the parser + required: false + - label: I have searched the existing issues of tree-sitter-php + required: true + - type: input + attributes: + label: "Tree-Sitter CLI Version, if relevant (output of `tree-sitter --version`)" + placeholder: "tree-sitter 0.20.8 (6bbb50bef8249e6460e7d69e42cc8146622fa4fd)" + validations: + required: false + - type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. Please include any related errors you see such as parsing errors or tree-sitter cli errors. + validations: + required: true + - type: textarea + attributes: + label: Steps To Reproduce/Bad Parse Tree + description: Steps to reproduce the behavior. If you have a bad parse tree, please include it here. You can get this by running `tree-sitter parse ` and copying the output. + placeholder: | + 1. + 2. + 3. + validations: + required: true + - type: textarea + attributes: + label: Expected Behavior/Parse Tree + description: A concise description of what you expected to happen, or in the case of a bad parse tree, the expected parse tree. + validations: + required: true + - type: textarea + attributes: + label: Repro + description: Minimal code to reproduce this issue. Ideally this should be reproducible with the C library or the tree-sitter cli, do not suggest an editor or external tool. + value: | + // Example code that causes the issue + function foo() { + // Code that fails to parse, or causes an error + } + render: PHP + validations: + required: false diff --git a/resources/language-metavariables/tree-sitter-php/.github/ISSUE_TEMPLATE/config.yml b/resources/language-metavariables/tree-sitter-php/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..3ba13e0ce --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/resources/language-metavariables/tree-sitter-php/.github/ISSUE_TEMPLATE/feature_request.yml b/resources/language-metavariables/tree-sitter-php/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..8a3a53ebd --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,36 @@ +name: Feature Request +description: Suggest a new feature +title: "feature: " +labels: [enhancement] +body: + - type: checkboxes + attributes: + label: Did you check the tree-sitter docs? + description: Make sure you read all the docs before submitting a feature request + options: + - label: I have read all the [tree-sitter docs](https://tree-sitter.github.io/tree-sitter/using-parsers) if it relates to using the parser + required: false + - type: textarea + validations: + required: true + attributes: + label: Is your feature request related to a problem? Please describe. + description: A clear and concise description of what the problem is. Ex. I think the grammar models this rule incorrectly and can be improved, or the scanner can be improved by doing [...], or PHP has officially added a new feature that should be added to the grammar. + - type: textarea + validations: + required: true + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + - type: textarea + validations: + required: true + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + - type: textarea + validations: + required: false + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. If your feature request is related to a new PHP feature, please include a link to the relevant **official** PHP documentation. diff --git a/resources/language-metavariables/tree-sitter-php/.github/pull_request_template.md b/resources/language-metavariables/tree-sitter-php/.github/pull_request_template.md new file mode 100644 index 000000000..719e18969 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.github/pull_request_template.md @@ -0,0 +1,8 @@ +# 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/resources/language-metavariables/tree-sitter-php/.github/workflows/ci.yml b/resources/language-metavariables/tree-sitter-php/.github/workflows/ci.yml new file mode 100644 index 000000000..69f7c5031 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.github/workflows/ci.yml @@ -0,0 +1,37 @@ +name: CI + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, ubuntu-latest] + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + - uses: actions/setup-python@v4 + 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 + with: + node-version: 18 + - run: npm install + - run: npm test diff --git a/resources/language-metavariables/tree-sitter-php/.github/workflows/lint.yml b/resources/language-metavariables/tree-sitter-php/.github/workflows/lint.yml new file mode 100644 index 000000000..103e92ae7 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.github/workflows/lint.yml @@ -0,0 +1,19 @@ +name: Lint + +on: + push: + branches: + - master + pull_request: + branches: + - "**" + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install modules + run: npm install + - name: Run ESLint + run: npm run lint diff --git a/resources/language-metavariables/tree-sitter-php/.github/workflows/release.yml b/resources/language-metavariables/tree-sitter-php/.github/workflows/release.yml new file mode 100644 index 000000000..870eb84b1 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.github/workflows/release.yml @@ -0,0 +1,103 @@ +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/resources/language-metavariables/tree-sitter-php/.gitignore b/resources/language-metavariables/tree-sitter-php/.gitignore index 27fc43f72..8d3abd167 100644 --- a/resources/language-metavariables/tree-sitter-php/.gitignore +++ b/resources/language-metavariables/tree-sitter-php/.gitignore @@ -1,38 +1,21 @@ -# Rust artifacts Cargo.lock -target/ - -# Node artifacts -build/ -prebuilds/ -node_modules/ -*.tgz - -# Swift artifacts +node_modules +build +package-lock.json +/target/ .build/ - -# Go artifacts -go.sum -_obj/ - -# Python artifacts -.venv/ -dist/ -*.egg-info -*.whl - -# C artifacts +bindings/c/*.pc +bindings/c/*.h *.a +*.o *.so -*.so.* *.dylib -*.dll -*.pc -# Example dirs -/examples/*/ - -# Grammar volatiles -*.wasm -*.obj -*.o +# These files would be generated by 'tree-sitter generate' with the default +# settings. We don't want them because there's already a copy at the root. +php/Cargo.toml +php/binding.gyp +php/bindings +php_only/Cargo.toml +php_only/binding.gyp +php_only/bindings diff --git a/resources/language-metavariables/tree-sitter-php/.npmignore b/resources/language-metavariables/tree-sitter-php/.npmignore new file mode 100644 index 000000000..194ff8451 --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/.npmignore @@ -0,0 +1,5 @@ +/test +/examples +/build +/script +/target diff --git a/resources/language-metavariables/tree-sitter-php/Cargo.lock b/resources/language-metavariables/tree-sitter-php/Cargo.lock index 61056c7ae..f250146f7 100644 --- a/resources/language-metavariables/tree-sitter-php/Cargo.lock +++ b/resources/language-metavariables/tree-sitter-php/Cargo.lock @@ -61,7 +61,7 @@ dependencies = [ [[package]] name = "tree-sitter-php" -version = "0.22.2" +version = "0.22.0" dependencies = [ "cc", "tree-sitter", diff --git a/resources/language-metavariables/tree-sitter-php/Cargo.toml b/resources/language-metavariables/tree-sitter-php/Cargo.toml index 1890bb74a..d2f19e721 100644 --- a/resources/language-metavariables/tree-sitter-php/Cargo.toml +++ b/resources/language-metavariables/tree-sitter-php/Cargo.toml @@ -23,7 +23,7 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "~0.20.10" +tree-sitter = "~0.20" [build-dependencies] cc = "~1.0.83" diff --git a/resources/language-metavariables/tree-sitter-php/binding.gyp b/resources/language-metavariables/tree-sitter-php/binding.gyp index 8b59aaed4..b9d832c26 100644 --- a/resources/language-metavariables/tree-sitter-php/binding.gyp +++ b/resources/language-metavariables/tree-sitter-php/binding.gyp @@ -2,20 +2,20 @@ "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/resources/language-metavariables/tree-sitter-php/bindings/c/tree-sitter.pc.in b/resources/language-metavariables/tree-sitter-php/bindings/c/tree-sitter.pc.in new file mode 100644 index 000000000..80d60b6db --- /dev/null +++ b/resources/language-metavariables/tree-sitter-php/bindings/c/tree-sitter.pc.in @@ -0,0 +1,11 @@ +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/resources/language-metavariables/tree-sitter-php/bindings/go/binding.go b/resources/language-metavariables/tree-sitter-php/bindings/go/binding.go deleted file mode 100644 index f166e8593..000000000 --- a/resources/language-metavariables/tree-sitter-php/bindings/go/binding.go +++ /dev/null @@ -1,13 +0,0 @@ -package tree_sitter_php - -// #cgo CFLAGS: -std=c11 -fPIC -// #include "../../src/parser.c" -// // NOTE: if your language has an external scanner, add it here. -import "C" - -import "unsafe" - -// Get the tree-sitter Language for this grammar. -func Language() unsafe.Pointer { - return unsafe.Pointer(C.tree_sitter_php()) -} diff --git a/resources/language-metavariables/tree-sitter-php/bindings/go/binding_test.go b/resources/language-metavariables/tree-sitter-php/bindings/go/binding_test.go deleted file mode 100644 index ff21f148f..000000000 --- a/resources/language-metavariables/tree-sitter-php/bindings/go/binding_test.go +++ /dev/null @@ -1,15 +0,0 @@ -package tree_sitter_php_test - -import ( - "testing" - - tree_sitter "github.com/smacker/go-tree-sitter" - "github.com/tree-sitter/tree-sitter-php" -) - -func TestCanLoadGrammar(t *testing.T) { - language := tree_sitter.NewLanguage(tree_sitter_php.Language()) - if language == nil { - t.Errorf("Error loading Php grammar") - } -} diff --git a/resources/language-metavariables/tree-sitter-php/bindings/go/go.mod b/resources/language-metavariables/tree-sitter-php/bindings/go/go.mod deleted file mode 100644 index 6a76073bf..000000000 --- a/resources/language-metavariables/tree-sitter-php/bindings/go/go.mod +++ /dev/null @@ -1,5 +0,0 @@ -module github.com/tree-sitter/tree-sitter-php - -go 1.22 - -require github.com/smacker/go-tree-sitter v0.0.0-20230720070738-0d0a9f78d8f8 diff --git a/resources/language-metavariables/tree-sitter-php/bindings/node/binding.cc b/resources/language-metavariables/tree-sitter-php/bindings/node/binding.cc index 299a0fc1e..cd62e743c 100644 --- a/resources/language-metavariables/tree-sitter-php/bindings/node/binding.cc +++ b/resources/language-metavariables/tree-sitter-php/bindings/node/binding.cc @@ -1,20 +1,37 @@ -#include +#include "tree_sitter/parser.h" +#include +#include "nan.h" -typedef struct TSLanguage TSLanguage; +using namespace v8; -extern "C" TSLanguage *tree_sitter_php(); +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 -}; +namespace { -Napi::Object Init(Napi::Env env, Napi::Object exports) { - exports["name"] = Napi::String::New(env, "php"); - auto language = Napi::External::New(env, tree_sitter_php()); - language.TypeTag(&LANGUAGE_TYPE_TAG); - exports["language"] = language; - return exports; +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); } -NODE_API_MODULE(tree_sitter_php_binding, Init) +NODE_MODULE(tree_sitter_php_binding, Init) + +} // namespace diff --git a/resources/language-metavariables/tree-sitter-php/bindings/node/index.d.ts b/resources/language-metavariables/tree-sitter-php/bindings/node/index.d.ts deleted file mode 100644 index efe259eed..000000000 --- a/resources/language-metavariables/tree-sitter-php/bindings/node/index.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -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 language: Language; -export = language; diff --git a/resources/language-metavariables/tree-sitter-php/bindings/node/index.js b/resources/language-metavariables/tree-sitter-php/bindings/node/index.js index 6657bcf42..818c63dfc 100644 --- a/resources/language-metavariables/tree-sitter-php/bindings/node/index.js +++ b/resources/language-metavariables/tree-sitter-php/bindings/node/index.js @@ -1,7 +1,20 @@ -const root = require("path").join(__dirname, "..", ".."); - -module.exports = require("node-gyp-build")(root); +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 + } +} try { - module.exports.nodeTypeInfo = require("../../src/node-types.json"); + module.exports.php.nodeTypeInfo = require("../../php/src/node-types.json"); + module.exports.php_only.nodeTypeInfo = require("../../php_only/src/node-types.json"); } catch (_) {} diff --git a/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/__init__.py b/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/__init__.py deleted file mode 100644 index 58f24cde7..000000000 --- a/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -"Php grammar for tree-sitter" - -from ._binding import language - -__all__ = ["language"] diff --git a/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/__init__.pyi b/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/__init__.pyi deleted file mode 100644 index 5416666fc..000000000 --- a/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/__init__.pyi +++ /dev/null @@ -1 +0,0 @@ -def language() -> int: ... diff --git a/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/binding.c b/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/binding.c deleted file mode 100644 index 679b9ec6d..000000000 --- a/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/binding.c +++ /dev/null @@ -1,27 +0,0 @@ -#include - -typedef struct TSLanguage TSLanguage; - -TSLanguage *tree_sitter_php(void); - -static PyObject* _binding_language(PyObject *self, PyObject *args) { - return PyLong_FromVoidPtr(tree_sitter_php()); -} - -static PyMethodDef methods[] = { - {"language", _binding_language, METH_NOARGS, - "Get the tree-sitter language for this grammar."}, - {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/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/py.typed b/resources/language-metavariables/tree-sitter-php/bindings/python/tree_sitter_php/py.typed deleted file mode 100644 index e69de29bb..000000000 diff --git a/resources/language-metavariables/tree-sitter-php/bindings/rust/build.rs b/resources/language-metavariables/tree-sitter-php/bindings/rust/build.rs index 69125c136..f72577dd4 100644 --- a/resources/language-metavariables/tree-sitter-php/bindings/rust/build.rs +++ b/resources/language-metavariables/tree-sitter-php/bindings/rust/build.rs @@ -6,7 +6,7 @@ fn main() { let mut c_config = cc::Build::new(); c_config.include(&php_dir); c_config - .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-w") .flag_if_supported("-Wno-unused-but-set-variable") .flag_if_supported("-Wno-trigraphs"); diff --git a/resources/language-metavariables/tree-sitter-php/bindings/rust/lib.rs b/resources/language-metavariables/tree-sitter-php/bindings/rust/lib.rs index 6a41055a7..7222d9ae5 100644 --- a/resources/language-metavariables/tree-sitter-php/bindings/rust/lib.rs +++ b/resources/language-metavariables/tree-sitter-php/bindings/rust/lib.rs @@ -22,15 +22,11 @@ extern "C" { fn tree_sitter_php_only() -> Language; } -pub fn language() -> Language { - unsafe { tree_sitter_php_only() } -} - /// Get the tree-sitter [Language][] for this grammar. /// /// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html pub fn language_php() -> Language { - unsafe { tree_sitter_php_only() } + unsafe { tree_sitter_php() } } /// Get the tree-sitter [Language][] for this grammar. diff --git a/resources/language-metavariables/tree-sitter-php/bindings/swift/TreeSitterPhp/php.h b/resources/language-metavariables/tree-sitter-php/bindings/swift/TreeSitterPhp/php.h deleted file mode 100644 index 62e7b9fe7..000000000 --- a/resources/language-metavariables/tree-sitter-php/bindings/swift/TreeSitterPhp/php.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef TREE_SITTER_PHP_H_ -#define TREE_SITTER_PHP_H_ - -typedef struct TSLanguage TSLanguage; - -#ifdef __cplusplus -extern "C" { -#endif - -extern TSLanguage *tree_sitter_php(); -extern TSLanguage *tree_sitter_php_only(); - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PHP_H_ diff --git a/resources/language-metavariables/tree-sitter-php/package.json b/resources/language-metavariables/tree-sitter-php/package.json index ec785ab3f..834e33acc 100644 --- a/resources/language-metavariables/tree-sitter-php/package.json +++ b/resources/language-metavariables/tree-sitter-php/package.json @@ -3,20 +3,11 @@ "version": "0.22.2", "description": "PHP grammar for tree-sitter", "main": "bindings/node", - "types": "bindings/node", "keywords": [ "parser", "lexer", "php" ], - "files": [ - "grammar.js", - "binding.gyp", - "prebuilds/**", - "bindings/node/*", - "queries/*", - "src/**" - ], "author": "Josh Vera", "license": "MIT", "bugs": { @@ -24,25 +15,15 @@ }, "homepage": "https://github.com/tree-sitter/tree-sitter-php#readme", "dependencies": { - "tree-sitter": "^0.20.6", - "node-addon-api": "^7.1.0", - "node-gyp-build": "^4.8.0" - }, - "peerDependencies": { - "tree-sitter": "^0.21.0" - }, - "peerDependenciesMeta": { - "tree_sitter": { - "optional": true - } + "nan": "^2.19.0", + "tree-sitter": "^0.20.6" }, "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", - "prebuildify": "^6.0.0" + "tree-sitter-cli": "^0.21.0" }, "scripts": { "build": "npm run build-php && npm run build-php_only && node-gyp rebuild", @@ -53,9 +34,7 @@ "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", - "install": "node-gyp-build", - "prebuildify": "prebuildify --napi --strip" + "test-php_only": "cd php_only && tree-sitter test" }, "repository": { "type": "git", diff --git a/resources/language-metavariables/tree-sitter-php/php/.editorconfig b/resources/language-metavariables/tree-sitter-php/php/.editorconfig deleted file mode 100644 index d3a8b5b69..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/.editorconfig +++ /dev/null @@ -1,39 +0,0 @@ -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/resources/language-metavariables/tree-sitter-php/php/.gitattributes b/resources/language-metavariables/tree-sitter-php/php/.gitattributes deleted file mode 100644 index ffb52abec..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/.gitattributes +++ /dev/null @@ -1,11 +0,0 @@ -* text eol=lf - -src/*.json linguist-generated -src/parser.c linguist-generated -src/tree_sitter/* linguist-generated - -bindings/** linguist-generated -binding.gyp linguist-generated -setup.py linguist-generated -Makefile linguist-generated -Package.swift linguist-generated diff --git a/resources/language-metavariables/tree-sitter-php/php/.gitignore b/resources/language-metavariables/tree-sitter-php/php/.gitignore deleted file mode 100644 index 27fc43f72..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/.gitignore +++ /dev/null @@ -1,38 +0,0 @@ -# Rust artifacts -Cargo.lock -target/ - -# Node artifacts -build/ -prebuilds/ -node_modules/ -*.tgz - -# Swift artifacts -.build/ - -# Go artifacts -go.sum -_obj/ - -# Python artifacts -.venv/ -dist/ -*.egg-info -*.whl - -# C artifacts -*.a -*.so -*.so.* -*.dylib -*.dll -*.pc - -# Example dirs -/examples/*/ - -# Grammar volatiles -*.wasm -*.obj -*.o diff --git a/resources/language-metavariables/tree-sitter-php/php/Cargo.toml b/resources/language-metavariables/tree-sitter-php/php/Cargo.toml index 5a49c45d7..f5be4cf39 100644 --- a/resources/language-metavariables/tree-sitter-php/php/Cargo.toml +++ b/resources/language-metavariables/tree-sitter-php/php/Cargo.toml @@ -1,23 +1,26 @@ [package] name = "tree-sitter-php" -description = "Php grammar for tree-sitter" +description = "php grammar for the tree-sitter parsing library" version = "0.0.1" -license = "MIT" -readme = "README.md" -keywords = ["incremental", "parsing", "tree-sitter", "php"] +keywords = ["incremental", "parsing", "php"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-php" -edition = "2021" -autoexamples = false +edition = "2018" +license = "MIT" build = "bindings/rust/build.rs" -include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", +] [lib] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = ">=0.22.2" +tree-sitter = "~0.20.10" [build-dependencies] -cc = "1.0.87" +cc = "1.0" diff --git a/resources/language-metavariables/tree-sitter-php/php/Makefile b/resources/language-metavariables/tree-sitter-php/php/Makefile deleted file mode 100644 index bf399301c..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/Makefile +++ /dev/null @@ -1,110 +0,0 @@ -VERSION := 0.0.1 - -LANGUAGE_NAME := tree-sitter-php - -# 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 - -# object files -OBJS := $(patsubst %.c,%.o,$(wildcard $(SRC_DIR)/*.c)) - -# 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)|' $< > $@ - -$(SRC_DIR)/parser.c: 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 -m644 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) - -test: - $(TS) test - -.PHONY: all install uninstall clean test diff --git a/resources/language-metavariables/tree-sitter-php/php/Package.swift b/resources/language-metavariables/tree-sitter-php/php/Package.swift deleted file mode 100644 index 532a0be4b..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/Package.swift +++ /dev/null @@ -1,48 +0,0 @@ -// swift-tools-version:5.3 -import PackageDescription - -let package = Package( - name: "TreeSitterPhp", - platforms: [.macOS(.v10_13), .iOS(.v11)], - products: [ - .library(name: "TreeSitterPhp", targets: ["TreeSitterPhp"]), - ], - dependencies: [], - targets: [ - .target(name: "TreeSitterPhp", - path: ".", - exclude: [ - "Cargo.toml", - "Makefile", - "binding.gyp", - "bindings/c", - "bindings/go", - "bindings/node", - "bindings/python", - "bindings/rust", - "prebuilds", - "grammar.js", - "package.json", - "package-lock.json", - "pyproject.toml", - "setup.py", - "test", - "examples", - ".editorconfig", - ".github", - ".gitignore", - ".gitattributes", - ".gitmodules", - ], - sources: [ - "src/parser.c", - // NOTE: if your language has an external scanner, add it here. - ], - resources: [ - .copy("queries") - ], - publicHeadersPath: "bindings/swift", - cSettings: [.headerSearchPath("src")]) - ], - cLanguageStandard: .c11 -) diff --git a/resources/language-metavariables/tree-sitter-php/php/binding.gyp b/resources/language-metavariables/tree-sitter-php/php/binding.gyp index 8b59aaed4..3c4b44b18 100644 --- a/resources/language-metavariables/tree-sitter-php/php/binding.gyp +++ b/resources/language-metavariables/tree-sitter-php/php/binding.gyp @@ -2,20 +2,18 @@ "targets": [ { "target_name": "tree_sitter_php_binding", - "dependencies": [ - " +#include "tree_sitter/parser.h" +#include +#include "nan.h" -typedef struct TSLanguage TSLanguage; +using namespace v8; -extern "C" TSLanguage *tree_sitter_php(); +extern "C" TSLanguage * tree_sitter_php(); -// "tree-sitter", "language" hashed with BLAKE2 -const napi_type_tag LANGUAGE_TYPE_TAG = { - 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 -}; +namespace { -Napi::Object Init(Napi::Env env, Napi::Object exports) { - exports["name"] = Napi::String::New(env, "php"); - auto language = Napi::External::New(env, tree_sitter_php()); - language.TypeTag(&LANGUAGE_TYPE_TAG); - exports["language"] = language; - return exports; +NAN_METHOD(New) {} + +void Init(Local exports, Local module) { + Local tpl = Nan::New(New); + tpl->SetClassName(Nan::New("Language").ToLocalChecked()); + tpl->InstanceTemplate()->SetInternalFieldCount(1); + + Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); + Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); + Nan::SetInternalFieldPointer(instance, 0, tree_sitter_php()); + + Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("php").ToLocalChecked()); + Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); } -NODE_API_MODULE(tree_sitter_php_binding, Init) +NODE_MODULE(tree_sitter_php_binding, Init) + +} // namespace diff --git a/resources/language-metavariables/tree-sitter-php/php/bindings/node/index.d.ts b/resources/language-metavariables/tree-sitter-php/php/bindings/node/index.d.ts deleted file mode 100644 index efe259eed..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/bindings/node/index.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -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 language: Language; -export = language; diff --git a/resources/language-metavariables/tree-sitter-php/php/bindings/node/index.js b/resources/language-metavariables/tree-sitter-php/php/bindings/node/index.js index 6657bcf42..61ef5153a 100644 --- a/resources/language-metavariables/tree-sitter-php/php/bindings/node/index.js +++ b/resources/language-metavariables/tree-sitter-php/php/bindings/node/index.js @@ -1,6 +1,18 @@ -const root = require("path").join(__dirname, "..", ".."); - -module.exports = require("node-gyp-build")(root); +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 + } +} try { module.exports.nodeTypeInfo = require("../../src/node-types.json"); diff --git a/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/__init__.py b/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/__init__.py deleted file mode 100644 index 58f24cde7..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -"Php grammar for tree-sitter" - -from ._binding import language - -__all__ = ["language"] diff --git a/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/__init__.pyi b/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/__init__.pyi deleted file mode 100644 index 5416666fc..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/__init__.pyi +++ /dev/null @@ -1 +0,0 @@ -def language() -> int: ... diff --git a/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/binding.c b/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/binding.c deleted file mode 100644 index 679b9ec6d..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/binding.c +++ /dev/null @@ -1,27 +0,0 @@ -#include - -typedef struct TSLanguage TSLanguage; - -TSLanguage *tree_sitter_php(void); - -static PyObject* _binding_language(PyObject *self, PyObject *args) { - return PyLong_FromVoidPtr(tree_sitter_php()); -} - -static PyMethodDef methods[] = { - {"language", _binding_language, METH_NOARGS, - "Get the tree-sitter language for this grammar."}, - {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/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/py.typed b/resources/language-metavariables/tree-sitter-php/php/bindings/python/tree_sitter_php/py.typed deleted file mode 100644 index e69de29bb..000000000 diff --git a/resources/language-metavariables/tree-sitter-php/php/bindings/rust/build.rs b/resources/language-metavariables/tree-sitter-php/php/bindings/rust/build.rs index f9e53a8ab..f14262473 100644 --- a/resources/language-metavariables/tree-sitter-php/php/bindings/rust/build.rs +++ b/resources/language-metavariables/tree-sitter-php/php/bindings/rust/build.rs @@ -2,18 +2,39 @@ fn main() { let src_dir = std::path::Path::new("src"); let mut c_config = cc::Build::new(); - c_config.std("c11").include(src_dir); - + c_config.include(&src_dir); + c_config + .flag_if_supported("-w") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - // NOTE: if your language uses an external scanner, uncomment this block: + // If your language uses an external scanner written in C, + // then include this block of code: + /* let scanner_path = src_dir.join("scanner.c"); c_config.file(&scanner_path); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); */ - c_config.compile("tree-sitter-php"); + c_config.compile("parser"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + // If your language uses an external scanner written in C++, + // then include this block of code: + + /* + let mut cpp_config = cc::Build::new(); + cpp_config.cpp(true); + cpp_config.include(&src_dir); + cpp_config + .flag_if_supported("-w") + .flag_if_supported("-Wno-unused-but-set-variable"); + let scanner_path = src_dir.join("scanner.cc"); + cpp_config.file(&scanner_path); + cpp_config.compile("scanner"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ } diff --git a/resources/language-metavariables/tree-sitter-php/php/bindings/rust/lib.rs b/resources/language-metavariables/tree-sitter-php/php/bindings/rust/lib.rs index 555c6a222..147fe362e 100644 --- a/resources/language-metavariables/tree-sitter-php/php/bindings/rust/lib.rs +++ b/resources/language-metavariables/tree-sitter-php/php/bindings/rust/lib.rs @@ -1,15 +1,13 @@ -//! This crate provides Php language support for the [tree-sitter][] parsing library. +//! This crate provides php language support for the [tree-sitter][] parsing library. //! //! Typically, you will use the [language][language func] function to add this language to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` -//! let code = r#" -//! "#; +//! let code = ""; //! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(&tree_sitter_php::language()).expect("Error loading Php grammar"); +//! parser.set_language(tree_sitter_php::language()).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 @@ -33,14 +31,14 @@ pub fn language() -> 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 NODE_TYPES: &str = include_str!("../../src/node-types.json"); +pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); // Uncomment these to include any queries that this grammar contains -// pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); -// pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); -// pub const LOCALS_QUERY: &str = include_str!("../../queries/locals.scm"); -// pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); +// pub const HIGHLIGHTS_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"); #[cfg(test)] mod tests { @@ -48,7 +46,7 @@ mod tests { fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(&super::language()) - .expect("Error loading Php grammar"); + .set_language(super::language()) + .expect("Error loading php language"); } } diff --git a/resources/language-metavariables/tree-sitter-php/php/bindings/swift/TreeSitterPhp/php.h b/resources/language-metavariables/tree-sitter-php/php/bindings/swift/TreeSitterPhp/php.h deleted file mode 100644 index 047b5348e..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/bindings/swift/TreeSitterPhp/php.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef TREE_SITTER_PHP_H_ -#define TREE_SITTER_PHP_H_ - -typedef struct TSLanguage TSLanguage; - -#ifdef __cplusplus -extern "C" { -#endif - -const TSLanguage *tree_sitter_php(void); - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PHP_H_ diff --git a/resources/language-metavariables/tree-sitter-php/php/package.json b/resources/language-metavariables/tree-sitter-php/php/package.json index 3528aec08..4820a82d2 100644 --- a/resources/language-metavariables/tree-sitter-php/php/package.json +++ b/resources/language-metavariables/tree-sitter-php/php/package.json @@ -1,6 +1,5 @@ { "main": "../bindings/node/php", - "types": "bindings/node", "tree-sitter": [ { "scope": "source.php", @@ -17,31 +16,5 @@ "../common/scanner.h" ] } - ], - "dependencies": { - "node-gyp-build": "^4.8.0" - }, - "peerDependencies": { - "tree-sitter": "^0.21.0" - }, - "peerDependenciesMeta": { - "tree_sitter": { - "optional": true - } - }, - "devDependencies": { - "prebuildify": "^6.0.0" - }, - "scripts": { - "install": "node-gyp-build", - "prebuildify": "prebuildify --napi --strip" - }, - "files": [ - "grammar.js", - "binding.gyp", - "prebuilds/**", - "bindings/node/*", - "queries/*", - "src/**" ] } diff --git a/resources/language-metavariables/tree-sitter-php/php/pyproject.toml b/resources/language-metavariables/tree-sitter-php/php/pyproject.toml deleted file mode 100644 index 555cf8bda..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/pyproject.toml +++ /dev/null @@ -1,29 +0,0 @@ -[build-system] -requires = ["setuptools>=42", "wheel"] -build-backend = "setuptools.build_meta" - -[project] -name = "tree-sitter-php" -description = "Php grammar for tree-sitter" -version = "0.0.1" -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" -] -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/resources/language-metavariables/tree-sitter-php/php/setup.py b/resources/language-metavariables/tree-sitter-php/php/setup.py deleted file mode 100644 index 128e46c4b..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/setup.py +++ /dev/null @@ -1,57 +0,0 @@ -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_php", "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_php": ["*.pyi", "py.typed"], - "tree_sitter_php.queries": ["*.scm"], - }, - ext_package="tree_sitter_php", - ext_modules=[ - Extension( - name="_binding", - sources=[ - "bindings/python/tree_sitter_php/binding.c", - "src/parser.c", - # NOTE: if your language uses an external scanner, add it here. - ], - extra_compile_args=( - ["-std=c11"] if system() != 'Windows' else [] - ), - define_macros=[ - ("Py_LIMITED_API", "0x03080000"), - ("PY_SSIZE_T_CLEAN", None) - ], - include_dirs=["src"], - py_limited_api=True, - ) - ], - cmdclass={ - "build": Build, - "bdist_wheel": BdistWheel - }, - zip_safe=False -) diff --git a/resources/language-metavariables/tree-sitter-php/php/src/grammar.json b/resources/language-metavariables/tree-sitter-php/php/src/grammar.json index 34f9e1864..80088191c 100644 --- a/resources/language-metavariables/tree-sitter-php/php/src/grammar.json +++ b/resources/language-metavariables/tree-sitter-php/php/src/grammar.json @@ -393,8 +393,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "namespace_name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, + { + "type": "SYMBOL", + "name": "namespace_name" + } + ] } }, { @@ -845,8 +854,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" + } + ] } }, { @@ -876,8 +894,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" + } + ] } }, { @@ -937,6 +964,10 @@ { "type": "SYMBOL", "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] }, @@ -968,6 +999,10 @@ { "type": "SYMBOL", "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] } @@ -1014,8 +1049,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] } }, { @@ -1040,6 +1084,10 @@ { "type": "STRING", "value": "int" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] }, @@ -1146,8 +1194,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" + } + ] } }, { @@ -1228,6 +1285,10 @@ { "type": "SYMBOL", "name": "abstract_modifier" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] } @@ -1267,8 +1328,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, + { + "type": "SYMBOL", + "name": "name" + } + ] } }, { @@ -1326,10 +1396,14 @@ "value": "{" }, { - "type": "REPEAT", + "type": "FIELD", + "name": "declarations", "content": { - "type": "SYMBOL", - "name": "_member_declaration" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_member_declaration" + } } }, { @@ -1693,6 +1767,10 @@ { "type": "SYMBOL", "name": "readonly_modifier" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] } @@ -1751,10 +1829,14 @@ ] }, { - "type": "REPEAT", + "type": "FIELD", + "name": "modifier", "content": { - "type": "SYMBOL", - "name": "_modifier" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } } }, { @@ -1830,6 +1912,10 @@ { "type": "SYMBOL", "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] }, @@ -1861,6 +1947,10 @@ { "type": "SYMBOL", "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] } @@ -2148,6 +2238,10 @@ }, "named": true, "value": "name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] } @@ -2282,63 +2376,75 @@ "value": "(" }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "simple_parameter" - }, - { - "type": "SYMBOL", - "name": "variadic_parameter" - }, - { - "type": "SYMBOL", - "name": "property_promotion_parameter" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", + "type": "FIELD", + "name": "parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "," + "type": "SYMBOL", + "name": "simple_parameter" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "simple_parameter" - }, - { - "type": "SYMBOL", - "name": "variadic_parameter" - }, - { - "type": "SYMBOL", - "name": "property_promotion_parameter" - } - ] + "type": "SYMBOL", + "name": "variadic_parameter" + }, + { + "type": "SYMBOL", + "name": "property_promotion_parameter" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "simple_parameter" + }, + { + "type": "SYMBOL", + "name": "variadic_parameter" + }, + { + "type": "SYMBOL", + "name": "property_promotion_parameter" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" + } + ] + } + ] + } } - } - ] - }, - { - "type": "BLANK" - } - ] + ] + }, + { + "type": "BLANK" + } + ] + } }, { "type": "CHOICE", @@ -2651,6 +2757,10 @@ { "type": "SYMBOL", "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] }, @@ -3001,8 +3111,12 @@ "value": "echo" }, { - "type": "SYMBOL", - "name": "_expressions" + "type": "FIELD", + "name": "expressions", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } }, { "type": "SYMBOL", @@ -3211,6 +3325,10 @@ "_literal": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, { "type": "SYMBOL", "name": "integer" @@ -3230,10 +3348,6 @@ { "type": "SYMBOL", "name": "null" - }, - { - "type": "SYMBOL", - "name": "grit_metavariable" } ] }, @@ -3734,10 +3848,14 @@ "value": ":" }, { - "type": "REPEAT", + "type": "FIELD", + "name": "statement", "content": { - "type": "SYMBOL", - "name": "_statement" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } } }, { @@ -3821,8 +3939,12 @@ "value": "(" }, { - "type": "SYMBOL", - "name": "_expression" + "type": "FIELD", + "name": "expression", + "content": { + "type": "SYMBOL", + "name": "_expression" + } }, { "type": "ALIAS", @@ -4587,10 +4709,23 @@ "value": "{" }, { - "type": "REPEAT", + "type": "FIELD", + "name": "statements", "content": { - "type": "SYMBOL", - "name": "_statement" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + } + ] } }, { @@ -4877,6 +5012,10 @@ { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, { "type": "SYMBOL", "name": "name" @@ -5075,6 +5214,10 @@ { "type": "SYMBOL", "name": "variable_name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] }, @@ -5102,6 +5245,10 @@ { "type": "SYMBOL", "name": "variable_name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] } @@ -5252,6 +5399,10 @@ "_class_type_designator": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, { "type": "SYMBOL", "name": "qualified_name" @@ -6075,6 +6226,10 @@ "_callable_variable": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, { "type": "SYMBOL", "name": "_variable_name" @@ -6113,6 +6268,10 @@ "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, { "type": "SYMBOL", "name": "name" @@ -6213,6 +6372,10 @@ "type": "SYMBOL", "name": "name" }, + { + "type": "SYMBOL", + "name": "grit_metavariable" + }, { "type": "ALIAS", "content": { @@ -6569,6 +6732,10 @@ { "type": "SYMBOL", "name": "_variable_name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] } @@ -6719,37 +6886,41 @@ "value": "(" }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "array_element_initializer" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "array_element_initializer" - } - ] + "type": "FIELD", + "name": "array_element", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "array_element_initializer" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "array_element_initializer" + } + ] + } } - } - ] - }, - { - "type": "BLANK" - } - ] + ] + }, + { + "type": "BLANK" + } + ] + } }, { "type": "CHOICE", @@ -6777,37 +6948,41 @@ "value": "[" }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "array_element_initializer" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "array_element_initializer" - } - ] + "type": "FIELD", + "name": "array_element", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "array_element_initializer" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "array_element_initializer" + } + ] + } } - } - ] - }, - { - "type": "BLANK" - } - ] + ] + }, + { + "type": "BLANK" + } + ] + } }, { "type": "CHOICE", @@ -6908,6 +7083,10 @@ { "type": "SYMBOL", "name": "qualified_name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] }, @@ -6968,8 +7147,17 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" + } + ] } } ] @@ -7800,8 +7988,17 @@ "value": "$" }, { - "type": "SYMBOL", - "name": "name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "name" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" + } + ] } ] }, @@ -7922,25 +8119,33 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "FIELD", + "name": "expression_l", + "content": { + "type": "SYMBOL", + "name": "_expression" + } }, { "type": "STRING", "value": "=>" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "by_ref" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] + "type": "FIELD", + "name": "expression_r", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "by_ref" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } } ] }, @@ -9195,6 +9400,10 @@ [ "namespace_use_declaration", "namespace_name_as_prefix" + ], + [ + "_modifier", + "named_type" ] ], "precedences": [], diff --git a/resources/language-metavariables/tree-sitter-php/php/src/node-types.json b/resources/language-metavariables/tree-sitter-php/php/src/node-types.json index 0a2747a20..154f38624 100644 --- a/resources/language-metavariables/tree-sitter-php/php/src/node-types.json +++ b/resources/language-metavariables/tree-sitter-php/php/src/node-types.json @@ -147,6 +147,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "member_access_expression", "named": true @@ -452,6 +456,10 @@ "type": "by_ref", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "variable_name", "named": true @@ -525,25 +533,55 @@ { "type": "array_creation_expression", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_element_initializer", - "named": true - } - ] + "fields": { + "array_element": { + "multiple": true, + "required": false, + "types": [ + { + "type": ",", + "named": false + }, + { + "type": "array_element_initializer", + "named": true + } + ] + } } }, { "type": "array_element_initializer", "named": true, - "fields": {}, + "fields": { + "expression_l": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + } + ] + }, + "expression_r": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "by_ref", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ { "type": "_expression", @@ -650,6 +688,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "list_literal", "named": true @@ -719,6 +761,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -780,6 +826,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "member_access_expression", "named": true @@ -892,6 +942,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -1051,6 +1105,10 @@ "type": "dynamic_variable_name", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "member_access_expression", "named": true @@ -1119,6 +1177,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "member_access_expression", "named": true @@ -1291,6 +1353,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "heredoc", "named": true @@ -1390,6 +1456,10 @@ "type": "final_modifier", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "readonly_modifier", "named": true @@ -1400,6 +1470,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -1474,16 +1548,21 @@ { "type": "compound_statement", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - } - ] + "fields": { + "statements": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "grit_metavariable", + "named": true + } + ] + } } }, { @@ -1609,28 +1688,29 @@ { "type": "declaration_list", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "const_declaration", - "named": true - }, - { - "type": "method_declaration", - "named": true - }, - { - "type": "property_declaration", - "named": true - }, - { - "type": "use_declaration", - "named": true - } - ] + "fields": { + "declarations": { + "multiple": true, + "required": false, + "types": [ + { + "type": "const_declaration", + "named": true + }, + { + "type": "method_declaration", + "named": true + }, + { + "type": "property_declaration", + "named": true + }, + { + "type": "use_declaration", + "named": true + } + ] + } } }, { @@ -1761,20 +1841,21 @@ { "type": "echo_statement", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "sequence_expression", - "named": true - } - ] + "fields": { + "expressions": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } } }, { @@ -1889,6 +1970,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -1951,6 +2036,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -2065,7 +2154,18 @@ { "type": "for_statement", "named": true, - "fields": {}, + "fields": { + "statement": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -2102,10 +2202,20 @@ "named": true } ] + }, + "expression": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] } }, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -2130,24 +2240,33 @@ { "type": "formal_parameters", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "property_promotion_parameter", - "named": true - }, - { - "type": "simple_parameter", - "named": true - }, - { - "type": "variadic_parameter", - "named": true - } - ] + "fields": { + "parameters": { + "multiple": true, + "required": false, + "types": [ + { + "type": ",", + "named": false + }, + { + "type": "grit_metavariable", + "named": true + }, + { + "type": "property_promotion_parameter", + "named": true + }, + { + "type": "simple_parameter", + "named": true + }, + { + "type": "variadic_parameter", + "named": true + } + ] + } } }, { @@ -2184,6 +2303,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "heredoc", "named": true @@ -2260,6 +2383,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -2522,6 +2649,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -2587,6 +2718,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "list_literal", "named": true @@ -2744,6 +2879,10 @@ "type": "dynamic_variable_name", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -2782,6 +2921,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "heredoc", "named": true @@ -2868,6 +3011,10 @@ "type": "dynamic_variable_name", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -2906,6 +3053,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "heredoc", "named": true @@ -2990,10 +3141,48 @@ } ] }, + "modifier": { + "multiple": true, + "required": false, + "types": [ + { + "type": "abstract_modifier", + "named": true + }, + { + "type": "final_modifier", + "named": true + }, + { + "type": "grit_metavariable", + "named": true + }, + { + "type": "readonly_modifier", + "named": true + }, + { + "type": "static_modifier", + "named": true + }, + { + "type": "var_modifier", + "named": true + }, + { + "type": "visibility_modifier", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -3034,36 +3223,6 @@ } ] } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "abstract_modifier", - "named": true - }, - { - "type": "final_modifier", - "named": true - }, - { - "type": "readonly_modifier", - "named": true - }, - { - "type": "static_modifier", - "named": true - }, - { - "type": "var_modifier", - "named": true - }, - { - "type": "visibility_modifier", - "named": true - } - ] } }, { @@ -3094,6 +3253,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -3138,6 +3301,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "namespace_name", "named": true @@ -3328,6 +3495,10 @@ "type": "dynamic_variable_name", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -3366,6 +3537,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "heredoc", "named": true @@ -3452,6 +3627,10 @@ "type": "dynamic_variable_name", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -3490,6 +3669,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "heredoc", "named": true @@ -3589,6 +3772,10 @@ "type": "dynamic_variable_name", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "member_access_expression", "named": true @@ -3757,6 +3944,10 @@ "type": "final_modifier", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "property_element", "named": true @@ -3924,6 +4115,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "list_literal", "named": true @@ -4055,6 +4250,10 @@ "type": "dynamic_variable_name", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -4093,6 +4292,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "heredoc", "named": true @@ -4203,6 +4406,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "heredoc", "named": true @@ -4463,6 +4670,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "heredoc", "named": true @@ -4628,6 +4839,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -4772,6 +4987,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "member_access_expression", "named": true @@ -4827,6 +5046,10 @@ "type": "function_call_expression", "named": true }, + { + "type": "grit_metavariable", + "named": true + }, { "type": "member_access_expression", "named": true @@ -4908,6 +5131,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true @@ -4969,6 +5196,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "grit_metavariable", + "named": true + }, { "type": "name", "named": true diff --git a/resources/language-metavariables/tree-sitter-php/php/src/parser.c b/resources/language-metavariables/tree-sitter-php/php/src/parser.c index 1866fdae7..058489cb9 100644 --- a/resources/language-metavariables/tree-sitter-php/php/src/parser.c +++ b/resources/language-metavariables/tree-sitter-php/php/src/parser.c @@ -1,19 +1,20 @@ #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 2682 -#define LARGE_STATE_COUNT 581 -#define SYMBOL_COUNT 408 +#define STATE_COUNT 2752 +#define LARGE_STATE_COUNT 584 +#define SYMBOL_COUNT 409 #define ALIAS_COUNT 0 #define TOKEN_COUNT 195 #define EXTERNAL_TOKEN_COUNT 12 -#define FIELD_COUNT 26 +#define FIELD_COUNT 34 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 189 +#define PRODUCTION_ID_COUNT 203 enum ts_symbol_identifiers { sym_name = 1, @@ -397,32 +398,33 @@ enum ts_symbol_identifiers { aux_sym_base_clause_repeat1 = 379, aux_sym_enum_declaration_list_repeat1 = 380, aux_sym_declaration_list_repeat1 = 381, - aux_sym__const_declaration_repeat1 = 382, - aux_sym_property_declaration_repeat1 = 383, - aux_sym_property_declaration_repeat2 = 384, - aux_sym_use_list_repeat1 = 385, - aux_sym_formal_parameters_repeat1 = 386, - aux_sym_union_type_repeat1 = 387, - aux_sym_intersection_type_repeat1 = 388, - aux_sym_disjunctive_normal_form_type_repeat1 = 389, - aux_sym_unset_statement_repeat1 = 390, - aux_sym_try_statement_repeat1 = 391, - aux_sym_type_list_repeat1 = 392, - aux_sym_if_statement_repeat1 = 393, - aux_sym_if_statement_repeat2 = 394, - aux_sym_match_block_repeat1 = 395, - aux_sym_match_condition_list_repeat1 = 396, - aux_sym_switch_block_repeat1 = 397, - aux_sym_anonymous_function_use_clause_repeat1 = 398, - aux_sym__list_destructing_repeat1 = 399, - aux_sym__array_destructing_repeat1 = 400, - aux_sym_arguments_repeat1 = 401, - aux_sym_array_creation_expression_repeat1 = 402, - aux_sym_attribute_group_repeat1 = 403, - aux_sym_attribute_list_repeat1 = 404, - aux_sym_string_repeat1 = 405, - aux_sym_heredoc_body_repeat1 = 406, - aux_sym_nowdoc_body_repeat1 = 407, + aux_sym_class_interface_clause_repeat1 = 382, + aux_sym__const_declaration_repeat1 = 383, + aux_sym_property_declaration_repeat1 = 384, + aux_sym_property_declaration_repeat2 = 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[] = { @@ -808,6 +810,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_base_clause_repeat1] = "base_clause_repeat1", [aux_sym_enum_declaration_list_repeat1] = "enum_declaration_list_repeat1", [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", + [aux_sym_class_interface_clause_repeat1] = "class_interface_clause_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", @@ -1219,6 +1222,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_base_clause_repeat1] = aux_sym_base_clause_repeat1, [aux_sym_enum_declaration_list_repeat1] = aux_sym_enum_declaration_list_repeat1, [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, + [aux_sym_class_interface_clause_repeat1] = aux_sym_class_interface_clause_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, @@ -2779,6 +2783,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_class_interface_clause_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__const_declaration_repeat1] = { .visible = false, .named = false, @@ -2889,29 +2897,37 @@ enum ts_field_identifiers { field_alternative = 1, field_argument = 2, field_arguments = 3, - field_attributes = 4, - field_body = 5, - field_condition = 6, - field_conditional_expressions = 7, - field_default_value = 8, - field_end_tag = 9, - 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_type = 24, - field_value = 25, - field_visibility = 26, + field_array_element = 4, + field_attributes = 5, + field_body = 6, + field_condition = 7, + field_conditional_expressions = 8, + field_declarations = 9, + field_default_value = 10, + field_end_tag = 11, + field_expression = 12, + field_expression_l = 13, + field_expression_r = 14, + field_expressions = 15, + field_function = 16, + field_identifier = 17, + field_left = 18, + field_modifier = 19, + field_name = 20, + field_object = 21, + field_operator = 22, + field_parameters = 23, + field_readonly = 24, + field_reference_modifier = 25, + field_return_expression = 26, + field_return_type = 27, + field_right = 28, + field_scope = 29, + field_statement = 30, + field_statements = 31, + field_type = 32, + field_value = 33, + field_visibility = 34, }; static const char * const ts_field_names[] = { @@ -2919,12 +2935,18 @@ static const char * const ts_field_names[] = { [field_alternative] = "alternative", [field_argument] = "argument", [field_arguments] = "arguments", + [field_array_element] = "array_element", [field_attributes] = "attributes", [field_body] = "body", [field_condition] = "condition", [field_conditional_expressions] = "conditional_expressions", + [field_declarations] = "declarations", [field_default_value] = "default_value", [field_end_tag] = "end_tag", + [field_expression] = "expression", + [field_expression_l] = "expression_l", + [field_expression_r] = "expression_r", + [field_expressions] = "expressions", [field_function] = "function", [field_identifier] = "identifier", [field_left] = "left", @@ -2939,6 +2961,8 @@ static const char * const ts_field_names[] = { [field_return_type] = "return_type", [field_right] = "right", [field_scope] = "scope", + [field_statement] = "statement", + [field_statements] = "statements", [field_type] = "type", [field_value] = "value", [field_visibility] = "visibility", @@ -2952,180 +2976,194 @@ 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}, + [9] = {.index = 10, .length = 2}, + [10] = {.index = 12, .length = 5}, [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 = 2}, - [34] = {.index = 67, .length = 3}, - [35] = {.index = 70, .length = 3}, - [36] = {.index = 73, .length = 3}, - [37] = {.index = 76, .length = 1}, - [38] = {.index = 77, .length = 3}, - [39] = {.index = 80, .length = 2}, - [40] = {.index = 82, .length = 1}, - [41] = {.index = 83, .length = 3}, - [42] = {.index = 86, .length = 2}, - [43] = {.index = 88, .length = 3}, - [44] = {.index = 91, .length = 2}, - [45] = {.index = 93, .length = 1}, - [46] = {.index = 94, .length = 3}, - [47] = {.index = 97, .length = 3}, - [48] = {.index = 100, .length = 1}, + [15] = {.index = 24, .length = 1}, + [16] = {.index = 25, .length = 2}, + [17] = {.index = 27, .length = 2}, + [19] = {.index = 29, .length = 1}, + [20] = {.index = 30, .length = 2}, + [21] = {.index = 32, .length = 1}, + [22] = {.index = 33, .length = 2}, + [23] = {.index = 35, .length = 2}, + [24] = {.index = 37, .length = 3}, + [25] = {.index = 40, .length = 1}, + [26] = {.index = 41, .length = 5}, + [27] = {.index = 46, .length = 2}, + [28] = {.index = 48, .length = 2}, + [29] = {.index = 50, .length = 2}, + [30] = {.index = 52, .length = 6}, + [31] = {.index = 58, .length = 2}, + [32] = {.index = 60, .length = 2}, + [33] = {.index = 62, .length = 2}, + [34] = {.index = 64, .length = 2}, + [35] = {.index = 66, .length = 2}, + [36] = {.index = 68, .length = 2}, + [37] = {.index = 70, .length = 3}, + [38] = {.index = 73, .length = 3}, + [39] = {.index = 76, .length = 3}, + [40] = {.index = 79, .length = 1}, + [41] = {.index = 80, .length = 3}, + [42] = {.index = 83, .length = 2}, + [43] = {.index = 85, .length = 1}, + [44] = {.index = 86, .length = 3}, + [45] = {.index = 89, .length = 2}, + [46] = {.index = 91, .length = 3}, + [47] = {.index = 94, .length = 2}, + [48] = {.index = 96, .length = 1}, + [49] = {.index = 97, .length = 1}, + [50] = {.index = 98, .length = 3}, [51] = {.index = 101, .length = 3}, - [52] = {.index = 1, .length = 1}, - [53] = {.index = 104, .length = 1}, - [54] = {.index = 105, .length = 1}, - [55] = {.index = 106, .length = 3}, - [56] = {.index = 109, .length = 2}, - [57] = {.index = 111, .length = 2}, - [58] = {.index = 113, .length = 2}, - [59] = {.index = 115, .length = 2}, - [60] = {.index = 117, .length = 3}, - [61] = {.index = 120, .length = 3}, - [62] = {.index = 123, .length = 3}, - [63] = {.index = 126, .length = 3}, - [64] = {.index = 129, .length = 3}, - [65] = {.index = 132, .length = 3}, - [66] = {.index = 135, .length = 2}, - [67] = {.index = 137, .length = 3}, - [68] = {.index = 140, .length = 3}, - [69] = {.index = 143, .length = 2}, - [70] = {.index = 145, .length = 2}, - [71] = {.index = 147, .length = 3}, - [72] = {.index = 150, .length = 3}, - [73] = {.index = 153, .length = 2}, - [74] = {.index = 155, .length = 3}, - [75] = {.index = 158, .length = 2}, - [76] = {.index = 160, .length = 3}, - [77] = {.index = 163, .length = 3}, - [78] = {.index = 166, .length = 3}, - [79] = {.index = 169, .length = 2}, - [80] = {.index = 171, .length = 4}, - [81] = {.index = 175, .length = 4}, - [82] = {.index = 179, .length = 3}, - [83] = {.index = 182, .length = 3}, - [84] = {.index = 185, .length = 2}, - [85] = {.index = 187, .length = 4}, - [86] = {.index = 191, .length = 2}, - [87] = {.index = 193, .length = 2}, - [88] = {.index = 193, .length = 2}, - [89] = {.index = 195, .length = 2}, - [90] = {.index = 197, .length = 4}, - [91] = {.index = 201, .length = 2}, - [92] = {.index = 203, .length = 3}, - [93] = {.index = 206, .length = 4}, - [94] = {.index = 210, .length = 2}, - [95] = {.index = 212, .length = 2}, - [96] = {.index = 214, .length = 3}, - [97] = {.index = 217, .length = 4}, - [98] = {.index = 221, .length = 3}, - [99] = {.index = 224, .length = 1}, - [100] = {.index = 225, .length = 3}, - [102] = {.index = 228, .length = 2}, - [103] = {.index = 230, .length = 3}, - [104] = {.index = 233, .length = 4}, - [105] = {.index = 237, .length = 4}, - [106] = {.index = 241, .length = 3}, - [107] = {.index = 244, .length = 3}, - [108] = {.index = 247, .length = 4}, - [109] = {.index = 251, .length = 4}, - [110] = {.index = 255, .length = 3}, - [111] = {.index = 258, .length = 3}, - [112] = {.index = 261, .length = 4}, - [113] = {.index = 265, .length = 3}, - [114] = {.index = 268, .length = 3}, - [115] = {.index = 271, .length = 3}, - [116] = {.index = 274, .length = 4}, - [117] = {.index = 278, .length = 3}, - [118] = {.index = 281, .length = 3}, - [119] = {.index = 284, .length = 3}, - [120] = {.index = 287, .length = 3}, - [121] = {.index = 290, .length = 4}, - [122] = {.index = 294, .length = 4}, - [123] = {.index = 298, .length = 3}, - [124] = {.index = 301, .length = 4}, - [125] = {.index = 305, .length = 3}, - [126] = {.index = 308, .length = 4}, - [127] = {.index = 312, .length = 3}, - [128] = {.index = 315, .length = 5}, - [129] = {.index = 320, .length = 4}, - [130] = {.index = 324, .length = 5}, - [131] = {.index = 329, .length = 2}, - [132] = {.index = 331, .length = 1}, - [133] = {.index = 332, .length = 2}, - [134] = {.index = 334, .length = 1}, - [137] = {.index = 335, .length = 5}, - [138] = {.index = 340, .length = 3}, - [139] = {.index = 343, .length = 3}, - [140] = {.index = 346, .length = 4}, - [141] = {.index = 350, .length = 3}, - [142] = {.index = 353, .length = 3}, - [143] = {.index = 356, .length = 4}, - [144] = {.index = 360, .length = 4}, - [145] = {.index = 364, .length = 3}, - [146] = {.index = 367, .length = 5}, - [147] = {.index = 372, .length = 4}, - [148] = {.index = 376, .length = 4}, - [149] = {.index = 380, .length = 3}, - [150] = {.index = 380, .length = 3}, - [151] = {.index = 383, .length = 4}, - [152] = {.index = 387, .length = 5}, - [153] = {.index = 392, .length = 4}, - [154] = {.index = 396, .length = 4}, - [155] = {.index = 400, .length = 4}, - [156] = {.index = 404, .length = 4}, - [157] = {.index = 408, .length = 4}, - [158] = {.index = 412, .length = 4}, - [159] = {.index = 416, .length = 5}, - [160] = {.index = 421, .length = 4}, - [161] = {.index = 425, .length = 4}, - [162] = {.index = 429, .length = 4}, - [163] = {.index = 433, .length = 1}, - [164] = {.index = 434, .length = 5}, - [165] = {.index = 439, .length = 6}, - [166] = {.index = 445, .length = 2}, - [167] = {.index = 447, .length = 1}, - [168] = {.index = 448, .length = 5}, - [169] = {.index = 453, .length = 3}, - [170] = {.index = 456, .length = 4}, - [171] = {.index = 460, .length = 5}, - [172] = {.index = 465, .length = 4}, - [173] = {.index = 469, .length = 4}, - [174] = {.index = 473, .length = 5}, - [175] = {.index = 478, .length = 3}, - [176] = {.index = 481, .length = 4}, - [177] = {.index = 485, .length = 5}, - [178] = {.index = 490, .length = 5}, - [179] = {.index = 495, .length = 5}, - [180] = {.index = 500, .length = 5}, - [181] = {.index = 505, .length = 5}, - [182] = {.index = 510, .length = 2}, - [183] = {.index = 512, .length = 2}, - [184] = {.index = 514, .length = 3}, - [185] = {.index = 517, .length = 5}, - [186] = {.index = 522, .length = 5}, - [187] = {.index = 527, .length = 6}, - [188] = {.index = 533, .length = 3}, + [52] = {.index = 104, .length = 1}, + [55] = {.index = 105, .length = 2}, + [56] = {.index = 107, .length = 2}, + [57] = {.index = 109, .length = 3}, + [58] = {.index = 1, .length = 1}, + [59] = {.index = 112, .length = 1}, + [60] = {.index = 113, .length = 1}, + [61] = {.index = 114, .length = 2}, + [62] = {.index = 116, .length = 3}, + [63] = {.index = 119, .length = 2}, + [64] = {.index = 121, .length = 2}, + [65] = {.index = 123, .length = 2}, + [66] = {.index = 125, .length = 3}, + [67] = {.index = 128, .length = 3}, + [68] = {.index = 131, .length = 3}, + [69] = {.index = 134, .length = 3}, + [70] = {.index = 137, .length = 3}, + [71] = {.index = 140, .length = 3}, + [72] = {.index = 143, .length = 2}, + [73] = {.index = 145, .length = 3}, + [74] = {.index = 148, .length = 3}, + [75] = {.index = 151, .length = 2}, + [76] = {.index = 153, .length = 2}, + [77] = {.index = 155, .length = 2}, + [78] = {.index = 157, .length = 3}, + [79] = {.index = 160, .length = 3}, + [80] = {.index = 163, .length = 2}, + [81] = {.index = 165, .length = 3}, + [82] = {.index = 168, .length = 2}, + [83] = {.index = 170, .length = 3}, + [84] = {.index = 173, .length = 3}, + [85] = {.index = 176, .length = 3}, + [86] = {.index = 179, .length = 2}, + [87] = {.index = 181, .length = 4}, + [88] = {.index = 185, .length = 4}, + [89] = {.index = 189, .length = 3}, + [90] = {.index = 192, .length = 3}, + [91] = {.index = 195, .length = 2}, + [92] = {.index = 197, .length = 4}, + [93] = {.index = 201, .length = 2}, + [94] = {.index = 203, .length = 1}, + [95] = {.index = 204, .length = 2}, + [96] = {.index = 204, .length = 2}, + [97] = {.index = 206, .length = 2}, + [98] = {.index = 208, .length = 2}, + [99] = {.index = 210, .length = 4}, + [100] = {.index = 214, .length = 2}, + [101] = {.index = 216, .length = 3}, + [102] = {.index = 219, .length = 4}, + [103] = {.index = 223, .length = 2}, + [104] = {.index = 225, .length = 2}, + [105] = {.index = 227, .length = 3}, + [106] = {.index = 230, .length = 4}, + [107] = {.index = 234, .length = 3}, + [108] = {.index = 237, .length = 1}, + [109] = {.index = 238, .length = 3}, + [111] = {.index = 241, .length = 2}, + [112] = {.index = 243, .length = 3}, + [113] = {.index = 246, .length = 4}, + [114] = {.index = 250, .length = 4}, + [115] = {.index = 254, .length = 3}, + [116] = {.index = 257, .length = 3}, + [117] = {.index = 260, .length = 4}, + [118] = {.index = 264, .length = 4}, + [119] = {.index = 268, .length = 3}, + [120] = {.index = 271, .length = 3}, + [121] = {.index = 274, .length = 4}, + [122] = {.index = 278, .length = 3}, + [123] = {.index = 281, .length = 3}, + [124] = {.index = 284, .length = 3}, + [125] = {.index = 287, .length = 4}, + [126] = {.index = 291, .length = 3}, + [127] = {.index = 294, .length = 3}, + [128] = {.index = 297, .length = 3}, + [129] = {.index = 300, .length = 3}, + [130] = {.index = 303, .length = 4}, + [131] = {.index = 307, .length = 4}, + [132] = {.index = 311, .length = 3}, + [133] = {.index = 314, .length = 4}, + [134] = {.index = 318, .length = 3}, + [135] = {.index = 321, .length = 4}, + [136] = {.index = 325, .length = 3}, + [137] = {.index = 328, .length = 5}, + [138] = {.index = 333, .length = 5}, + [139] = {.index = 338, .length = 6}, + [140] = {.index = 344, .length = 2}, + [141] = {.index = 346, .length = 1}, + [142] = {.index = 347, .length = 2}, + [143] = {.index = 349, .length = 1}, + [146] = {.index = 350, .length = 5}, + [147] = {.index = 355, .length = 3}, + [148] = {.index = 358, .length = 3}, + [149] = {.index = 361, .length = 4}, + [150] = {.index = 365, .length = 3}, + [151] = {.index = 368, .length = 3}, + [152] = {.index = 371, .length = 4}, + [153] = {.index = 375, .length = 4}, + [154] = {.index = 379, .length = 3}, + [155] = {.index = 382, .length = 5}, + [156] = {.index = 387, .length = 4}, + [157] = {.index = 391, .length = 4}, + [158] = {.index = 395, .length = 3}, + [159] = {.index = 395, .length = 3}, + [160] = {.index = 398, .length = 4}, + [161] = {.index = 402, .length = 5}, + [162] = {.index = 407, .length = 4}, + [163] = {.index = 411, .length = 4}, + [164] = {.index = 415, .length = 4}, + [165] = {.index = 419, .length = 4}, + [166] = {.index = 423, .length = 4}, + [167] = {.index = 427, .length = 4}, + [168] = {.index = 431, .length = 5}, + [169] = {.index = 436, .length = 4}, + [170] = {.index = 440, .length = 4}, + [171] = {.index = 444, .length = 4}, + [172] = {.index = 448, .length = 1}, + [173] = {.index = 449, .length = 6}, + [174] = {.index = 455, .length = 7}, + [175] = {.index = 462, .length = 2}, + [176] = {.index = 464, .length = 1}, + [177] = {.index = 465, .length = 2}, + [178] = {.index = 467, .length = 5}, + [179] = {.index = 472, .length = 3}, + [180] = {.index = 475, .length = 4}, + [181] = {.index = 479, .length = 5}, + [182] = {.index = 484, .length = 4}, + [183] = {.index = 488, .length = 4}, + [184] = {.index = 492, .length = 5}, + [185] = {.index = 497, .length = 3}, + [186] = {.index = 500, .length = 4}, + [187] = {.index = 504, .length = 5}, + [188] = {.index = 509, .length = 5}, + [189] = {.index = 514, .length = 5}, + [190] = {.index = 519, .length = 5}, + [191] = {.index = 524, .length = 5}, + [192] = {.index = 529, .length = 2}, + [193] = {.index = 531, .length = 2}, + [194] = {.index = 533, .length = 3}, + [195] = {.index = 536, .length = 5}, + [196] = {.index = 541, .length = 5}, + [197] = {.index = 546, .length = 6}, + [198] = {.index = 552, .length = 3}, + [199] = {.index = 555, .length = 1}, + [200] = {.index = 556, .length = 1}, + [201] = {.index = 557, .length = 1}, + [202] = {.index = 558, .length = 1}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3147,14 +3185,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_arguments, 1}, {field_function, 0}, [10] = + {field_argument, 0}, + {field_operator, 1}, + [12] = {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] = - {field_argument, 0}, - {field_operator, 1}, [17] = {field_name, 1}, [18] = @@ -3167,682 +3205,719 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_parameters, 1}, [24] = + {field_statements, 1}, + [25] = {field_parameters, 2}, {field_reference_modifier, 1}, - [26] = + [27] = {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [28] = + [29] = + {field_expressions, 1}, + [30] = {field_body, 2}, {field_condition, 1}, - [30] = + [32] = + {field_array_element, 1}, + [33] = {field_end_tag, 2}, {field_identifier, 1}, - [32] = + [35] = + {field_left, 0}, + {field_right, 2}, + [37] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [40] = {field_parameters, 2}, - [33] = + [41] = {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] = - {field_left, 0}, - {field_operator, 1}, - {field_right, 2}, - [41] = - {field_left, 0}, - {field_right, 2}, - [43] = + [46] = {field_name, 2}, {field_scope, 0}, - [45] = + [48] = {field_name, 2}, {field_object, 0}, - [47] = + [50] = {field_attributes, 0}, {field_parameters, 2}, - [49] = + [52] = {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] = + [58] = {field_body, 3}, {field_parameters, 2}, - [57] = + [60] = {field_name, 0}, {field_value, 2}, - [59] = + [62] = {field_name, 1}, {field_reference_modifier, 0}, - [61] = + [64] = {field_name, 1}, {field_visibility, 0}, - [63] = + [66] = {field_name, 1}, {field_type, 0}, - [65] = + [68] = {field_attributes, 0}, {field_name, 1}, - [67] = + [70] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [70] = + [73] = {field_name, 2}, {field_parameters, 3}, {field_reference_modifier, 1}, - [73] = + [76] = {field_body, 3}, {field_parameters, 2}, {field_reference_modifier, 1}, - [76] = + [79] = {field_return_type, 1}, - [77] = + [80] = {field_body, 3}, {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [80] = + [83] = {field_body, 3}, {field_parameters, 1}, - [82] = + [85] = {field_type, 1}, - [83] = + [86] = {field_attributes, 0, .inherited = true}, {field_modifier, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [86] = + [89] = {field_body, 3}, {field_name, 1}, - [88] = + [91] = {field_parameters, 2}, {field_reference_modifier, 1}, {field_return_type, 3, .inherited = true}, - [91] = + [94] = {field_type, 1}, {field_value, 3}, - [93] = + [96] = + {field_array_element, 2}, + [97] = {field_alternative, 0}, - [94] = + [98] = {field_alternative, 3}, {field_body, 2}, {field_condition, 1}, - [97] = + [101] = {field_alternative, 3, .inherited = true}, {field_body, 2}, {field_condition, 1}, - [100] = + [104] = {field_attributes, 1}, - [101] = + [105] = + {field_expression_l, 0}, + {field_expression_r, 2}, + [107] = + {field_array_element, 1}, + {field_array_element, 2}, + [109] = {field_end_tag, 3}, {field_identifier, 1}, {field_value, 2}, - [104] = + [112] = {field_reference_modifier, 0}, - [105] = + [113] = {field_name, 0, .inherited = true}, - [106] = + [114] = + {field_left, 0}, + {field_right, 3}, + [116] = {field_body, 3}, {field_modifier, 0}, {field_name, 2}, - [109] = + [119] = {field_parameters, 3}, {field_reference_modifier, 2}, - [111] = + [121] = {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [113] = + [123] = {field_alternative, 3}, {field_condition, 0}, - [115] = - {field_left, 0}, - {field_right, 3}, - [117] = + [125] = {field_arguments, 3}, {field_name, 2}, {field_scope, 0}, - [120] = + [128] = {field_arguments, 3}, {field_name, 2}, {field_object, 0}, - [123] = + [131] = {field_attributes, 0}, {field_body, 3}, {field_parameters, 2}, - [126] = + [134] = {field_attributes, 0}, {field_body, 3}, {field_name, 2}, - [129] = + [137] = {field_attributes, 0}, {field_parameters, 3}, {field_reference_modifier, 2}, - [132] = + [140] = {field_attributes, 0}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [135] = + [143] = {field_attributes, 0}, {field_parameters, 3}, - [137] = + [145] = {field_body, 4}, {field_parameters, 3}, {field_reference_modifier, 2}, - [140] = + [148] = {field_body, 4}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [143] = + [151] = {field_body, 4}, {field_parameters, 2}, - [145] = + [153] = + {field_parameters, 1}, + {field_parameters, 2}, + [155] = {field_name, 2}, {field_reference_modifier, 0}, - [147] = + [157] = {field_name, 2}, {field_readonly, 1}, {field_visibility, 0}, - [150] = + [160] = {field_name, 2}, {field_type, 1}, {field_visibility, 0}, - [153] = + [163] = {field_name, 2}, {field_type, 0}, - [155] = + [165] = {field_name, 2}, {field_reference_modifier, 1}, {field_type, 0}, - [158] = + [168] = {field_attributes, 0}, {field_name, 2}, - [160] = + [170] = {field_attributes, 0}, {field_name, 2}, {field_reference_modifier, 1}, - [163] = + [173] = {field_attributes, 0}, {field_name, 2}, {field_visibility, 1}, - [166] = + [176] = {field_attributes, 0}, {field_name, 2}, {field_type, 1}, - [169] = + [179] = {field_default_value, 2}, {field_name, 0}, - [171] = + [181] = {field_name, 2}, {field_parameters, 3}, {field_reference_modifier, 1}, {field_return_type, 4, .inherited = true}, - [175] = + [185] = {field_body, 4}, {field_parameters, 2}, {field_reference_modifier, 1}, {field_return_type, 3, .inherited = true}, - [179] = + [189] = {field_body, 4}, {field_parameters, 2}, {field_reference_modifier, 1}, - [182] = + [192] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3, .inherited = true}, - [185] = + [195] = {field_modifier, 0}, {field_type, 1, .inherited = true}, - [187] = + [197] = {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_reference_modifier, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, - [191] = + [201] = {field_attributes, 0}, {field_type, 1, .inherited = true}, - [193] = + [203] = + {field_declarations, 1}, + [204] = {field_body, 4}, {field_name, 1}, - [195] = + [206] = + {field_array_element, 2}, + {field_array_element, 3}, + [208] = {field_body, 1}, {field_condition, 3}, - [197] = + [210] = {field_alternative, 3, .inherited = true}, {field_alternative, 4}, {field_body, 2}, {field_condition, 1}, - [201] = + [214] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [203] = + [216] = {field_end_tag, 4}, {field_identifier, 1}, {field_value, 2}, - [206] = + [219] = {field_end_tag, 4}, {field_identifier, 1}, {field_identifier, 2}, {field_identifier, 3}, - [210] = + [223] = {field_end_tag, 4}, {field_identifier, 2}, - [212] = + [225] = {field_name, 0, .inherited = true}, {field_reference_modifier, 1}, - [214] = + [227] = {field_body, 4}, {field_modifier, 0}, {field_name, 2}, - [217] = + [230] = {field_body, 4}, {field_modifier, 0}, {field_modifier, 1}, {field_name, 3}, - [221] = + [234] = {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [224] = + [237] = {field_type, 2}, - [225] = + [238] = {field_alternative, 4}, {field_body, 2}, {field_condition, 0}, - [228] = + [241] = {field_name, 3}, {field_object, 0}, - [230] = + [243] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 3}, - [233] = + [246] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 3}, {field_reference_modifier, 2}, - [237] = + [250] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [241] = + [254] = {field_attributes, 0}, {field_body, 4}, {field_parameters, 2}, - [244] = + [257] = {field_attributes, 0}, {field_body, 4}, {field_name, 2}, - [247] = + [260] = {field_attributes, 0}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [251] = + [264] = {field_attributes, 0}, {field_body, 4}, {field_modifier, 1}, {field_name, 3}, - [255] = + [268] = {field_attributes, 0}, {field_parameters, 4}, {field_reference_modifier, 3}, - [258] = + [271] = {field_attributes, 0}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [261] = + [274] = {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [265] = + [278] = {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, - [268] = + [281] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4, .inherited = true}, - [271] = + [284] = {field_default_value, 3}, {field_name, 1}, {field_reference_modifier, 0}, - [274] = + [287] = {field_name, 3}, {field_readonly, 1}, {field_type, 2}, {field_visibility, 0}, - [278] = + [291] = {field_default_value, 3}, {field_name, 1}, {field_visibility, 0}, - [281] = + [294] = {field_name, 3}, {field_reference_modifier, 1}, {field_type, 0}, - [284] = + [297] = {field_default_value, 3}, {field_name, 1}, {field_type, 0}, - [287] = + [300] = {field_attributes, 0}, {field_name, 3}, {field_reference_modifier, 1}, - [290] = + [303] = {field_attributes, 0}, {field_name, 3}, {field_readonly, 2}, {field_visibility, 1}, - [294] = + [307] = {field_attributes, 0}, {field_name, 3}, {field_type, 2}, {field_visibility, 1}, - [298] = + [311] = {field_attributes, 0}, {field_name, 3}, {field_type, 1}, - [301] = + [314] = {field_attributes, 0}, {field_name, 3}, {field_reference_modifier, 2}, {field_type, 1}, - [305] = + [318] = {field_attributes, 0}, {field_default_value, 3}, {field_name, 1}, - [308] = + [321] = {field_body, 5}, {field_parameters, 2}, {field_reference_modifier, 1}, {field_return_type, 4, .inherited = true}, - [312] = + [325] = {field_attributes, 0}, {field_modifier, 1}, {field_type, 2, .inherited = true}, - [315] = + [328] = {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}, - [320] = + [333] = + {field_modifier, 0}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_reference_modifier, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [324] = + [338] = {field_body, 2}, + {field_modifier, 0}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_reference_modifier, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [329] = + [344] = {field_body, 5}, {field_name, 1}, - [331] = + [346] = {field_return_expression, 2}, - [332] = + [347] = {field_conditional_expressions, 0}, {field_return_expression, 2}, - [334] = + [349] = {field_value, 1}, - [335] = + [350] = {field_end_tag, 5}, {field_identifier, 1}, {field_identifier, 2}, {field_identifier, 3}, {field_value, 4}, - [340] = + [355] = {field_end_tag, 5}, {field_identifier, 2}, {field_value, 4}, - [343] = + [358] = {field_body, 5}, {field_modifier, 0}, {field_name, 2}, - [346] = + [361] = {field_body, 5}, {field_modifier, 0}, {field_modifier, 1}, {field_name, 3}, - [350] = + [365] = {field_arguments, 5}, {field_name, 3}, {field_scope, 0}, - [353] = + [368] = {field_arguments, 5}, {field_name, 3}, {field_object, 0}, - [356] = + [371] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 4}, {field_reference_modifier, 3}, - [360] = + [375] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [364] = + [379] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, - [367] = + [382] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 4, .inherited = true}, - [372] = + [387] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 3}, {field_reference_modifier, 2}, - [376] = + [391] = {field_attributes, 0}, {field_body, 5}, {field_parameters, 2}, {field_return_type, 4, .inherited = true}, - [380] = + [395] = {field_attributes, 0}, {field_body, 5}, {field_name, 2}, - [383] = + [398] = {field_attributes, 0}, {field_body, 5}, {field_modifier, 1}, {field_name, 3}, - [387] = + [402] = {field_attributes, 0}, {field_body, 5}, {field_modifier, 1}, {field_modifier, 2}, {field_name, 4}, - [392] = + [407] = {field_attributes, 0}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_return_type, 5, .inherited = true}, - [396] = + [411] = {field_body, 6}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 5, .inherited = true}, - [400] = + [415] = {field_default_value, 4}, {field_name, 2}, {field_readonly, 1}, {field_visibility, 0}, - [404] = + [419] = {field_default_value, 4}, {field_name, 2}, {field_type, 1}, {field_visibility, 0}, - [408] = + [423] = {field_default_value, 4}, {field_name, 2}, {field_reference_modifier, 1}, {field_type, 0}, - [412] = + [427] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_reference_modifier, 1}, - [416] = + [431] = {field_attributes, 0}, {field_name, 4}, {field_readonly, 2}, {field_type, 3}, {field_visibility, 1}, - [421] = + [436] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_visibility, 1}, - [425] = + [440] = {field_attributes, 0}, {field_name, 4}, {field_reference_modifier, 2}, {field_type, 1}, - [429] = + [444] = {field_attributes, 0}, {field_default_value, 4}, {field_name, 2}, {field_type, 1}, - [433] = + [448] = {field_attributes, 0}, - [434] = + [449] = {field_attributes, 0}, + {field_modifier, 1}, {field_name, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_reference_modifier, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, - [439] = + [455] = {field_attributes, 0}, {field_body, 3}, + {field_modifier, 1}, {field_name, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_reference_modifier, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, - [445] = + [462] = {field_body, 4}, {field_type, 2}, - [447] = + [464] = + {field_expression, 2}, + [465] = {field_body, 6}, - [448] = + {field_expression, 2}, + [467] = {field_end_tag, 6}, {field_identifier, 1}, {field_identifier, 2}, {field_identifier, 3}, {field_value, 4}, - [453] = + [472] = {field_end_tag, 6}, {field_identifier, 2}, {field_value, 4}, - [456] = + [475] = {field_body, 6}, {field_modifier, 0}, {field_modifier, 1}, {field_name, 3}, - [460] = + [479] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_return_type, 5, .inherited = true}, - [465] = + [484] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 4}, {field_reference_modifier, 3}, - [469] = + [488] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 3}, {field_return_type, 5, .inherited = true}, - [473] = + [492] = {field_attributes, 0}, {field_body, 6}, {field_parameters, 3}, {field_reference_modifier, 2}, {field_return_type, 5, .inherited = true}, - [478] = + [497] = {field_attributes, 0}, {field_body, 6}, {field_name, 2}, - [481] = + [500] = {field_attributes, 0}, {field_body, 6}, {field_modifier, 1}, {field_name, 3}, - [485] = + [504] = {field_attributes, 0}, {field_body, 6}, {field_modifier, 1}, {field_modifier, 2}, {field_name, 4}, - [490] = + [509] = {field_default_value, 5}, {field_name, 3}, {field_readonly, 1}, {field_type, 2}, {field_visibility, 0}, - [495] = + [514] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_readonly, 2}, {field_visibility, 1}, - [500] = + [519] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_type, 2}, {field_visibility, 1}, - [505] = + [524] = {field_attributes, 0}, {field_default_value, 5}, {field_name, 3}, {field_reference_modifier, 2}, {field_type, 1}, - [510] = + [529] = {field_attributes, 0}, {field_type, 2}, - [512] = + [531] = {field_name, 1}, {field_value, 3}, - [514] = + [533] = {field_body, 5}, {field_name, 3}, {field_type, 2}, - [517] = + [536] = {field_attributes, 0}, {field_body, 7}, {field_parameters, 4}, {field_reference_modifier, 3}, {field_return_type, 6, .inherited = true}, - [522] = + [541] = {field_attributes, 0}, {field_body, 7}, {field_modifier, 1}, {field_modifier, 2}, {field_name, 4}, - [527] = + [546] = {field_attributes, 0}, {field_default_value, 6}, {field_name, 4}, {field_readonly, 2}, {field_type, 3}, {field_visibility, 1}, - [533] = + [552] = {field_attributes, 0}, {field_name, 2}, {field_value, 4}, + [555] = + {field_statement, 6}, + [556] = + {field_statement, 7}, + [557] = + {field_statement, 8}, + [558] = + {field_statement, 9}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -3850,37 +3925,43 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = { [0] = sym_list_literal, }, - [17] = { + [18] = { [0] = anon_sym_array, }, - [49] = { + [48] = { + [0] = anon_sym_array, + }, + [53] = { [1] = sym_list_literal, }, - [50] = { + [54] = { [2] = sym_list_literal, }, - [52] = { + [58] = { [0] = sym_name, }, - [87] = { + [95] = { [3] = sym_primitive_type, }, - [101] = { + [97] = { + [0] = anon_sym_array, + }, + [110] = { [3] = sym_name, }, - [131] = { + [140] = { [3] = sym_primitive_type, }, - [135] = { + [144] = { [3] = sym_list_literal, }, - [136] = { + [145] = { [4] = sym_list_literal, }, - [149] = { + [158] = { [4] = sym_primitive_type, }, - [175] = { + [185] = { [4] = sym_primitive_type, }, }; @@ -3917,212 +3998,212 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 12, [16] = 16, [17] = 17, - [18] = 17, + [18] = 18, [19] = 19, [20] = 20, - [21] = 16, + [21] = 21, [22] = 22, [23] = 23, - [24] = 22, - [25] = 23, + [24] = 20, + [25] = 25, [26] = 26, [27] = 27, - [28] = 28, + [28] = 22, [29] = 29, [30] = 30, [31] = 31, - [32] = 32, + [32] = 19, [33] = 33, - [34] = 30, + [34] = 34, [35] = 35, [36] = 36, - [37] = 20, - [38] = 38, + [37] = 25, + [38] = 30, [39] = 39, - [40] = 40, - [41] = 17, - [42] = 42, + [40] = 31, + [41] = 34, + [42] = 23, [43] = 43, - [44] = 17, - [45] = 42, - [46] = 43, - [47] = 29, - [48] = 26, - [49] = 27, - [50] = 19, - [51] = 39, - [52] = 22, - [53] = 22, - [54] = 23, - [55] = 39, - [56] = 30, - [57] = 20, - [58] = 38, - [59] = 16, - [60] = 60, - [61] = 19, - [62] = 20, - [63] = 63, - [64] = 23, - [65] = 26, - [66] = 39, - [67] = 26, - [68] = 40, - [69] = 36, - [70] = 35, - [71] = 31, - [72] = 30, - [73] = 32, - [74] = 16, - [75] = 19, + [44] = 19, + [45] = 29, + [46] = 20, + [47] = 33, + [48] = 48, + [49] = 26, + [50] = 21, + [51] = 21, + [52] = 39, + [53] = 36, + [54] = 29, + [55] = 55, + [56] = 48, + [57] = 33, + [58] = 48, + [59] = 20, + [60] = 55, + [61] = 30, + [62] = 62, + [63] = 33, + [64] = 19, + [65] = 39, + [66] = 62, + [67] = 29, + [68] = 18, + [69] = 35, + [70] = 30, + [71] = 48, + [72] = 21, + [73] = 23, + [74] = 39, + [75] = 23, [76] = 76, [77] = 77, [78] = 78, [79] = 78, [80] = 77, - [81] = 76, + [81] = 77, [82] = 77, - [83] = 77, + [83] = 76, [84] = 84, [85] = 84, [86] = 84, [87] = 84, [88] = 88, - [89] = 88, - [90] = 90, - [91] = 90, - [92] = 88, - [93] = 90, - [94] = 90, - [95] = 88, - [96] = 88, - [97] = 90, + [89] = 89, + [90] = 88, + [91] = 89, + [92] = 89, + [93] = 88, + [94] = 88, + [95] = 89, + [96] = 89, + [97] = 89, [98] = 88, [99] = 99, - [100] = 100, + [100] = 99, [101] = 99, - [102] = 100, - [103] = 100, - [104] = 100, - [105] = 100, - [106] = 100, - [107] = 99, - [108] = 100, + [102] = 99, + [103] = 103, + [104] = 99, + [105] = 103, + [106] = 103, + [107] = 103, + [108] = 103, [109] = 99, - [110] = 100, + [110] = 99, [111] = 99, [112] = 112, - [113] = 113, - [114] = 112, - [115] = 113, + [113] = 112, + [114] = 114, + [115] = 114, [116] = 116, - [117] = 113, - [118] = 118, - [119] = 116, - [120] = 112, + [117] = 117, + [118] = 117, + [119] = 114, + [120] = 114, [121] = 112, [122] = 112, - [123] = 113, + [123] = 114, [124] = 112, - [125] = 113, - [126] = 112, - [127] = 118, - [128] = 113, - [129] = 113, + [125] = 116, + [126] = 114, + [127] = 112, + [128] = 114, + [129] = 114, [130] = 112, - [131] = 113, + [131] = 112, [132] = 132, - [133] = 132, + [133] = 133, [134] = 134, [135] = 135, - [136] = 136, + [136] = 132, [137] = 137, - [138] = 136, - [139] = 139, - [140] = 134, - [141] = 137, - [142] = 139, + [138] = 134, + [139] = 135, + [140] = 137, + [141] = 141, + [142] = 141, [143] = 143, [144] = 144, [145] = 145, - [146] = 146, + [146] = 143, [147] = 147, - [148] = 143, + [148] = 148, [149] = 149, - [150] = 147, - [151] = 146, + [150] = 144, + [151] = 147, [152] = 145, [153] = 153, [154] = 154, [155] = 155, [156] = 156, - [157] = 156, + [157] = 157, [158] = 158, [159] = 159, - [160] = 159, + [160] = 160, [161] = 161, - [162] = 161, - [163] = 163, - [164] = 164, - [165] = 163, - [166] = 164, + [162] = 157, + [163] = 161, + [164] = 156, + [165] = 158, + [166] = 160, [167] = 156, - [168] = 168, - [169] = 168, - [170] = 158, - [171] = 156, - [172] = 159, - [173] = 161, - [174] = 161, - [175] = 158, - [176] = 168, - [177] = 163, - [178] = 164, - [179] = 164, - [180] = 158, - [181] = 163, - [182] = 168, - [183] = 159, + [168] = 159, + [169] = 158, + [170] = 160, + [171] = 157, + [172] = 156, + [173] = 173, + [174] = 173, + [175] = 160, + [176] = 173, + [177] = 161, + [178] = 159, + [179] = 161, + [180] = 157, + [181] = 158, + [182] = 159, + [183] = 173, [184] = 184, [185] = 185, [186] = 186, [187] = 187, - [188] = 188, - [189] = 186, - [190] = 185, - [191] = 186, - [192] = 186, + [188] = 184, + [189] = 189, + [190] = 190, + [191] = 184, + [192] = 190, [193] = 193, - [194] = 194, - [195] = 188, - [196] = 196, - [197] = 187, - [198] = 184, - [199] = 186, - [200] = 200, - [201] = 186, + [194] = 184, + [195] = 195, + [196] = 184, + [197] = 195, + [198] = 198, + [199] = 193, + [200] = 198, + [201] = 184, [202] = 202, [203] = 203, [204] = 204, [205] = 205, - [206] = 202, - [207] = 205, - [208] = 208, - [209] = 204, - [210] = 208, - [211] = 202, - [212] = 202, - [213] = 202, + [206] = 206, + [207] = 203, + [208] = 203, + [209] = 202, + [210] = 202, + [211] = 203, + [212] = 206, + [213] = 206, [214] = 214, - [215] = 204, - [216] = 208, + [215] = 214, + [216] = 206, [217] = 217, - [218] = 218, - [219] = 205, - [220] = 208, - [221] = 218, - [222] = 202, - [223] = 204, + [218] = 214, + [219] = 202, + [220] = 203, + [221] = 217, + [222] = 203, + [223] = 223, [224] = 224, [225] = 225, [226] = 226, @@ -4132,202 +4213,202 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [230] = 230, [231] = 231, [232] = 232, - [233] = 230, + [233] = 233, [234] = 234, [235] = 235, [236] = 236, - [237] = 237, - [238] = 236, + [237] = 225, + [238] = 238, [239] = 239, [240] = 240, [241] = 241, [242] = 242, [243] = 243, - [244] = 229, + [244] = 244, [245] = 245, - [246] = 228, - [247] = 227, - [248] = 248, + [246] = 246, + [247] = 228, + [248] = 244, [249] = 249, - [250] = 230, - [251] = 251, + [250] = 250, + [251] = 235, [252] = 252, [253] = 253, [254] = 254, [255] = 255, [256] = 256, [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, + [258] = 254, + [259] = 232, + [260] = 235, [261] = 261, [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, + [263] = 244, + [264] = 240, + [265] = 228, [266] = 266, - [267] = 267, + [267] = 262, [268] = 268, [269] = 269, - [270] = 270, - [271] = 254, - [272] = 252, - [273] = 270, - [274] = 230, + [270] = 255, + [271] = 261, + [272] = 224, + [273] = 273, + [274] = 274, [275] = 275, - [276] = 245, + [276] = 276, [277] = 277, - [278] = 234, - [279] = 242, - [280] = 269, - [281] = 268, - [282] = 253, - [283] = 267, - [284] = 284, - [285] = 226, - [286] = 266, - [287] = 265, - [288] = 288, - [289] = 264, + [278] = 278, + [279] = 279, + [280] = 241, + [281] = 245, + [282] = 246, + [283] = 239, + [284] = 232, + [285] = 229, + [286] = 229, + [287] = 250, + [288] = 252, + [289] = 243, [290] = 290, [291] = 291, - [292] = 263, - [293] = 293, - [294] = 262, - [295] = 295, - [296] = 296, - [297] = 290, - [298] = 291, - [299] = 299, - [300] = 261, - [301] = 260, - [302] = 293, - [303] = 295, - [304] = 259, - [305] = 242, + [292] = 254, + [293] = 228, + [294] = 238, + [295] = 246, + [296] = 245, + [297] = 241, + [298] = 229, + [299] = 225, + [300] = 250, + [301] = 279, + [302] = 278, + [303] = 252, + [304] = 277, + [305] = 276, [306] = 306, - [307] = 258, - [308] = 308, - [309] = 240, - [310] = 229, - [311] = 257, - [312] = 255, - [313] = 241, - [314] = 314, - [315] = 241, - [316] = 228, - [317] = 245, - [318] = 255, - [319] = 252, - [320] = 254, - [321] = 270, - [322] = 269, - [323] = 268, - [324] = 267, - [325] = 227, - [326] = 266, - [327] = 265, - [328] = 264, - [329] = 263, - [330] = 262, - [331] = 261, - [332] = 260, - [333] = 253, - [334] = 259, - [335] = 258, - [336] = 257, - [337] = 255, - [338] = 338, - [339] = 241, - [340] = 257, - [341] = 295, - [342] = 293, - [343] = 291, - [344] = 290, - [345] = 248, + [307] = 254, + [308] = 275, + [309] = 274, + [310] = 273, + [311] = 228, + [312] = 224, + [313] = 229, + [314] = 261, + [315] = 255, + [316] = 269, + [317] = 268, + [318] = 266, + [319] = 240, + [320] = 250, + [321] = 236, + [322] = 257, + [323] = 252, + [324] = 254, + [325] = 249, + [326] = 230, + [327] = 228, + [328] = 328, + [329] = 231, + [330] = 252, + [331] = 233, + [332] = 234, + [333] = 243, + [334] = 257, + [335] = 236, + [336] = 228, + [337] = 225, + [338] = 238, + [339] = 249, + [340] = 239, + [341] = 239, + [342] = 252, + [343] = 238, + [344] = 244, + [345] = 242, [346] = 346, - [347] = 253, - [348] = 237, - [349] = 290, - [350] = 350, - [351] = 227, - [352] = 228, - [353] = 291, - [354] = 229, - [355] = 248, - [356] = 293, - [357] = 295, - [358] = 224, + [347] = 240, + [348] = 266, + [349] = 349, + [350] = 254, + [351] = 236, + [352] = 268, + [353] = 353, + [354] = 254, + [355] = 252, + [356] = 224, + [357] = 234, + [358] = 233, [359] = 231, - [360] = 232, - [361] = 258, - [362] = 259, - [363] = 231, - [364] = 232, - [365] = 236, - [366] = 231, - [367] = 260, - [368] = 261, - [369] = 232, - [370] = 231, - [371] = 232, - [372] = 224, - [373] = 262, - [374] = 226, - [375] = 231, - [376] = 376, - [377] = 232, - [378] = 236, - [379] = 263, - [380] = 264, - [381] = 231, - [382] = 240, - [383] = 232, - [384] = 224, - [385] = 234, - [386] = 236, - [387] = 231, - [388] = 232, - [389] = 265, - [390] = 350, - [391] = 224, - [392] = 266, - [393] = 231, - [394] = 234, - [395] = 232, - [396] = 236, - [397] = 267, - [398] = 224, - [399] = 231, - [400] = 232, - [401] = 268, - [402] = 234, - [403] = 224, - [404] = 234, - [405] = 236, - [406] = 236, - [407] = 237, - [408] = 242, - [409] = 248, - [410] = 226, - [411] = 269, - [412] = 350, - [413] = 236, - [414] = 270, - [415] = 415, - [416] = 254, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 240, - [421] = 252, - [422] = 245, + [360] = 250, + [361] = 230, + [362] = 228, + [363] = 249, + [364] = 234, + [365] = 365, + [366] = 229, + [367] = 228, + [368] = 256, + [369] = 242, + [370] = 232, + [371] = 269, + [372] = 252, + [373] = 373, + [374] = 254, + [375] = 254, + [376] = 252, + [377] = 252, + [378] = 255, + [379] = 379, + [380] = 254, + [381] = 261, + [382] = 250, + [383] = 383, + [384] = 233, + [385] = 269, + [386] = 235, + [387] = 387, + [388] = 273, + [389] = 274, + [390] = 266, + [391] = 231, + [392] = 392, + [393] = 250, + [394] = 275, + [395] = 276, + [396] = 277, + [397] = 397, + [398] = 278, + [399] = 279, + [400] = 241, + [401] = 245, + [402] = 262, + [403] = 230, + [404] = 246, + [405] = 405, + [406] = 273, + [407] = 256, + [408] = 408, + [409] = 409, + [410] = 274, + [411] = 411, + [412] = 412, + [413] = 243, + [414] = 414, + [415] = 279, + [416] = 257, + [417] = 278, + [418] = 268, + [419] = 256, + [420] = 277, + [421] = 276, + [422] = 275, [423] = 423, [424] = 424, [425] = 425, - [426] = 425, - [427] = 427, - [428] = 427, + [426] = 426, + [427] = 426, + [428] = 425, [429] = 429, [430] = 430, [431] = 431, @@ -4337,20 +4418,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [435] = 435, [436] = 436, [437] = 437, - [438] = 431, + [438] = 438, [439] = 439, [440] = 440, [441] = 441, - [442] = 442, + [442] = 433, [443] = 443, [444] = 444, - [445] = 445, + [445] = 432, [446] = 446, [447] = 447, [448] = 448, [449] = 449, [450] = 450, - [451] = 432, + [451] = 451, [452] = 452, [453] = 453, [454] = 454, @@ -4373,7 +4454,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [471] = 471, [472] = 472, [473] = 473, - [474] = 474, + [474] = 454, [475] = 475, [476] = 476, [477] = 477, @@ -4413,15 +4494,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [511] = 511, [512] = 512, [513] = 513, - [514] = 444, + [514] = 514, [515] = 515, [516] = 516, [517] = 517, [518] = 518, [519] = 519, - [520] = 453, + [520] = 520, [521] = 521, - [522] = 522, + [522] = 440, [523] = 523, [524] = 524, [525] = 525, @@ -4467,18 +4548,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [565] = 565, [566] = 566, [567] = 567, - [568] = 567, - [569] = 567, - [570] = 567, - [571] = 567, - [572] = 572, - [573] = 573, - [574] = 573, - [575] = 573, - [576] = 573, - [577] = 577, - [578] = 578, - [579] = 579, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 570, + [572] = 570, + [573] = 570, + [574] = 570, + [575] = 575, + [576] = 576, + [577] = 576, + [578] = 576, + [579] = 576, [580] = 580, [581] = 581, [582] = 582, @@ -4501,352 +4582,352 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [599] = 599, [600] = 600, [601] = 601, - [602] = 600, - [603] = 583, - [604] = 582, - [605] = 584, - [606] = 581, - [607] = 585, - [608] = 600, - [609] = 581, - [610] = 586, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 604, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 604, + [610] = 604, [611] = 611, - [612] = 612, - [613] = 592, - [614] = 591, - [615] = 589, - [616] = 593, - [617] = 595, - [618] = 618, - [619] = 597, - [620] = 579, - [621] = 587, - [622] = 578, + [612] = 606, + [613] = 607, + [614] = 611, + [615] = 584, + [616] = 606, + [617] = 587, + [618] = 607, + [619] = 619, + [620] = 586, + [621] = 621, + [622] = 589, [623] = 623, - [624] = 599, - [625] = 598, - [626] = 596, - [627] = 594, - [628] = 623, - [629] = 580, - [630] = 600, - [631] = 577, - [632] = 588, - [633] = 611, - [634] = 590, + [624] = 590, + [625] = 585, + [626] = 585, + [627] = 588, + [628] = 588, + [629] = 629, + [630] = 602, + [631] = 594, + [632] = 583, + [633] = 598, + [634] = 581, [635] = 635, - [636] = 611, - [637] = 637, + [636] = 593, + [637] = 591, [638] = 601, - [639] = 601, - [640] = 611, - [641] = 641, - [642] = 641, - [643] = 643, - [644] = 644, - [645] = 645, + [639] = 639, + [640] = 635, + [641] = 606, + [642] = 592, + [643] = 582, + [644] = 629, + [645] = 596, [646] = 646, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 584, - [652] = 582, - [653] = 583, - [654] = 585, - [655] = 587, - [656] = 586, - [657] = 657, - [658] = 658, - [659] = 658, - [660] = 587, - [661] = 597, - [662] = 588, + [647] = 595, + [648] = 580, + [649] = 599, + [650] = 623, + [651] = 603, + [652] = 600, + [653] = 607, + [654] = 597, + [655] = 623, + [656] = 656, + [657] = 608, + [658] = 608, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 623, [663] = 663, - [664] = 577, + [664] = 661, [665] = 665, - [666] = 579, + [666] = 666, [667] = 667, - [668] = 578, - [669] = 663, - [670] = 580, - [671] = 592, - [672] = 593, - [673] = 595, + [668] = 668, + [669] = 589, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 594, [674] = 590, - [675] = 675, - [676] = 589, - [677] = 675, - [678] = 599, - [679] = 598, - [680] = 596, - [681] = 594, - [682] = 591, - [683] = 683, - [684] = 583, - [685] = 586, - [686] = 686, + [675] = 672, + [676] = 676, + [677] = 677, + [678] = 671, + [679] = 679, + [680] = 584, + [681] = 681, + [682] = 682, + [683] = 681, + [684] = 684, + [685] = 587, + [686] = 586, [687] = 687, [688] = 688, - [689] = 689, - [690] = 690, + [689] = 595, + [690] = 582, [691] = 691, [692] = 692, - [693] = 665, - [694] = 667, - [695] = 649, + [693] = 580, + [694] = 694, + [695] = 603, [696] = 696, - [697] = 585, - [698] = 584, - [699] = 699, - [700] = 700, - [701] = 584, - [702] = 690, - [703] = 582, + [697] = 602, + [698] = 691, + [699] = 598, + [700] = 581, + [701] = 594, + [702] = 599, + [703] = 601, [704] = 704, - [705] = 586, - [706] = 585, - [707] = 585, - [708] = 586, - [709] = 584, - [710] = 710, + [705] = 592, + [706] = 583, + [707] = 597, + [708] = 687, + [709] = 591, + [710] = 600, [711] = 711, - [712] = 712, - [713] = 583, - [714] = 700, - [715] = 582, + [712] = 596, + [713] = 713, + [714] = 593, + [715] = 586, [716] = 716, - [717] = 717, + [717] = 696, [718] = 718, - [719] = 582, - [720] = 683, - [721] = 721, - [722] = 583, - [723] = 691, - [724] = 593, - [725] = 580, - [726] = 592, - [727] = 596, - [728] = 728, - [729] = 729, - [730] = 594, - [731] = 731, - [732] = 598, - [733] = 578, - [734] = 734, - [735] = 591, - [736] = 736, - [737] = 737, + [719] = 719, + [720] = 720, + [721] = 694, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 670, + [727] = 584, + [728] = 725, + [729] = 586, + [730] = 718, + [731] = 584, + [732] = 732, + [733] = 590, + [734] = 590, + [735] = 589, + [736] = 586, + [737] = 589, [738] = 738, - [739] = 739, + [739] = 587, [740] = 740, [741] = 741, - [742] = 742, - [743] = 595, + [742] = 584, + [743] = 590, [744] = 589, [745] = 745, [746] = 746, [747] = 747, - [748] = 748, - [749] = 749, + [748] = 587, + [749] = 587, [750] = 750, - [751] = 599, - [752] = 590, + [751] = 676, + [752] = 591, [753] = 753, - [754] = 577, - [755] = 755, + [754] = 754, + [755] = 599, [756] = 756, [757] = 757, [758] = 758, [759] = 759, [760] = 760, - [761] = 588, - [762] = 762, - [763] = 597, - [764] = 579, - [765] = 765, - [766] = 572, + [761] = 761, + [762] = 600, + [763] = 763, + [764] = 764, + [765] = 601, + [766] = 575, [767] = 767, - [768] = 649, - [769] = 699, - [770] = 432, - [771] = 771, - [772] = 658, - [773] = 721, - [774] = 583, - [775] = 431, - [776] = 582, - [777] = 586, - [778] = 584, - [779] = 658, + [768] = 768, + [769] = 580, + [770] = 596, + [771] = 593, + [772] = 772, + [773] = 773, + [774] = 774, + [775] = 775, + [776] = 776, + [777] = 777, + [778] = 595, + [779] = 779, [780] = 780, - [781] = 657, + [781] = 781, [782] = 782, - [783] = 650, - [784] = 648, + [783] = 783, + [784] = 784, [785] = 785, - [786] = 786, - [787] = 585, - [788] = 578, - [789] = 592, + [786] = 597, + [787] = 787, + [788] = 592, + [789] = 581, [790] = 790, - [791] = 587, - [792] = 593, - [793] = 595, - [794] = 579, - [795] = 580, - [796] = 599, - [797] = 598, - [798] = 798, - [799] = 596, - [800] = 594, - [801] = 577, - [802] = 590, - [803] = 591, - [804] = 798, - [805] = 589, - [806] = 588, - [807] = 597, - [808] = 808, - [809] = 582, - [810] = 810, - [811] = 583, - [812] = 584, - [813] = 810, - [814] = 683, - [815] = 690, - [816] = 585, - [817] = 665, - [818] = 818, - [819] = 818, - [820] = 690, - [821] = 821, - [822] = 717, - [823] = 583, - [824] = 683, - [825] = 586, - [826] = 686, - [827] = 667, - [828] = 687, - [829] = 584, - [830] = 830, - [831] = 649, - [832] = 712, - [833] = 821, - [834] = 721, - [835] = 582, - [836] = 818, - [837] = 585, - [838] = 586, - [839] = 665, - [840] = 840, - [841] = 818, - [842] = 645, - [843] = 716, - [844] = 587, - [845] = 667, - [846] = 840, - [847] = 586, - [848] = 585, - [849] = 688, - [850] = 453, - [851] = 704, - [852] = 699, - [853] = 711, - [854] = 583, - [855] = 582, - [856] = 584, - [857] = 810, - [858] = 818, - [859] = 444, - [860] = 830, - [861] = 757, - [862] = 699, - [863] = 591, - [864] = 578, - [865] = 758, - [866] = 760, - [867] = 748, - [868] = 729, - [869] = 589, - [870] = 765, - [871] = 590, - [872] = 577, - [873] = 594, - [874] = 596, - [875] = 742, - [876] = 598, - [877] = 599, - [878] = 745, - [879] = 580, - [880] = 762, - [881] = 753, - [882] = 597, - [883] = 579, - [884] = 588, - [885] = 741, - [886] = 595, - [887] = 736, - [888] = 739, - [889] = 593, - [890] = 731, - [891] = 747, - [892] = 746, - [893] = 592, - [894] = 738, - [895] = 767, - [896] = 755, - [897] = 699, - [898] = 734, - [899] = 740, - [900] = 572, - [901] = 750, - [902] = 756, - [903] = 737, - [904] = 786, - [905] = 771, - [906] = 721, - [907] = 782, - [908] = 780, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, + [791] = 791, + [792] = 598, + [793] = 582, + [794] = 583, + [795] = 602, + [796] = 796, + [797] = 603, + [798] = 679, + [799] = 799, + [800] = 677, + [801] = 801, + [802] = 584, + [803] = 681, + [804] = 804, + [805] = 587, + [806] = 806, + [807] = 586, + [808] = 589, + [809] = 432, + [810] = 732, + [811] = 682, + [812] = 684, + [813] = 813, + [814] = 670, + [815] = 590, + [816] = 681, + [817] = 676, + [818] = 750, + [819] = 433, + [820] = 820, + [821] = 583, + [822] = 594, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 595, + [827] = 827, + [828] = 600, + [829] = 829, + [830] = 820, + [831] = 831, + [832] = 820, + [833] = 833, + [834] = 833, + [835] = 593, + [836] = 580, + [837] = 582, + [838] = 601, + [839] = 596, + [840] = 827, + [841] = 833, + [842] = 823, + [843] = 599, + [844] = 603, + [845] = 598, + [846] = 833, + [847] = 602, + [848] = 597, + [849] = 829, + [850] = 831, + [851] = 592, + [852] = 581, + [853] = 833, + [854] = 591, + [855] = 747, + [856] = 720, + [857] = 716, + [858] = 738, + [859] = 584, + [860] = 732, + [861] = 718, + [862] = 454, + [863] = 740, + [864] = 696, + [865] = 718, + [866] = 725, + [867] = 741, + [868] = 670, + [869] = 750, + [870] = 725, + [871] = 587, + [872] = 723, + [873] = 719, + [874] = 589, + [875] = 587, + [876] = 696, + [877] = 589, + [878] = 590, + [879] = 590, + [880] = 586, + [881] = 440, + [882] = 590, + [883] = 589, + [884] = 587, + [885] = 584, + [886] = 586, + [887] = 666, + [888] = 694, + [889] = 746, + [890] = 676, + [891] = 594, + [892] = 745, + [893] = 586, + [894] = 584, + [895] = 694, + [896] = 597, + [897] = 773, + [898] = 603, + [899] = 602, + [900] = 777, + [901] = 581, + [902] = 591, + [903] = 732, + [904] = 780, + [905] = 601, + [906] = 774, + [907] = 776, + [908] = 787, + [909] = 775, + [910] = 784, + [911] = 580, + [912] = 779, + [913] = 596, + [914] = 593, + [915] = 763, + [916] = 790, + [917] = 760, + [918] = 754, + [919] = 757, + [920] = 761, + [921] = 582, + [922] = 753, + [923] = 595, + [924] = 758, + [925] = 791, + [926] = 772, + [927] = 768, + [928] = 764, + [929] = 600, + [930] = 598, + [931] = 785, + [932] = 796, + [933] = 575, + [934] = 767, + [935] = 783, + [936] = 782, + [937] = 599, + [938] = 592, + [939] = 781, + [940] = 583, + [941] = 732, + [942] = 759, + [943] = 806, + [944] = 801, + [945] = 750, + [946] = 804, + [947] = 813, [948] = 948, [949] = 949, [950] = 950, @@ -4857,11 +4938,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [955] = 955, [956] = 956, [957] = 957, - [958] = 577, + [958] = 958, [959] = 959, [960] = 960, - [961] = 578, - [962] = 579, + [961] = 961, + [962] = 962, [963] = 963, [964] = 964, [965] = 965, @@ -4869,13 +4950,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [967] = 967, [968] = 968, [969] = 969, - [970] = 580, + [970] = 970, [971] = 971, - [972] = 972, + [972] = 583, [973] = 973, [974] = 974, - [975] = 453, - [976] = 444, + [975] = 581, + [976] = 976, [977] = 977, [978] = 978, [979] = 979, @@ -4902,246 +4983,246 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1000] = 1000, [1001] = 1001, [1002] = 1002, - [1003] = 1003, + [1003] = 582, [1004] = 1004, [1005] = 1005, [1006] = 1006, [1007] = 1007, - [1008] = 1008, + [1008] = 580, [1009] = 1009, [1010] = 1010, - [1011] = 981, + [1011] = 1011, [1012] = 1012, - [1013] = 998, - [1014] = 1006, - [1015] = 999, - [1016] = 993, - [1017] = 996, - [1018] = 983, - [1019] = 1001, - [1020] = 995, - [1021] = 979, - [1022] = 991, - [1023] = 990, - [1024] = 1010, - [1025] = 989, - [1026] = 988, - [1027] = 987, - [1028] = 980, - [1029] = 982, - [1030] = 1008, - [1031] = 1002, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 440, + [1017] = 454, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, [1032] = 1032, - [1033] = 992, + [1033] = 1033, [1034] = 1034, - [1035] = 986, - [1036] = 985, - [1037] = 984, - [1038] = 994, - [1039] = 1009, - [1040] = 997, - [1041] = 1000, - [1042] = 1007, - [1043] = 1005, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, [1044] = 1044, - [1045] = 1004, - [1046] = 1003, - [1047] = 996, - [1048] = 1004, - [1049] = 1006, - [1050] = 980, - [1051] = 993, - [1052] = 979, - [1053] = 991, - [1054] = 990, - [1055] = 989, - [1056] = 988, - [1057] = 986, - [1058] = 985, - [1059] = 984, - [1060] = 995, - [1061] = 994, - [1062] = 923, - [1063] = 924, - [1064] = 925, - [1065] = 947, - [1066] = 946, - [1067] = 1001, - [1068] = 1010, - [1069] = 926, - [1070] = 968, - [1071] = 943, - [1072] = 971, - [1073] = 950, - [1074] = 1008, - [1075] = 956, - [1076] = 944, - [1077] = 941, - [1078] = 983, - [1079] = 987, - [1080] = 919, - [1081] = 928, - [1082] = 909, - [1083] = 931, - [1084] = 579, - [1085] = 965, - [1086] = 918, - [1087] = 577, - [1088] = 934, - [1089] = 578, - [1090] = 936, - [1091] = 938, - [1092] = 942, - [1093] = 951, - [1094] = 982, - [1095] = 981, - [1096] = 945, - [1097] = 431, - [1098] = 432, - [1099] = 948, - [1100] = 949, - [1101] = 952, - [1102] = 580, - [1103] = 960, - [1104] = 963, - [1105] = 967, - [1106] = 940, - [1107] = 927, - [1108] = 939, - [1109] = 964, - [1110] = 937, - [1111] = 935, - [1112] = 1002, - [1113] = 933, - [1114] = 932, - [1115] = 1003, - [1116] = 999, - [1117] = 1005, - [1118] = 916, - [1119] = 1007, - [1120] = 953, - [1121] = 915, - [1122] = 954, - [1123] = 997, - [1124] = 920, - [1125] = 914, - [1126] = 930, - [1127] = 913, - [1128] = 1009, - [1129] = 910, - [1130] = 959, - [1131] = 998, - [1132] = 929, - [1133] = 1133, - [1134] = 992, - [1135] = 966, - [1136] = 1000, - [1137] = 921, - [1138] = 917, - [1139] = 969, - [1140] = 972, - [1141] = 922, - [1142] = 912, - [1143] = 911, - [1144] = 957, - [1145] = 973, - [1146] = 955, - [1147] = 1008, - [1148] = 1010, - [1149] = 983, - [1150] = 982, - [1151] = 981, - [1152] = 992, - [1153] = 1006, - [1154] = 1001, - [1155] = 999, - [1156] = 996, - [1157] = 995, - [1158] = 980, - [1159] = 993, - [1160] = 979, - [1161] = 991, - [1162] = 990, - [1163] = 989, - [1164] = 1164, - [1165] = 987, - [1166] = 986, - [1167] = 985, - [1168] = 984, - [1169] = 994, - [1170] = 1170, - [1171] = 988, - [1172] = 1000, - [1173] = 998, - [1174] = 1009, - [1175] = 997, - [1176] = 1164, - [1177] = 1177, - [1178] = 1178, - [1179] = 1170, - [1180] = 1007, - [1181] = 1005, - [1182] = 1004, - [1183] = 1003, - [1184] = 1002, - [1185] = 1185, - [1186] = 1186, - [1187] = 1007, - [1188] = 1188, - [1189] = 1007, - [1190] = 1190, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1045, + [1055] = 1019, + [1056] = 1039, + [1057] = 1021, + [1058] = 1044, + [1059] = 1038, + [1060] = 1037, + [1061] = 1031, + [1062] = 1034, + [1063] = 1032, + [1064] = 1033, + [1065] = 1065, + [1066] = 1052, + [1067] = 1035, + [1068] = 1027, + [1069] = 1029, + [1070] = 1028, + [1071] = 1018, + [1072] = 1030, + [1073] = 1020, + [1074] = 1042, + [1075] = 1050, + [1076] = 1049, + [1077] = 1048, + [1078] = 1026, + [1079] = 1047, + [1080] = 1046, + [1081] = 1025, + [1082] = 1053, + [1083] = 1041, + [1084] = 1023, + [1085] = 1024, + [1086] = 1043, + [1087] = 1001, + [1088] = 1034, + [1089] = 583, + [1090] = 1009, + [1091] = 976, + [1092] = 1045, + [1093] = 1046, + [1094] = 1047, + [1095] = 1023, + [1096] = 1048, + [1097] = 1049, + [1098] = 1050, + [1099] = 1042, + [1100] = 1020, + [1101] = 1030, + [1102] = 1024, + [1103] = 1018, + [1104] = 994, + [1105] = 965, + [1106] = 1028, + [1107] = 1029, + [1108] = 1035, + [1109] = 957, + [1110] = 1052, + [1111] = 1019, + [1112] = 980, + [1113] = 1025, + [1114] = 1026, + [1115] = 1027, + [1116] = 1032, + [1117] = 950, + [1118] = 971, + [1119] = 956, + [1120] = 1053, + [1121] = 1037, + [1122] = 990, + [1123] = 1006, + [1124] = 998, + [1125] = 951, + [1126] = 1011, + [1127] = 1004, + [1128] = 958, + [1129] = 999, + [1130] = 1005, + [1131] = 952, + [1132] = 1132, + [1133] = 1021, + [1134] = 959, + [1135] = 961, + [1136] = 1136, + [1137] = 979, + [1138] = 966, + [1139] = 978, + [1140] = 967, + [1141] = 973, + [1142] = 964, + [1143] = 1132, + [1144] = 970, + [1145] = 969, + [1146] = 968, + [1147] = 1010, + [1148] = 1136, + [1149] = 985, + [1150] = 1012, + [1151] = 1041, + [1152] = 953, + [1153] = 981, + [1154] = 983, + [1155] = 960, + [1156] = 1007, + [1157] = 963, + [1158] = 962, + [1159] = 432, + [1160] = 1014, + [1161] = 995, + [1162] = 1002, + [1163] = 433, + [1164] = 1015, + [1165] = 982, + [1166] = 1039, + [1167] = 580, + [1168] = 986, + [1169] = 1013, + [1170] = 954, + [1171] = 955, + [1172] = 1038, + [1173] = 1033, + [1174] = 582, + [1175] = 988, + [1176] = 1031, + [1177] = 581, + [1178] = 996, + [1179] = 1000, + [1180] = 1044, + [1181] = 977, + [1182] = 1043, + [1183] = 997, + [1184] = 991, + [1185] = 993, + [1186] = 984, + [1187] = 992, + [1188] = 948, + [1189] = 987, + [1190] = 1037, [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, + [1192] = 1032, + [1193] = 1028, + [1194] = 1034, + [1195] = 1029, [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1192, - [1200] = 1200, + [1197] = 1035, + [1198] = 1052, + [1199] = 1026, + [1200] = 1045, [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1192, - [1205] = 1205, - [1206] = 1206, + [1202] = 1020, + [1203] = 1042, + [1204] = 1039, + [1205] = 1027, + [1206] = 1050, [1207] = 1207, - [1208] = 1195, - [1209] = 1207, - [1210] = 1210, - [1211] = 1207, - [1212] = 1212, - [1213] = 1210, - [1214] = 1196, - [1215] = 1215, - [1216] = 1216, - [1217] = 1197, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, + [1208] = 1049, + [1209] = 1048, + [1210] = 1038, + [1211] = 1047, + [1212] = 1046, + [1213] = 1041, + [1214] = 1019, + [1215] = 1025, + [1216] = 1030, + [1217] = 1018, + [1218] = 1044, + [1219] = 1023, + [1220] = 1043, + [1221] = 1021, + [1222] = 1033, + [1223] = 1024, + [1224] = 1053, + [1225] = 1031, [1226] = 1226, [1227] = 1227, - [1228] = 1195, - [1229] = 1205, - [1230] = 1205, - [1231] = 1197, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, [1232] = 1232, - [1233] = 1233, - [1234] = 1205, - [1235] = 1207, - [1236] = 1236, - [1237] = 1237, - [1238] = 1215, + [1233] = 1228, + [1234] = 1031, + [1235] = 1229, + [1236] = 1229, + [1237] = 1228, + [1238] = 1031, [1239] = 1239, - [1240] = 1197, - [1241] = 1212, - [1242] = 1242, + [1240] = 1240, + [1241] = 1228, + [1242] = 1229, [1243] = 1243, [1244] = 1244, [1245] = 1245, @@ -5153,117 +5234,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1251] = 1251, [1252] = 1252, [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1245, - [1257] = 1253, - [1258] = 1252, - [1259] = 1245, - [1260] = 1260, - [1261] = 1260, + [1254] = 1252, + [1255] = 1239, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1259, + [1260] = 1248, + [1261] = 1261, [1262] = 1262, - [1263] = 1260, - [1264] = 1248, - [1265] = 1245, - [1266] = 1255, - [1267] = 1248, - [1268] = 1254, - [1269] = 1246, - [1270] = 1255, - [1271] = 1252, - [1272] = 1255, - [1273] = 1245, - [1274] = 1254, - [1275] = 1260, - [1276] = 1248, - [1277] = 1254, - [1278] = 1252, - [1279] = 1246, - [1280] = 1251, - [1281] = 1252, - [1282] = 1254, - [1283] = 1260, - [1284] = 1248, - [1285] = 1249, - [1286] = 1249, - [1287] = 1246, + [1263] = 1249, + [1264] = 1264, + [1265] = 1265, + [1266] = 1264, + [1267] = 1249, + [1268] = 1227, + [1269] = 1250, + [1270] = 1239, + [1271] = 1271, + [1272] = 1272, + [1273] = 1273, + [1274] = 1227, + [1275] = 1275, + [1276] = 1276, + [1277] = 1277, + [1278] = 1278, + [1279] = 1249, + [1280] = 1280, + [1281] = 1281, + [1282] = 1282, + [1283] = 1283, + [1284] = 1284, + [1285] = 1285, + [1286] = 1286, + [1287] = 1287, [1288] = 1288, - [1289] = 1248, - [1290] = 1254, - [1291] = 1252, - [1292] = 1255, - [1293] = 1245, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1288, [1294] = 1294, - [1295] = 1295, - [1296] = 1260, - [1297] = 1251, - [1298] = 1255, + [1295] = 1290, + [1296] = 1291, + [1297] = 1297, + [1298] = 1298, [1299] = 1299, - [1300] = 1253, - [1301] = 1248, - [1302] = 1245, - [1303] = 1260, - [1304] = 1248, - [1305] = 1245, - [1306] = 1260, - [1307] = 1248, - [1308] = 1308, - [1309] = 1245, - [1310] = 1255, - [1311] = 1294, - [1312] = 1260, - [1313] = 1245, - [1314] = 1314, - [1315] = 1253, - [1316] = 1260, + [1300] = 1300, + [1301] = 1290, + [1302] = 1292, + [1303] = 1291, + [1304] = 1297, + [1305] = 1305, + [1306] = 1288, + [1307] = 1297, + [1308] = 1291, + [1309] = 1290, + [1310] = 1310, + [1311] = 1290, + [1312] = 1291, + [1313] = 1313, + [1314] = 1297, + [1315] = 1299, + [1316] = 1288, [1317] = 1317, - [1318] = 1318, - [1319] = 1319, - [1320] = 1318, - [1321] = 1317, - [1322] = 1319, - [1323] = 1323, - [1324] = 1324, + [1318] = 1310, + [1319] = 1290, + [1320] = 1320, + [1321] = 1294, + [1322] = 1322, + [1323] = 1288, + [1324] = 1305, [1325] = 1325, - [1326] = 1326, + [1326] = 1322, [1327] = 1327, - [1328] = 1328, - [1329] = 1329, - [1330] = 1330, - [1331] = 1331, - [1332] = 1332, - [1333] = 1333, - [1334] = 1333, - [1335] = 1335, - [1336] = 1335, - [1337] = 1332, - [1338] = 1338, - [1339] = 1332, - [1340] = 1335, - [1341] = 1338, - [1342] = 1333, - [1343] = 1343, - [1344] = 1344, - [1345] = 1343, - [1346] = 1344, - [1347] = 1343, - [1348] = 1344, - [1349] = 1349, - [1350] = 1349, - [1351] = 1349, - [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, + [1328] = 1299, + [1329] = 1292, + [1330] = 1291, + [1331] = 1290, + [1332] = 1290, + [1333] = 1291, + [1334] = 1299, + [1335] = 1291, + [1336] = 1297, + [1337] = 1305, + [1338] = 1291, + [1339] = 1297, + [1340] = 1300, + [1341] = 1290, + [1342] = 1320, + [1343] = 1294, + [1344] = 1288, + [1345] = 1320, + [1346] = 1290, + [1347] = 1313, + [1348] = 1348, + [1349] = 1288, + [1350] = 1350, + [1351] = 1291, + [1352] = 1297, + [1353] = 1299, + [1354] = 1305, + [1355] = 1292, + [1356] = 1288, + [1357] = 1305, [1358] = 1358, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, + [1359] = 1322, + [1360] = 1288, + [1361] = 1299, + [1362] = 1305, + [1363] = 1298, + [1364] = 1320, [1365] = 1365, [1366] = 1366, [1367] = 1367, @@ -5272,33 +5353,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1370] = 1370, [1371] = 1371, [1372] = 1372, - [1373] = 1373, + [1373] = 1372, [1374] = 1374, [1375] = 1375, [1376] = 1376, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1382, + [1377] = 1376, + [1378] = 1375, + [1379] = 1376, + [1380] = 1374, + [1381] = 1374, + [1382] = 1375, [1383] = 1383, [1384] = 1384, [1385] = 1384, - [1386] = 1386, - [1387] = 1387, - [1388] = 1386, + [1386] = 1384, + [1387] = 1383, + [1388] = 1383, [1389] = 1389, - [1390] = 1390, - [1391] = 1391, + [1390] = 1389, + [1391] = 1389, [1392] = 1392, [1393] = 1393, [1394] = 1394, - [1395] = 1393, + [1395] = 1395, [1396] = 1396, [1397] = 1397, [1398] = 1398, - [1399] = 1394, + [1399] = 1399, [1400] = 1400, [1401] = 1401, [1402] = 1402, @@ -5308,11 +5389,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1406] = 1406, [1407] = 1407, [1408] = 1408, - [1409] = 1396, + [1409] = 1409, [1410] = 1410, [1411] = 1411, [1412] = 1412, - [1413] = 1381, + [1413] = 1413, [1414] = 1414, [1415] = 1415, [1416] = 1416, @@ -5327,11 +5408,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1425] = 1425, [1426] = 1426, [1427] = 1427, - [1428] = 1423, + [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 1429, + [1432] = 1432, [1433] = 1433, [1434] = 1434, [1435] = 1435, @@ -5341,818 +5422,818 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1439] = 1439, [1440] = 1440, [1441] = 1441, - [1442] = 1442, + [1442] = 1436, [1443] = 1443, [1444] = 1444, - [1445] = 597, - [1446] = 1438, + [1445] = 1445, + [1446] = 1446, [1447] = 1447, [1448] = 1448, - [1449] = 1449, - [1450] = 1450, - [1451] = 1444, - [1452] = 649, - [1453] = 717, + [1449] = 1444, + [1450] = 1447, + [1451] = 1451, + [1452] = 1445, + [1453] = 1451, [1454] = 1454, [1455] = 1455, - [1456] = 1456, + [1456] = 1454, [1457] = 1457, [1458] = 1458, [1459] = 1459, [1460] = 1460, - [1461] = 1459, - [1462] = 1458, + [1461] = 1461, + [1462] = 1462, [1463] = 1463, - [1464] = 1460, - [1465] = 1459, - [1466] = 1458, - [1467] = 1460, - [1468] = 1468, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 1464, [1469] = 1469, - [1470] = 1460, - [1471] = 1458, + [1470] = 1470, + [1471] = 1471, [1472] = 1472, [1473] = 1473, - [1474] = 1459, - [1475] = 1459, - [1476] = 1476, - [1477] = 1458, - [1478] = 1478, + [1474] = 1474, + [1475] = 1475, + [1476] = 1474, + [1477] = 1477, + [1478] = 1462, [1479] = 1479, - [1480] = 1458, - [1481] = 1460, - [1482] = 1459, - [1483] = 1459, - [1484] = 1459, - [1485] = 1485, - [1486] = 1456, - [1487] = 1458, - [1488] = 1460, - [1489] = 1459, + [1480] = 670, + [1481] = 1481, + [1482] = 1482, + [1483] = 602, + [1484] = 1484, + [1485] = 1482, + [1486] = 1482, + [1487] = 1487, + [1488] = 1488, + [1489] = 720, [1490] = 1490, - [1491] = 1491, - [1492] = 597, - [1493] = 1456, - [1494] = 1460, - [1495] = 1460, - [1496] = 1458, - [1497] = 1497, - [1498] = 1458, - [1499] = 1499, - [1500] = 1460, - [1501] = 1459, - [1502] = 1459, - [1503] = 1460, - [1504] = 1504, - [1505] = 1456, - [1506] = 1458, - [1507] = 1456, - [1508] = 597, - [1509] = 1458, - [1510] = 1510, - [1511] = 1511, - [1512] = 1460, - [1513] = 1513, - [1514] = 1459, - [1515] = 1459, - [1516] = 1516, + [1491] = 1488, + [1492] = 1487, + [1493] = 1493, + [1494] = 1494, + [1495] = 1487, + [1496] = 1496, + [1497] = 1488, + [1498] = 1482, + [1499] = 1482, + [1500] = 1500, + [1501] = 1488, + [1502] = 1502, + [1503] = 1482, + [1504] = 1487, + [1505] = 1505, + [1506] = 1482, + [1507] = 1488, + [1508] = 1487, + [1509] = 1482, + [1510] = 1482, + [1511] = 1488, + [1512] = 1487, + [1513] = 1487, + [1514] = 1494, + [1515] = 1500, + [1516] = 1482, [1517] = 1517, [1518] = 1518, - [1519] = 423, - [1520] = 1517, - [1521] = 1518, - [1522] = 1522, - [1523] = 1523, - [1524] = 1523, - [1525] = 424, - [1526] = 1522, - [1527] = 1527, - [1528] = 1436, - [1529] = 1529, - [1530] = 1419, - [1531] = 665, - [1532] = 1532, - [1533] = 667, - [1534] = 665, - [1535] = 1535, - [1536] = 1536, - [1537] = 1537, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1487, + [1523] = 1488, + [1524] = 1482, + [1525] = 719, + [1526] = 1488, + [1527] = 1482, + [1528] = 1488, + [1529] = 1487, + [1530] = 1488, + [1531] = 1487, + [1532] = 676, + [1533] = 1533, + [1534] = 1534, + [1535] = 1487, + [1536] = 1488, + [1537] = 1482, [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 588, - [1542] = 590, - [1543] = 1419, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, [1544] = 1544, - [1545] = 1536, - [1546] = 597, + [1545] = 1545, + [1546] = 1546, [1547] = 1547, - [1548] = 1535, - [1549] = 1383, - [1550] = 1547, - [1551] = 1535, + [1548] = 1544, + [1549] = 602, + [1550] = 1550, + [1551] = 1551, [1552] = 1552, - [1553] = 1547, - [1554] = 1536, + [1553] = 602, + [1554] = 1544, [1555] = 1555, [1556] = 1556, - [1557] = 1535, - [1558] = 1536, - [1559] = 1536, - [1560] = 1535, - [1561] = 667, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1560, + [1561] = 1547, [1562] = 1562, - [1563] = 785, + [1563] = 1563, [1564] = 1564, [1565] = 1565, - [1566] = 1566, - [1567] = 1567, + [1566] = 1544, + [1567] = 1544, [1568] = 1568, - [1569] = 667, + [1569] = 1569, [1570] = 1570, - [1571] = 583, - [1572] = 665, - [1573] = 1573, - [1574] = 583, - [1575] = 1536, + [1571] = 799, + [1572] = 423, + [1573] = 1461, + [1574] = 1574, + [1575] = 1575, [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1579, + [1579] = 1574, [1580] = 1580, - [1581] = 1581, - [1582] = 1582, - [1583] = 1583, - [1584] = 1584, - [1585] = 1585, + [1581] = 1481, + [1582] = 1578, + [1583] = 1576, + [1584] = 424, + [1585] = 587, [1586] = 1586, [1587] = 1587, - [1588] = 1588, - [1589] = 1589, - [1590] = 1577, + [1588] = 602, + [1589] = 592, + [1590] = 603, [1591] = 1591, [1592] = 1592, - [1593] = 1593, - [1594] = 427, + [1593] = 696, + [1594] = 1594, [1595] = 1595, - [1596] = 1552, - [1597] = 597, - [1598] = 1583, - [1599] = 597, - [1600] = 1556, - [1601] = 1555, - [1602] = 1578, - [1603] = 1581, - [1604] = 1604, - [1605] = 1582, - [1606] = 1606, - [1607] = 1592, - [1608] = 590, - [1609] = 588, - [1610] = 1610, - [1611] = 425, - [1612] = 1593, - [1613] = 1613, - [1614] = 590, - [1615] = 1584, - [1616] = 588, - [1617] = 1617, - [1618] = 1618, + [1596] = 1596, + [1597] = 1596, + [1598] = 1598, + [1599] = 1599, + [1600] = 1599, + [1601] = 1601, + [1602] = 1602, + [1603] = 694, + [1604] = 1455, + [1605] = 587, + [1606] = 1596, + [1607] = 1596, + [1608] = 694, + [1609] = 696, + [1610] = 1595, + [1611] = 1461, + [1612] = 1612, + [1613] = 1599, + [1614] = 1595, + [1615] = 1596, + [1616] = 696, + [1617] = 694, + [1618] = 1602, [1619] = 1619, - [1620] = 1585, - [1621] = 1621, - [1622] = 1622, - [1623] = 1567, - [1624] = 427, - [1625] = 1588, - [1626] = 1568, + [1620] = 1596, + [1621] = 1599, + [1622] = 1599, + [1623] = 1623, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, [1627] = 1627, - [1628] = 1556, - [1629] = 1555, - [1630] = 425, - [1631] = 1627, - [1632] = 1576, + [1628] = 1628, + [1629] = 1629, + [1630] = 1627, + [1631] = 1631, + [1632] = 1632, [1633] = 1633, [1634] = 1634, - [1635] = 1586, - [1636] = 1604, - [1637] = 1634, - [1638] = 1579, - [1639] = 1633, - [1640] = 1587, - [1641] = 1641, - [1642] = 1642, - [1643] = 1580, - [1644] = 1644, - [1645] = 1589, - [1646] = 1568, - [1647] = 1567, + [1635] = 1635, + [1636] = 1631, + [1637] = 1624, + [1638] = 1594, + [1639] = 1639, + [1640] = 1598, + [1641] = 592, + [1642] = 1631, + [1643] = 1631, + [1644] = 1631, + [1645] = 1626, + [1646] = 1646, + [1647] = 1591, [1648] = 1648, [1649] = 1649, - [1650] = 1552, - [1651] = 1619, - [1652] = 1621, - [1653] = 1613, - [1654] = 1591, - [1655] = 1655, - [1656] = 436, - [1657] = 1657, - [1658] = 1658, + [1650] = 1650, + [1651] = 1651, + [1652] = 1631, + [1653] = 1653, + [1654] = 1654, + [1655] = 592, + [1656] = 1656, + [1657] = 1631, + [1658] = 1631, [1659] = 1659, - [1660] = 1510, - [1661] = 461, - [1662] = 1657, - [1663] = 1443, - [1664] = 1664, - [1665] = 1513, + [1660] = 1631, + [1661] = 425, + [1662] = 1631, + [1663] = 1631, + [1664] = 603, + [1665] = 426, [1666] = 1666, - [1667] = 1667, - [1668] = 457, - [1669] = 439, - [1670] = 1455, - [1671] = 447, - [1672] = 434, + [1667] = 1594, + [1668] = 1668, + [1669] = 602, + [1670] = 1670, + [1671] = 1668, + [1672] = 602, [1673] = 1673, [1674] = 1674, [1675] = 1675, - [1676] = 449, - [1677] = 1677, - [1678] = 443, - [1679] = 452, + [1676] = 1635, + [1677] = 426, + [1678] = 1631, + [1679] = 1679, [1680] = 1680, - [1681] = 448, - [1682] = 1682, - [1683] = 1664, - [1684] = 1655, - [1685] = 1685, - [1686] = 429, - [1687] = 1687, - [1688] = 1655, - [1689] = 464, - [1690] = 1457, + [1681] = 1681, + [1682] = 1659, + [1683] = 1626, + [1684] = 1591, + [1685] = 1654, + [1686] = 1686, + [1687] = 1639, + [1688] = 1666, + [1689] = 1689, + [1690] = 1686, [1691] = 1691, - [1692] = 1692, - [1693] = 1659, - [1694] = 1441, - [1695] = 1431, - [1696] = 1455, - [1697] = 1513, - [1698] = 1425, - [1699] = 1699, - [1700] = 1499, - [1701] = 1511, - [1702] = 1658, - [1703] = 1510, - [1704] = 433, - [1705] = 1421, - [1706] = 437, - [1707] = 1664, - [1708] = 1675, - [1709] = 1664, - [1710] = 1655, - [1711] = 441, - [1712] = 435, - [1713] = 1664, + [1692] = 1632, + [1693] = 1693, + [1694] = 1629, + [1695] = 1695, + [1696] = 1696, + [1697] = 1633, + [1698] = 1675, + [1699] = 1650, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1695, + [1704] = 1704, + [1705] = 1624, + [1706] = 1656, + [1707] = 425, + [1708] = 1704, + [1709] = 1709, + [1710] = 1710, + [1711] = 1711, + [1712] = 1679, + [1713] = 1628, [1714] = 1714, - [1715] = 1680, - [1716] = 1714, - [1717] = 1687, - [1718] = 455, - [1719] = 1719, - [1720] = 1457, - [1721] = 1721, - [1722] = 1664, - [1723] = 1664, + [1715] = 1691, + [1716] = 1693, + [1717] = 1598, + [1718] = 1673, + [1719] = 1696, + [1720] = 1710, + [1721] = 603, + [1722] = 1674, + [1723] = 1700, [1724] = 1724, - [1725] = 462, - [1726] = 1655, - [1727] = 1655, - [1728] = 1595, - [1729] = 440, - [1730] = 458, + [1725] = 456, + [1726] = 1726, + [1727] = 1727, + [1728] = 429, + [1729] = 447, + [1730] = 446, [1731] = 1731, - [1732] = 1655, + [1732] = 1732, [1733] = 1733, - [1734] = 1664, - [1735] = 1735, - [1736] = 1682, + [1734] = 1734, + [1735] = 457, + [1736] = 431, [1737] = 1737, - [1738] = 430, - [1739] = 1655, - [1740] = 1433, - [1741] = 442, - [1742] = 1511, - [1743] = 1664, - [1744] = 1744, - [1745] = 1692, + [1738] = 453, + [1739] = 444, + [1740] = 437, + [1741] = 1741, + [1742] = 1651, + [1743] = 1479, + [1744] = 1726, + [1745] = 1745, [1746] = 1746, - [1747] = 1655, - [1748] = 1685, - [1749] = 1664, - [1750] = 1655, - [1751] = 1655, - [1752] = 1499, - [1753] = 1753, - [1754] = 1754, - [1755] = 1655, - [1756] = 1664, - [1757] = 446, - [1758] = 1758, - [1759] = 1759, + [1747] = 1559, + [1748] = 1552, + [1749] = 1519, + [1750] = 1542, + [1751] = 1751, + [1752] = 435, + [1753] = 1559, + [1754] = 1557, + [1755] = 1755, + [1756] = 1756, + [1757] = 443, + [1758] = 438, + [1759] = 1727, [1760] = 1760, - [1761] = 1761, - [1762] = 1762, + [1761] = 450, + [1762] = 1552, [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, - [1768] = 1768, + [1764] = 1727, + [1765] = 1737, + [1766] = 1745, + [1767] = 1727, + [1768] = 1542, [1769] = 1769, [1770] = 1770, - [1771] = 1771, - [1772] = 1772, + [1771] = 449, + [1772] = 1727, [1773] = 1773, - [1774] = 1441, - [1775] = 1775, - [1776] = 1776, - [1777] = 1777, - [1778] = 1778, - [1779] = 1439, - [1780] = 1780, - [1781] = 1781, - [1782] = 1759, - [1783] = 1447, - [1784] = 1784, - [1785] = 1785, + [1774] = 434, + [1775] = 439, + [1776] = 448, + [1777] = 1751, + [1778] = 1727, + [1779] = 1727, + [1780] = 1731, + [1781] = 1558, + [1782] = 1558, + [1783] = 1555, + [1784] = 441, + [1785] = 1463, [1786] = 1786, - [1787] = 1787, - [1788] = 1788, - [1789] = 1789, - [1790] = 1691, + [1787] = 1555, + [1788] = 1760, + [1789] = 1727, + [1790] = 1790, [1791] = 1791, - [1792] = 1792, + [1792] = 1727, [1793] = 1793, [1794] = 1794, [1795] = 1795, - [1796] = 1781, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1764, + [1796] = 1741, + [1797] = 1557, + [1798] = 455, + [1799] = 458, + [1800] = 1727, + [1801] = 1755, + [1802] = 462, [1803] = 1803, - [1804] = 1804, + [1804] = 1727, [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1808, - [1809] = 1809, - [1810] = 1810, - [1811] = 1811, + [1806] = 1472, + [1807] = 1473, + [1808] = 1466, + [1809] = 463, + [1810] = 430, + [1811] = 1805, [1812] = 1812, - [1813] = 1794, - [1814] = 1811, + [1813] = 1813, + [1814] = 1479, [1815] = 1815, - [1816] = 1808, + [1816] = 1816, [1817] = 1817, [1818] = 1818, [1819] = 1819, - [1820] = 1809, + [1820] = 1820, [1821] = 1821, [1822] = 1822, - [1823] = 1443, + [1823] = 1823, [1824] = 1824, [1825] = 1825, [1826] = 1826, - [1827] = 1805, + [1827] = 1827, [1828] = 1828, - [1829] = 1829, - [1830] = 645, + [1829] = 1505, + [1830] = 1830, [1831] = 1831, - [1832] = 1449, + [1832] = 1832, [1833] = 1833, - [1834] = 1777, + [1834] = 1834, [1835] = 1835, - [1836] = 1786, - [1837] = 1789, + [1836] = 1836, + [1837] = 1837, [1838] = 1838, - [1839] = 1454, - [1840] = 1840, - [1841] = 1793, - [1842] = 1804, - [1843] = 1798, - [1844] = 1844, - [1845] = 1817, + [1839] = 1839, + [1840] = 1835, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 1843, + [1845] = 1845, [1846] = 1846, [1847] = 1847, - [1848] = 1766, + [1848] = 1848, [1849] = 1849, - [1850] = 1838, - [1851] = 1828, + [1850] = 1850, + [1851] = 1851, [1852] = 1852, - [1853] = 1840, + [1853] = 1835, [1854] = 1854, - [1855] = 1780, - [1856] = 1775, + [1855] = 1855, + [1856] = 1856, [1857] = 1857, - [1858] = 1769, + [1858] = 1858, [1859] = 1859, - [1860] = 1822, - [1861] = 1809, - [1862] = 1788, - [1863] = 1821, - [1864] = 1864, - [1865] = 1797, + [1860] = 1860, + [1861] = 1861, + [1862] = 1862, + [1863] = 1863, + [1864] = 1484, + [1865] = 1865, [1866] = 1866, [1867] = 1867, - [1868] = 1807, - [1869] = 1812, - [1870] = 1870, + [1868] = 1851, + [1869] = 1869, + [1870] = 1519, [1871] = 1871, - [1872] = 1767, - [1873] = 1768, - [1874] = 1770, + [1872] = 1860, + [1873] = 1873, + [1874] = 1874, [1875] = 1875, [1876] = 1876, - [1877] = 1877, - [1878] = 1792, - [1879] = 1829, - [1880] = 1880, - [1881] = 1833, - [1882] = 1849, - [1883] = 1801, - [1884] = 1866, - [1885] = 1885, - [1886] = 1864, - [1887] = 1857, - [1888] = 1888, - [1889] = 1889, - [1890] = 1448, + [1877] = 1866, + [1878] = 1878, + [1879] = 1879, + [1880] = 1871, + [1881] = 1879, + [1882] = 1856, + [1883] = 1883, + [1884] = 1884, + [1885] = 1842, + [1886] = 1886, + [1887] = 1887, + [1888] = 1835, + [1889] = 1878, + [1890] = 1890, [1891] = 1891, [1892] = 1892, - [1893] = 1810, - [1894] = 1852, - [1895] = 1895, - [1896] = 1846, - [1897] = 1824, - [1898] = 1898, - [1899] = 1899, - [1900] = 1847, - [1901] = 1877, - [1902] = 1809, - [1903] = 1785, - [1904] = 1895, - [1905] = 1891, - [1906] = 1880, - [1907] = 1892, - [1908] = 1875, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1737, - [1913] = 508, - [1914] = 454, - [1915] = 510, - [1916] = 564, - [1917] = 488, - [1918] = 1918, - [1919] = 1919, + [1893] = 1893, + [1894] = 1894, + [1895] = 1819, + [1896] = 1838, + [1897] = 1897, + [1898] = 1817, + [1899] = 1816, + [1900] = 1875, + [1901] = 1823, + [1902] = 1874, + [1903] = 1822, + [1904] = 1904, + [1905] = 1818, + [1906] = 1906, + [1907] = 1820, + [1908] = 1908, + [1909] = 1873, + [1910] = 1886, + [1911] = 1846, + [1912] = 1848, + [1913] = 1884, + [1914] = 1832, + [1915] = 1863, + [1916] = 1837, + [1917] = 1917, + [1918] = 1891, + [1919] = 1867, [1920] = 1920, [1921] = 1921, - [1922] = 463, - [1923] = 1923, - [1924] = 1924, - [1925] = 1925, - [1926] = 1926, - [1927] = 1927, + [1922] = 1813, + [1923] = 1869, + [1924] = 1517, + [1925] = 1518, + [1926] = 1876, + [1927] = 1858, [1928] = 1928, [1929] = 1929, [1930] = 1930, - [1931] = 527, - [1932] = 530, + [1931] = 1865, + [1932] = 1932, [1933] = 1933, - [1934] = 528, - [1935] = 1935, + [1934] = 1890, + [1935] = 1894, [1936] = 1936, - [1937] = 537, - [1938] = 1938, - [1939] = 1939, + [1937] = 1937, + [1938] = 1794, + [1939] = 1904, [1940] = 1940, - [1941] = 1941, - [1942] = 502, - [1943] = 501, + [1941] = 1908, + [1942] = 1490, + [1943] = 1825, [1944] = 1944, - [1945] = 456, - [1946] = 1946, - [1947] = 1947, + [1945] = 1945, + [1946] = 1857, + [1947] = 1940, [1948] = 1948, [1949] = 1949, - [1950] = 1950, - [1951] = 499, + [1950] = 1921, + [1951] = 1951, [1952] = 1952, - [1953] = 496, - [1954] = 1954, + [1953] = 1834, + [1954] = 666, [1955] = 1955, [1956] = 1956, - [1957] = 495, - [1958] = 490, - [1959] = 1950, - [1960] = 1925, - [1961] = 476, - [1962] = 475, - [1963] = 522, - [1964] = 1964, - [1965] = 536, - [1966] = 542, - [1967] = 1967, - [1968] = 1968, - [1969] = 506, + [1957] = 1957, + [1958] = 1958, + [1959] = 1948, + [1960] = 1951, + [1961] = 1955, + [1962] = 1812, + [1963] = 1956, + [1964] = 1958, + [1965] = 1965, + [1966] = 1965, + [1967] = 1957, + [1968] = 1815, + [1969] = 1969, [1970] = 1970, - [1971] = 563, - [1972] = 558, - [1973] = 460, - [1974] = 1974, - [1975] = 1975, + [1971] = 507, + [1972] = 1972, + [1973] = 1973, + [1974] = 493, + [1975] = 560, [1976] = 1976, [1977] = 1977, - [1978] = 1978, + [1978] = 1786, [1979] = 1979, - [1980] = 539, - [1981] = 533, - [1982] = 526, + [1980] = 492, + [1981] = 1981, + [1982] = 512, [1983] = 1983, - [1984] = 481, - [1985] = 541, + [1984] = 1984, + [1985] = 1985, [1986] = 1986, [1987] = 1987, - [1988] = 555, - [1989] = 557, + [1988] = 1988, + [1989] = 523, [1990] = 1990, [1991] = 1991, [1992] = 1992, - [1993] = 1993, - [1994] = 1994, - [1995] = 523, - [1996] = 518, + [1993] = 525, + [1994] = 527, + [1995] = 1995, + [1996] = 1985, [1997] = 1997, - [1998] = 1964, - [1999] = 1666, - [2000] = 466, - [2001] = 534, + [1998] = 1998, + [1999] = 1999, + [2000] = 518, + [2001] = 530, [2002] = 2002, - [2003] = 516, + [2003] = 531, [2004] = 2004, - [2005] = 2005, - [2006] = 2006, - [2007] = 1920, - [2008] = 2008, - [2009] = 517, - [2010] = 525, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 498, + [2005] = 538, + [2006] = 1831, + [2007] = 2007, + [2008] = 541, + [2009] = 543, + [2010] = 2010, + [2011] = 544, + [2012] = 549, + [2013] = 551, + [2014] = 561, [2015] = 2015, - [2016] = 1921, - [2017] = 477, - [2018] = 2018, + [2016] = 2016, + [2017] = 2017, + [2018] = 519, [2019] = 2019, - [2020] = 548, - [2021] = 2021, - [2022] = 470, - [2023] = 1326, - [2024] = 2024, - [2025] = 1946, - [2026] = 469, - [2027] = 1955, - [2028] = 468, + [2020] = 2020, + [2021] = 520, + [2022] = 2022, + [2023] = 2023, + [2024] = 464, + [2025] = 1998, + [2026] = 2026, + [2027] = 1987, + [2028] = 2028, [2029] = 2029, - [2030] = 566, - [2031] = 2031, - [2032] = 519, - [2033] = 445, - [2034] = 483, - [2035] = 2035, - [2036] = 560, - [2037] = 2037, - [2038] = 521, - [2039] = 561, - [2040] = 2040, - [2041] = 1930, - [2042] = 544, - [2043] = 2043, - [2044] = 515, - [2045] = 535, - [2046] = 532, - [2047] = 511, - [2048] = 509, + [2030] = 2030, + [2031] = 565, + [2032] = 2032, + [2033] = 567, + [2034] = 516, + [2035] = 459, + [2036] = 1972, + [2037] = 563, + [2038] = 555, + [2039] = 2039, + [2040] = 553, + [2041] = 2041, + [2042] = 2004, + [2043] = 552, + [2044] = 2044, + [2045] = 529, + [2046] = 469, + [2047] = 548, + [2048] = 466, [2049] = 2049, - [2050] = 504, + [2050] = 547, [2051] = 2051, [2052] = 2052, - [2053] = 512, + [2053] = 554, [2054] = 2054, [2055] = 2055, - [2056] = 553, - [2057] = 2057, - [2058] = 493, - [2059] = 507, + [2056] = 2056, + [2057] = 470, + [2058] = 550, + [2059] = 2059, [2060] = 2060, - [2061] = 2061, - [2062] = 1935, - [2063] = 503, - [2064] = 1940, - [2065] = 2065, + [2061] = 1990, + [2062] = 2062, + [2063] = 2063, + [2064] = 2064, + [2065] = 542, [2066] = 2066, - [2067] = 478, - [2068] = 2068, - [2069] = 2012, - [2070] = 2070, - [2071] = 2071, - [2072] = 494, - [2073] = 545, - [2074] = 531, - [2075] = 529, + [2067] = 2067, + [2068] = 546, + [2069] = 540, + [2070] = 539, + [2071] = 536, + [2072] = 2007, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, [2076] = 2076, - [2077] = 1469, - [2078] = 2019, - [2079] = 2021, - [2080] = 538, - [2081] = 467, - [2082] = 1994, - [2083] = 471, - [2084] = 524, - [2085] = 543, - [2086] = 474, - [2087] = 2068, - [2088] = 473, - [2089] = 479, - [2090] = 2090, - [2091] = 2091, - [2092] = 2092, + [2077] = 2077, + [2078] = 499, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 534, + [2085] = 2085, + [2086] = 2086, + [2087] = 533, + [2088] = 2088, + [2089] = 511, + [2090] = 513, + [2091] = 2020, + [2092] = 514, [2093] = 2093, - [2094] = 2037, - [2095] = 1992, - [2096] = 2096, - [2097] = 2097, - [2098] = 2098, + [2094] = 515, + [2095] = 2095, + [2096] = 496, + [2097] = 465, + [2098] = 526, [2099] = 2099, - [2100] = 2100, + [2100] = 524, [2101] = 2101, [2102] = 2102, [2103] = 2103, - [2104] = 480, - [2105] = 484, - [2106] = 2106, - [2107] = 492, - [2108] = 497, - [2109] = 1939, - [2110] = 554, - [2111] = 2111, - [2112] = 2112, - [2113] = 1927, - [2114] = 485, - [2115] = 1831, - [2116] = 2116, - [2117] = 2117, + [2104] = 532, + [2105] = 517, + [2106] = 535, + [2107] = 467, + [2108] = 472, + [2109] = 2109, + [2110] = 2110, + [2111] = 2004, + [2112] = 475, + [2113] = 2113, + [2114] = 2114, + [2115] = 537, + [2116] = 476, + [2117] = 452, [2118] = 2118, - [2119] = 2119, - [2120] = 500, - [2121] = 1941, + [2119] = 2081, + [2120] = 2080, + [2121] = 2121, [2122] = 2122, - [2123] = 2123, - [2124] = 2124, + [2123] = 1756, + [2124] = 485, [2125] = 2125, [2126] = 2126, - [2127] = 1954, - [2128] = 556, - [2129] = 2129, - [2130] = 1994, - [2131] = 1954, + [2127] = 2127, + [2128] = 477, + [2129] = 478, + [2130] = 2130, + [2131] = 2131, [2132] = 2132, - [2133] = 2133, - [2134] = 1954, - [2135] = 1994, - [2136] = 540, + [2133] = 1988, + [2134] = 2134, + [2135] = 2022, + [2136] = 1973, [2137] = 2137, - [2138] = 450, + [2138] = 480, [2139] = 2139, - [2140] = 2140, - [2141] = 2141, + [2140] = 436, + [2141] = 484, [2142] = 2142, [2143] = 2143, - [2144] = 2144, - [2145] = 550, - [2146] = 1994, - [2147] = 1948, - [2148] = 1970, - [2149] = 1954, - [2150] = 551, + [2144] = 1970, + [2145] = 479, + [2146] = 2146, + [2147] = 2147, + [2148] = 451, + [2149] = 2149, + [2150] = 482, [2151] = 2151, [2152] = 2152, - [2153] = 505, + [2153] = 2153, [2154] = 2154, - [2155] = 2071, - [2156] = 1994, + [2155] = 2155, + [2156] = 2130, [2157] = 2157, - [2158] = 472, - [2159] = 2159, - [2160] = 1954, - [2161] = 2161, - [2162] = 482, - [2163] = 2163, - [2164] = 486, - [2165] = 487, - [2166] = 2166, - [2167] = 1954, - [2168] = 489, - [2169] = 1991, - [2170] = 513, - [2171] = 1994, - [2172] = 2172, - [2173] = 562, - [2174] = 465, - [2175] = 565, - [2176] = 459, - [2177] = 2177, - [2178] = 1979, - [2179] = 1954, - [2180] = 491, - [2181] = 1994, - [2182] = 546, - [2183] = 547, - [2184] = 549, - [2185] = 552, + [2158] = 483, + [2159] = 486, + [2160] = 2160, + [2161] = 2085, + [2162] = 488, + [2163] = 489, + [2164] = 2164, + [2165] = 490, + [2166] = 491, + [2167] = 2039, + [2168] = 2054, + [2169] = 2151, + [2170] = 2170, + [2171] = 494, + [2172] = 2149, + [2173] = 495, + [2174] = 502, + [2175] = 503, + [2176] = 505, + [2177] = 2095, + [2178] = 2088, + [2179] = 468, + [2180] = 1366, + [2181] = 2181, + [2182] = 473, + [2183] = 2183, + [2184] = 2054, + [2185] = 2185, [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, + [2187] = 481, + [2188] = 1564, + [2189] = 2004, [2190] = 2190, [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 2194, - [2195] = 2195, - [2196] = 2196, - [2197] = 2197, + [2192] = 2004, + [2193] = 2157, + [2194] = 500, + [2195] = 501, + [2196] = 504, + [2197] = 566, [2198] = 2198, [2199] = 2199, - [2200] = 2200, + [2200] = 2054, [2201] = 2201, - [2202] = 2202, + [2202] = 564, [2203] = 2203, [2204] = 2204, [2205] = 2205, [2206] = 2206, [2207] = 2207, [2208] = 2208, - [2209] = 2209, + [2209] = 506, [2210] = 2210, - [2211] = 2211, + [2211] = 2054, [2212] = 2212, [2213] = 2213, - [2214] = 2214, - [2215] = 2215, + [2214] = 2147, + [2215] = 2004, [2216] = 2216, [2217] = 2217, - [2218] = 2218, + [2218] = 545, [2219] = 2219, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, + [2220] = 460, + [2221] = 461, + [2222] = 528, [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, - [2227] = 2187, + [2224] = 562, + [2225] = 521, + [2226] = 510, + [2227] = 568, [2228] = 2228, - [2229] = 2229, - [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [2233] = 2233, - [2234] = 2234, + [2229] = 569, + [2230] = 2051, + [2231] = 2052, + [2232] = 2054, + [2233] = 2004, + [2234] = 2099, [2235] = 2235, - [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 2239, + [2236] = 559, + [2237] = 2054, + [2238] = 509, + [2239] = 2054, [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, + [2241] = 2004, + [2242] = 508, + [2243] = 558, [2244] = 2244, - [2245] = 2245, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, - [2249] = 2249, - [2250] = 2250, + [2245] = 557, + [2246] = 498, + [2247] = 2101, + [2248] = 556, + [2249] = 497, + [2250] = 487, [2251] = 2251, [2252] = 2252, - [2253] = 2253, + [2253] = 2082, [2254] = 2254, [2255] = 2255, [2256] = 2256, @@ -6166,65 +6247,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2264] = 2264, [2265] = 2265, [2266] = 2266, - [2267] = 2204, + [2267] = 2267, [2268] = 2268, - [2269] = 2269, + [2269] = 1731, [2270] = 2270, [2271] = 2271, [2272] = 2272, [2273] = 2273, [2274] = 2274, [2275] = 2275, - [2276] = 2232, - [2277] = 2240, - [2278] = 2243, - [2279] = 2244, - [2280] = 2245, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, [2281] = 2281, [2282] = 2282, [2283] = 2283, [2284] = 2284, - [2285] = 2284, + [2285] = 2285, [2286] = 2286, - [2287] = 2015, + [2287] = 2287, [2288] = 2288, - [2289] = 2243, + [2289] = 2289, [2290] = 2290, [2291] = 2291, [2292] = 2292, [2293] = 2293, - [2294] = 2239, + [2294] = 2294, [2295] = 2295, [2296] = 2296, [2297] = 2297, [2298] = 2298, - [2299] = 2265, + [2299] = 2299, [2300] = 2300, - [2301] = 2228, + [2301] = 2301, [2302] = 2302, - [2303] = 2271, + [2303] = 2303, [2304] = 2304, [2305] = 2305, [2306] = 2306, - [2307] = 2215, - [2308] = 2308, + [2307] = 2307, + [2308] = 2257, [2309] = 2309, [2310] = 2310, [2311] = 2311, [2312] = 2312, [2313] = 2313, - [2314] = 2208, + [2314] = 2304, [2315] = 2315, [2316] = 2316, [2317] = 2317, [2318] = 2318, - [2319] = 2191, + [2319] = 2319, [2320] = 2320, - [2321] = 2321, - [2322] = 2201, + [2321] = 2316, + [2322] = 2322, [2323] = 2323, [2324] = 2324, - [2325] = 2269, + [2325] = 2325, [2326] = 2326, [2327] = 2327, [2328] = 2328, @@ -6234,353 +6315,423 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2332] = 2332, [2333] = 2333, [2334] = 2334, - [2335] = 2334, - [2336] = 2282, - [2337] = 2337, - [2338] = 2235, - [2339] = 2250, + [2335] = 2274, + [2336] = 2275, + [2337] = 2276, + [2338] = 2281, + [2339] = 2339, [2340] = 2340, [2341] = 2341, - [2342] = 2316, - [2343] = 2197, - [2344] = 2344, - [2345] = 2345, - [2346] = 2346, - [2347] = 2249, - [2348] = 2337, - [2349] = 2345, + [2342] = 2297, + [2343] = 2343, + [2344] = 2304, + [2345] = 2305, + [2346] = 2306, + [2347] = 2347, + [2348] = 2348, + [2349] = 2349, [2350] = 2350, - [2351] = 2225, + [2351] = 2351, [2352] = 2352, - [2353] = 2264, - [2354] = 2193, - [2355] = 2333, - [2356] = 2206, + [2353] = 2353, + [2354] = 2354, + [2355] = 2355, + [2356] = 2356, [2357] = 2357, [2358] = 2358, [2359] = 2359, - [2360] = 2260, - [2361] = 2361, - [2362] = 2210, - [2363] = 1685, + [2360] = 2360, + [2361] = 2271, + [2362] = 2290, + [2363] = 2294, [2364] = 2364, - [2365] = 2260, + [2365] = 2365, [2366] = 2366, [2367] = 2367, - [2368] = 2263, - [2369] = 2369, + [2368] = 2368, + [2369] = 2310, [2370] = 2370, - [2371] = 2371, - [2372] = 2254, - [2373] = 2373, - [2374] = 2374, - [2375] = 2361, - [2376] = 2293, - [2377] = 2237, - [2378] = 2312, - [2379] = 2231, + [2371] = 2313, + [2372] = 2320, + [2373] = 2322, + [2374] = 2334, + [2375] = 2340, + [2376] = 2376, + [2377] = 2358, + [2378] = 2378, + [2379] = 2109, [2380] = 2380, - [2381] = 2308, + [2381] = 2380, [2382] = 2382, - [2383] = 2226, - [2384] = 2384, + [2383] = 2383, + [2384] = 2382, [2385] = 2385, [2386] = 2386, [2387] = 2387, - [2388] = 2328, - [2389] = 2380, + [2388] = 2385, + [2389] = 2389, [2390] = 2390, - [2391] = 2212, - [2392] = 2358, - [2393] = 2286, - [2394] = 2273, + [2391] = 2391, + [2392] = 2392, + [2393] = 2393, + [2394] = 2292, [2395] = 2395, - [2396] = 2357, - [2397] = 2198, - [2398] = 2252, - [2399] = 2222, - [2400] = 2400, - [2401] = 2332, - [2402] = 2218, - [2403] = 2209, - [2404] = 2243, - [2405] = 2229, - [2406] = 2234, - [2407] = 2292, - [2408] = 2323, - [2409] = 2236, - [2410] = 2386, + [2396] = 2396, + [2397] = 2397, + [2398] = 2398, + [2399] = 2298, + [2400] = 2354, + [2401] = 2401, + [2402] = 2402, + [2403] = 2251, + [2404] = 2404, + [2405] = 2255, + [2406] = 2406, + [2407] = 2407, + [2408] = 2408, + [2409] = 2402, + [2410] = 2410, [2411] = 2411, - [2412] = 2240, - [2413] = 2385, - [2414] = 2274, - [2415] = 2242, + [2412] = 2412, + [2413] = 2413, + [2414] = 2414, + [2415] = 2264, [2416] = 2416, - [2417] = 2417, - [2418] = 1952, - [2419] = 2340, - [2420] = 2346, - [2421] = 2331, - [2422] = 2248, - [2423] = 2196, - [2424] = 2217, + [2417] = 2261, + [2418] = 2418, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, + [2422] = 2422, + [2423] = 2423, + [2424] = 2424, [2425] = 2425, - [2426] = 2253, - [2427] = 2352, - [2428] = 2262, - [2429] = 2266, - [2430] = 2281, - [2431] = 2304, - [2432] = 2195, + [2426] = 2366, + [2427] = 2316, + [2428] = 2428, + [2429] = 2356, + [2430] = 2430, + [2431] = 2431, + [2432] = 2355, [2433] = 2433, - [2434] = 2219, - [2435] = 2310, - [2436] = 2311, - [2437] = 2437, - [2438] = 2438, - [2439] = 2371, - [2440] = 2369, - [2441] = 2270, - [2442] = 2366, - [2443] = 2390, + [2434] = 2387, + [2435] = 2347, + [2436] = 2332, + [2437] = 2330, + [2438] = 2325, + [2439] = 2324, + [2440] = 2391, + [2441] = 2393, + [2442] = 2419, + [2443] = 2303, [2444] = 2444, - [2445] = 2240, - [2446] = 2446, - [2447] = 2438, - [2448] = 2260, - [2449] = 2330, - [2450] = 2344, - [2451] = 2207, - [2452] = 2367, - [2453] = 2290, - [2454] = 2359, - [2455] = 2300, - [2456] = 1692, - [2457] = 2444, - [2458] = 2433, - [2459] = 2459, - [2460] = 2460, - [2461] = 2461, - [2462] = 2462, + [2445] = 2395, + [2446] = 2301, + [2447] = 2397, + [2448] = 2291, + [2449] = 2418, + [2450] = 2270, + [2451] = 2451, + [2452] = 2267, + [2453] = 2265, + [2454] = 2398, + [2455] = 2396, + [2456] = 2256, + [2457] = 2457, + [2458] = 2254, + [2459] = 2444, + [2460] = 2416, + [2461] = 2414, + [2462] = 2263, [2463] = 2463, [2464] = 2464, [2465] = 2465, - [2466] = 2466, + [2466] = 2390, [2467] = 2467, - [2468] = 2468, + [2468] = 2302, [2469] = 2469, - [2470] = 2470, - [2471] = 2460, + [2470] = 2307, + [2471] = 2413, [2472] = 2472, - [2473] = 2473, + [2473] = 2309, [2474] = 2474, - [2475] = 2475, - [2476] = 2476, - [2477] = 2476, - [2478] = 2478, - [2479] = 2479, - [2480] = 2480, + [2475] = 2331, + [2476] = 2259, + [2477] = 2333, + [2478] = 2339, + [2479] = 2298, + [2480] = 2304, [2481] = 2481, - [2482] = 2473, - [2483] = 2483, - [2484] = 2460, - [2485] = 2485, + [2482] = 2341, + [2483] = 2299, + [2484] = 2352, + [2485] = 2353, [2486] = 2486, - [2487] = 2487, + [2487] = 2359, [2488] = 2488, - [2489] = 2489, - [2490] = 2490, + [2489] = 2412, + [2490] = 2378, [2491] = 2491, [2492] = 2492, - [2493] = 2493, + [2493] = 2392, [2494] = 2494, [2495] = 2495, - [2496] = 2496, - [2497] = 2497, + [2496] = 2433, + [2497] = 2451, [2498] = 2498, - [2499] = 2460, + [2499] = 2499, [2500] = 2500, [2501] = 2501, - [2502] = 1956, - [2503] = 2501, - [2504] = 2495, - [2505] = 2505, - [2506] = 2470, + [2502] = 2502, + [2503] = 2401, + [2504] = 2481, + [2505] = 2317, + [2506] = 2383, [2507] = 2507, [2508] = 2508, [2509] = 2509, - [2510] = 2470, - [2511] = 2511, - [2512] = 2474, - [2513] = 2513, - [2514] = 2514, - [2515] = 2472, - [2516] = 2516, + [2510] = 2326, + [2511] = 2351, + [2512] = 2298, + [2513] = 2411, + [2514] = 2431, + [2515] = 2406, + [2516] = 1741, [2517] = 2517, - [2518] = 2518, - [2519] = 2469, + [2518] = 2299, + [2519] = 2364, [2520] = 2520, [2521] = 2521, [2522] = 2522, - [2523] = 2467, - [2524] = 2524, - [2525] = 2505, - [2526] = 2526, - [2527] = 2527, - [2528] = 2528, - [2529] = 2518, - [2530] = 2530, + [2523] = 2408, + [2524] = 2422, + [2525] = 2525, + [2526] = 2498, + [2527] = 2360, + [2528] = 2367, + [2529] = 2529, + [2530] = 2368, [2531] = 2531, - [2532] = 2469, - [2533] = 2533, - [2534] = 2534, - [2535] = 2476, - [2536] = 2473, - [2537] = 2460, - [2538] = 2470, + [2532] = 2474, + [2533] = 2508, + [2534] = 2488, + [2535] = 2517, + [2536] = 2536, + [2537] = 2370, + [2538] = 2316, [2539] = 2539, - [2540] = 2540, + [2540] = 2494, [2541] = 2541, - [2542] = 2542, + [2542] = 2521, [2543] = 2543, - [2544] = 2461, - [2545] = 2461, - [2546] = 2467, - [2547] = 2547, - [2548] = 2461, - [2549] = 2520, - [2550] = 2550, - [2551] = 2531, + [2544] = 2544, + [2545] = 2525, + [2546] = 2546, + [2547] = 2529, + [2548] = 2531, + [2549] = 2549, + [2550] = 2280, + [2551] = 2543, [2552] = 2552, - [2553] = 2461, - [2554] = 2554, + [2553] = 2546, + [2554] = 2536, [2555] = 2555, - [2556] = 2526, - [2557] = 2478, - [2558] = 2463, - [2559] = 2547, - [2560] = 2492, - [2561] = 2491, + [2556] = 2556, + [2557] = 2557, + [2558] = 2558, + [2559] = 2559, + [2560] = 2560, + [2561] = 2561, [2562] = 2562, - [2563] = 2508, - [2564] = 2472, - [2565] = 2516, - [2566] = 2509, + [2563] = 2563, + [2564] = 2564, + [2565] = 2565, + [2566] = 2566, [2567] = 2567, - [2568] = 2496, - [2569] = 2479, - [2570] = 2520, + [2568] = 2568, + [2569] = 2557, + [2570] = 2562, [2571] = 2571, - [2572] = 2473, - [2573] = 2460, - [2574] = 2476, + [2572] = 2572, + [2573] = 2573, + [2574] = 2574, [2575] = 2575, [2576] = 2576, [2577] = 2577, - [2578] = 2578, + [2578] = 2559, [2579] = 2579, - [2580] = 2543, + [2580] = 2580, [2581] = 2581, - [2582] = 2579, + [2582] = 2568, [2583] = 2583, - [2584] = 2497, - [2585] = 2465, - [2586] = 2464, - [2587] = 2468, + [2584] = 2567, + [2585] = 2583, + [2586] = 2586, + [2587] = 2556, [2588] = 2588, [2589] = 2589, - [2590] = 2480, - [2591] = 2486, - [2592] = 2487, - [2593] = 2470, - [2594] = 2594, - [2595] = 2520, - [2596] = 2596, - [2597] = 2578, - [2598] = 2513, - [2599] = 2550, - [2600] = 2483, + [2590] = 2590, + [2591] = 2591, + [2592] = 2592, + [2593] = 2593, + [2594] = 2559, + [2595] = 2588, + [2596] = 2589, + [2597] = 2597, + [2598] = 2592, + [2599] = 2599, + [2600] = 2600, [2601] = 2601, - [2602] = 2539, - [2603] = 2603, - [2604] = 2571, - [2605] = 2496, - [2606] = 2554, - [2607] = 2474, - [2608] = 2608, - [2609] = 2467, + [2602] = 2592, + [2603] = 2589, + [2604] = 2561, + [2605] = 2583, + [2606] = 2606, + [2607] = 2607, + [2608] = 2577, + [2609] = 2576, [2610] = 2610, - [2611] = 2533, - [2612] = 2469, - [2613] = 2514, - [2614] = 2460, - [2615] = 2472, - [2616] = 2601, - [2617] = 2474, - [2618] = 2460, - [2619] = 2594, - [2620] = 2620, - [2621] = 2621, - [2622] = 2594, - [2623] = 2513, + [2611] = 2591, + [2612] = 2577, + [2613] = 2613, + [2614] = 2614, + [2615] = 2615, + [2616] = 2607, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 2577, + [2621] = 2583, + [2622] = 2622, + [2623] = 2623, [2624] = 2624, - [2625] = 2562, + [2625] = 2625, [2626] = 2626, - [2627] = 2460, - [2628] = 2576, - [2629] = 2629, - [2630] = 2594, + [2627] = 2627, + [2628] = 2628, + [2629] = 2566, + [2630] = 2557, [2631] = 2631, - [2632] = 2571, + [2632] = 2590, [2633] = 2633, - [2634] = 2594, - [2635] = 2577, - [2636] = 2533, - [2637] = 2460, - [2638] = 2460, - [2639] = 2500, + [2634] = 2634, + [2635] = 2635, + [2636] = 2571, + [2637] = 2574, + [2638] = 2638, + [2639] = 2639, [2640] = 2640, - [2641] = 2129, - [2642] = 2581, - [2643] = 2583, - [2644] = 2588, - [2645] = 2589, - [2646] = 2594, - [2647] = 2594, - [2648] = 2633, - [2649] = 2631, - [2650] = 2494, - [2651] = 2541, - [2652] = 2460, - [2653] = 2460, - [2654] = 2601, - [2655] = 2500, - [2656] = 2524, - [2657] = 2489, - [2658] = 2528, - [2659] = 2659, - [2660] = 2571, - [2661] = 2542, - [2662] = 2594, - [2663] = 2533, - [2664] = 2631, - [2665] = 2562, - [2666] = 2528, + [2641] = 2571, + [2642] = 2617, + [2643] = 2575, + [2644] = 2121, + [2645] = 2615, + [2646] = 2646, + [2647] = 2647, + [2648] = 2640, + [2649] = 2614, + [2650] = 2577, + [2651] = 2599, + [2652] = 2652, + [2653] = 2558, + [2654] = 2588, + [2655] = 2586, + [2656] = 2593, + [2657] = 2606, + [2658] = 2658, + [2659] = 2573, + [2660] = 2560, + [2661] = 2652, + [2662] = 2566, + [2663] = 2628, + [2664] = 2559, + [2665] = 2665, + [2666] = 2588, [2667] = 2667, - [2668] = 2631, - [2669] = 2626, + [2668] = 2624, + [2669] = 2627, [2670] = 2670, - [2671] = 2466, - [2672] = 2534, - [2673] = 2528, - [2674] = 2674, - [2675] = 2626, + [2671] = 2671, + [2672] = 2672, + [2673] = 2672, + [2674] = 2634, + [2675] = 2588, [2676] = 2676, - [2677] = 2626, - [2678] = 2562, - [2679] = 2555, - [2680] = 2680, + [2677] = 2639, + [2678] = 2574, + [2679] = 2679, + [2680] = 2571, [2681] = 2681, + [2682] = 2618, + [2683] = 2557, + [2684] = 2684, + [2685] = 2588, + [2686] = 2566, + [2687] = 2687, + [2688] = 2588, + [2689] = 2689, + [2690] = 2589, + [2691] = 2592, + [2692] = 2692, + [2693] = 2647, + [2694] = 2694, + [2695] = 2646, + [2696] = 2601, + [2697] = 2697, + [2698] = 2601, + [2699] = 2588, + [2700] = 2607, + [2701] = 2679, + [2702] = 2672, + [2703] = 2574, + [2704] = 2704, + [2705] = 2588, + [2706] = 2679, + [2707] = 2583, + [2708] = 2708, + [2709] = 2684, + [2710] = 2710, + [2711] = 2607, + [2712] = 2667, + [2713] = 2607, + [2714] = 2714, + [2715] = 2715, + [2716] = 2619, + [2717] = 2671, + [2718] = 2715, + [2719] = 2714, + [2720] = 2625, + [2721] = 2588, + [2722] = 2063, + [2723] = 2588, + [2724] = 2607, + [2725] = 2562, + [2726] = 2597, + [2727] = 2727, + [2728] = 2600, + [2729] = 2729, + [2730] = 2672, + [2731] = 2619, + [2732] = 2588, + [2733] = 2679, + [2734] = 2714, + [2735] = 2622, + [2736] = 2600, + [2737] = 2607, + [2738] = 2714, + [2739] = 2710, + [2740] = 2740, + [2741] = 2684, + [2742] = 2742, + [2743] = 2600, + [2744] = 2607, + [2745] = 2710, + [2746] = 2746, + [2747] = 2710, + [2748] = 2684, + [2749] = 2588, + [2750] = 2750, + [2751] = 2751, }; static inline bool sym_escape_sequence_character_set_1(int32_t c) { @@ -6648,60 +6799,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(71); - if (lookahead == '!') ADVANCE(137); - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(269); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '%') ADVANCE(227); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '\'') ADVANCE(189); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(222); - if (lookahead == '+') ADVANCE(129); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(132); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(225); - if (lookahead == '0') ADVANCE(119); - if (lookahead == ':') ADVANCE(97); - if (lookahead == ';') ADVANCE(86); - if (lookahead == '<') ADVANCE(208); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(102); - if (lookahead == '@') ADVANCE(138); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(93); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '^') ADVANCE(199); - if (lookahead == '_') ADVANCE(263); - if (lookahead == '`') ADVANCE(190); - if (lookahead == '{') ADVANCE(94); - if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') ADVANCE(95); - if (lookahead == '~') ADVANCE(135); - if (lookahead == 181) ADVANCE(231); + if (eof) ADVANCE(72); + if (lookahead == '!') ADVANCE(138); + if (lookahead == '"') ADVANCE(187); + if (lookahead == '#') ADVANCE(270); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(228); + if (lookahead == '&') ADVANCE(90); + if (lookahead == '\'') ADVANCE(190); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '*') ADVANCE(223); + if (lookahead == '+') ADVANCE(130); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(133); + if (lookahead == '.') ADVANCE(221); + if (lookahead == '/') ADVANCE(226); + if (lookahead == '0') ADVANCE(120); + if (lookahead == ':') ADVANCE(98); + if (lookahead == ';') ADVANCE(87); + if (lookahead == '<') ADVANCE(209); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(210); + if (lookahead == '?') ADVANCE(103); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '^') ADVANCE(200); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(191); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(108); + if (lookahead == '}') ADVANCE(96); + if (lookahead == '~') ADVANCE(136); + if (lookahead == 181) ADVANCE(232); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(253); + lookahead == 'a') ADVANCE(254); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(228); + lookahead == 'b') ADVANCE(229); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); + lookahead == 'e') ADVANCE(233); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(233); + lookahead == 'f') ADVANCE(234); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(247); + lookahead == 'i') ADVANCE(248); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(261); + lookahead == 'n') ADVANCE(262); if (lookahead == 'S' || - lookahead == 's') ADVANCE(259); + lookahead == 's') ADVANCE(260); if (lookahead == 'T' || - lookahead == 't') ADVANCE(252); + lookahead == 't') ADVANCE(253); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(245); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 'u') ADVANCE(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6710,28 +6861,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(66) if (('C' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(267); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(267); if (lookahead == '\r') ADVANCE(1); if (lookahead != 0 && - lookahead != '>') ADVANCE(267); + lookahead != '>') ADVANCE(268); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '\r') ADVANCE(187); - if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '-') ADVANCE(34); + if (lookahead == '\n') ADVANCE(188); + if (lookahead == '\r') ADVANCE(188); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '-') ADVANCE(33); if (lookahead == '/') ADVANCE(19); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '[') ADVANCE(157); + if (lookahead == '?') ADVANCE(35); + if (lookahead == '[') ADVANCE(158); if (lookahead == '\\') ADVANCE(56); - if (lookahead == '{') ADVANCE(94); + if (lookahead == '{') ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6740,16 +6891,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '\r') ADVANCE(187); - if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '-') ADVANCE(34); + if (lookahead == '\n') ADVANCE(188); + if (lookahead == '\r') ADVANCE(188); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '-') ADVANCE(33); if (lookahead == '/') ADVANCE(19); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '[') ADVANCE(157); + if (lookahead == '?') ADVANCE(35); + if (lookahead == '[') ADVANCE(158); if (lookahead == '\\') ADVANCE(38); - if (lookahead == '{') ADVANCE(94); + if (lookahead == '{') ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 160 || @@ -6758,52 +6909,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) END_STATE(); case 5: - if (lookahead == '!') ADVANCE(137); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(269); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(128); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(131); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(224); - if (lookahead == '0') ADVANCE(119); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(86); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(210); - if (lookahead == '?') ADVANCE(105); - if (lookahead == '@') ADVANCE(138); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '^') ADVANCE(198); - if (lookahead == '_') ADVANCE(263); - if (lookahead == '`') ADVANCE(190); - if (lookahead == '|') ADVANCE(108); - if (lookahead == '}') ADVANCE(95); - if (lookahead == '~') ADVANCE(135); - if (lookahead == 181) ADVANCE(231); + if (lookahead == '!') ADVANCE(138); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '#') ADVANCE(270); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(227); + if (lookahead == '&') ADVANCE(89); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(129); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(132); + if (lookahead == '.') ADVANCE(221); + if (lookahead == '/') ADVANCE(225); + if (lookahead == '0') ADVANCE(120); + if (lookahead == ':') ADVANCE(97); + if (lookahead == ';') ADVANCE(87); + if (lookahead == '<') ADVANCE(206); + if (lookahead == '=') ADVANCE(32); + if (lookahead == '>') ADVANCE(211); + if (lookahead == '?') ADVANCE(106); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '^') ADVANCE(199); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(191); + if (lookahead == '|') ADVANCE(109); + if (lookahead == '}') ADVANCE(96); + if (lookahead == '~') ADVANCE(136); + if (lookahead == 181) ADVANCE(232); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(253); + lookahead == 'a') ADVANCE(254); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(229); + lookahead == 'b') ADVANCE(230); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); + lookahead == 'e') ADVANCE(233); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(234); + lookahead == 'f') ADVANCE(235); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(261); + lookahead == 'n') ADVANCE(262); if (lookahead == 'T' || - lookahead == 't') ADVANCE(252); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 't') ADVANCE(253); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6812,46 +6963,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(5) if (('C' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(136); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(269); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '&') ADVANCE(87); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '+') ADVANCE(128); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(131); - if (lookahead == '.') ADVANCE(115); + if (lookahead == '!') ADVANCE(137); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '#') ADVANCE(270); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '&') ADVANCE(88); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '+') ADVANCE(129); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(132); + if (lookahead == '.') ADVANCE(116); if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(119); + if (lookahead == '0') ADVANCE(120); if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '@') ADVANCE(138); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '_') ADVANCE(263); - if (lookahead == '`') ADVANCE(190); - if (lookahead == '~') ADVANCE(135); - if (lookahead == 181) ADVANCE(231); + if (lookahead == '?') ADVANCE(35); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(191); + if (lookahead == '~') ADVANCE(136); + if (lookahead == 181) ADVANCE(232); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(253); + lookahead == 'a') ADVANCE(254); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(229); + lookahead == 'b') ADVANCE(230); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); + lookahead == 'e') ADVANCE(233); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(234); + lookahead == 'f') ADVANCE(235); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(261); + lookahead == 'n') ADVANCE(262); if (lookahead == 'T' || - lookahead == 't') ADVANCE(252); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 't') ADVANCE(253); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6861,48 +7012,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(136); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(269); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(99); - if (lookahead == '+') ADVANCE(128); - if (lookahead == '-') ADVANCE(131); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '!') ADVANCE(137); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '#') ADVANCE(270); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '(') ADVANCE(100); + if (lookahead == '+') ADVANCE(129); + if (lookahead == '-') ADVANCE(132); + if (lookahead == '.') ADVANCE(117); if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(119); + if (lookahead == '0') ADVANCE(120); if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '@') ADVANCE(138); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '_') ADVANCE(263); - if (lookahead == '`') ADVANCE(190); - if (lookahead == '~') ADVANCE(135); - if (lookahead == 181) ADVANCE(231); + if (lookahead == '?') ADVANCE(35); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(191); + if (lookahead == '~') ADVANCE(136); + if (lookahead == 181) ADVANCE(232); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(253); + lookahead == 'a') ADVANCE(254); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(228); + lookahead == 'b') ADVANCE(229); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); + lookahead == 'e') ADVANCE(233); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(233); + lookahead == 'f') ADVANCE(234); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(247); + lookahead == 'i') ADVANCE(248); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(261); + lookahead == 'n') ADVANCE(262); if (lookahead == 'S' || - lookahead == 's') ADVANCE(259); + lookahead == 's') ADVANCE(260); if (lookahead == 'T' || - lookahead == 't') ADVANCE(252); + lookahead == 't') ADVANCE(253); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(245); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 'u') ADVANCE(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -6912,224 +7063,213 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(186); - if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '\'') ADVANCE(189); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(127); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(134); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '/') ADVANCE(224); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(97); - if (lookahead == ';') ADVANCE(86); - if (lookahead == '<') ADVANCE(207); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(210); - if (lookahead == '?') ADVANCE(103); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '^') ADVANCE(198); - if (lookahead == '{') ADVANCE(94); - if (lookahead == '|') ADVANCE(108); - if (lookahead == '}') ADVANCE(95); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (lookahead == '!') ADVANCE(31); + if (lookahead == '"') ADVANCE(187); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(227); + if (lookahead == '&') ADVANCE(89); + if (lookahead == '\'') ADVANCE(190); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(128); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(225); + if (lookahead == '0') ADVANCE(125); + if (lookahead == ':') ADVANCE(98); + if (lookahead == ';') ADVANCE(87); + if (lookahead == '<') ADVANCE(208); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(211); + if (lookahead == '?') ADVANCE(104); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '^') ADVANCE(199); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(109); + if (lookahead == '}') ADVANCE(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(127); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(11) + lookahead == 65279) SKIP(9) if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(223); + if (lookahead == '!') ADVANCE(31); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(227); + if (lookahead == '&') ADVANCE(89); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '*') ADVANCE(224); if (lookahead == '+') ADVANCE(128); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(133); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '/') ADVANCE(224); - if (lookahead == ':') ADVANCE(97); - if (lookahead == ';') ADVANCE(86); - if (lookahead == '<') ADVANCE(207); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(210); - if (lookahead == '?') ADVANCE(103); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(56); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '^') ADVANCE(198); - if (lookahead == '`') ADVANCE(190); - if (lookahead == '{') ADVANCE(94); - if (lookahead == '|') ADVANCE(108); - if (lookahead == '}') ADVANCE(95); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(135); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(225); + if (lookahead == '0') ADVANCE(125); + if (lookahead == ':') ADVANCE(98); + if (lookahead == ';') ADVANCE(87); + if (lookahead == '<') ADVANCE(208); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(211); + if (lookahead == '?') ADVANCE(104); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '^') ADVANCE(199); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(109); + if (lookahead == '}') ADVANCE(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(127); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(10) - if (('A' <= lookahead && lookahead <= 'z') || + lookahead == 65279) SKIP(9) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(128); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(133); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '/') ADVANCE(224); - if (lookahead == ':') ADVANCE(97); - if (lookahead == ';') ADVANCE(86); - if (lookahead == '<') ADVANCE(207); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(210); - if (lookahead == '?') ADVANCE(103); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '^') ADVANCE(198); - if (lookahead == '`') ADVANCE(190); - if (lookahead == '{') ADVANCE(94); - if (lookahead == '|') ADVANCE(108); - if (lookahead == '}') ADVANCE(95); + if (lookahead == '!') ADVANCE(31); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '%') ADVANCE(227); + if (lookahead == '&') ADVANCE(89); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(129); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(134); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(225); + if (lookahead == ':') ADVANCE(98); + if (lookahead == ';') ADVANCE(87); + if (lookahead == '<') ADVANCE(208); + if (lookahead == '=') ADVANCE(32); + if (lookahead == '>') ADVANCE(211); + if (lookahead == '?') ADVANCE(104); + if (lookahead == '[') ADVANCE(158); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '^') ADVANCE(199); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(109); + if (lookahead == '}') ADVANCE(96); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(10) - if (('A' <= lookahead && lookahead <= 'z') || + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(127); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(134); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '/') ADVANCE(224); - if (lookahead == '0') ADVANCE(124); + if (lookahead == '!') ADVANCE(31); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '%') ADVANCE(227); + if (lookahead == '&') ADVANCE(89); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '+') ADVANCE(128); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(131); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(225); if (lookahead == ':') ADVANCE(97); - if (lookahead == ';') ADVANCE(86); - if (lookahead == '<') ADVANCE(207); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(210); - if (lookahead == '?') ADVANCE(103); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '^') ADVANCE(198); - if (lookahead == '{') ADVANCE(94); - if (lookahead == '|') ADVANCE(108); - if (lookahead == '}') ADVANCE(95); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (lookahead == ';') ADVANCE(87); + if (lookahead == '<') ADVANCE(208); + if (lookahead == '=') ADVANCE(32); + if (lookahead == '>') ADVANCE(211); + if (lookahead == '?') ADVANCE(106); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '^') ADVANCE(199); + if (lookahead == '|') ADVANCE(109); + if (lookahead == '}') ADVANCE(96); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(11) - if (('A' <= lookahead && lookahead <= '_') || + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(32); + if (lookahead == '"') ADVANCE(171); + if (lookahead == '\'') ADVANCE(173); + END_STATE(); + case 13: + if (lookahead == '"') ADVANCE(172); if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(127); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(130); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '/') ADVANCE(224); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(86); - if (lookahead == '<') ADVANCE(207); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '>') ADVANCE(210); - if (lookahead == '?') ADVANCE(105); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '^') ADVANCE(198); - if (lookahead == '|') ADVANCE(108); - if (lookahead == '}') ADVANCE(95); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '(') ADVANCE(100); + if (lookahead == '/') ADVANCE(19); + if (lookahead == '<') ADVANCE(30); + if (lookahead == '?') ADVANCE(35); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == 181) ADVANCE(232); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(254); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(230); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(12) - if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == 65279) SKIP(13) + if (('C' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || + ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); - END_STATE(); - case 13: - if (lookahead == '"') ADVANCE(170); - if (lookahead == '\'') ADVANCE(172); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(269); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(99); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '&') ADVANCE(88); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '(') ADVANCE(100); if (lookahead == '/') ADVANCE(19); + if (lookahead == '0') ADVANCE(125); if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(92); + if (lookahead == '?') ADVANCE(35); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '}') ADVANCE(96); + if (lookahead == 181) ADVANCE(232); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(253); + lookahead == 'a') ADVANCE(254); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(229); + lookahead == 'b') ADVANCE(230); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(127); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7140,21 +7280,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(270); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '.') ADVANCE(117); if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(119); + if (lookahead == '0') ADVANCE(120); if (lookahead == '<') ADVANCE(30); - if (lookahead == '?') ADVANCE(36); + if (lookahead == '?') ADVANCE(35); if (lookahead == '_') ADVANCE(59); if (lookahead == 181) ADVANCE(27); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(13); + lookahead == 'b') ADVANCE(12); if (lookahead == 'E' || lookahead == 'e') ADVANCE(41); if (lookahead == 'F' || @@ -7163,7 +7303,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'n') ADVANCE(52); if (lookahead == 'T' || lookahead == 't') ADVANCE(49); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7172,17 +7312,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(15) END_STATE(); case 16: - if (lookahead == '#') ADVANCE(269); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '&') ADVANCE(87); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == ',') ADVANCE(90); + if (lookahead == '#') ADVANCE(270); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '&') ADVANCE(88); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == ',') ADVANCE(91); if (lookahead == '.') ADVANCE(23); if (lookahead == '/') ADVANCE(19); - if (lookahead == '?') ADVANCE(104); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '}') ADVANCE(95); + if (lookahead == '?') ADVANCE(105); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '}') ADVANCE(96); + if (lookahead == 181) ADVANCE(232); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7193,21 +7334,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 17: - if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '&') ADVANCE(87); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '&') ADVANCE(88); + if (lookahead == ')') ADVANCE(101); if (lookahead == '.') ADVANCE(23); if (lookahead == '/') ADVANCE(19); - if (lookahead == '=') ADVANCE(35); - if (lookahead == '?') ADVANCE(104); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '{') ADVANCE(94); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '?') ADVANCE(35); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(107); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7218,29 +7358,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 18: - if (lookahead == '#') ADVANCE(183); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '/') ADVANCE(178); - if (lookahead == '?') ADVANCE(181); + if (lookahead == '#') ADVANCE(184); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '/') ADVANCE(179); + if (lookahead == '?') ADVANCE(182); if (lookahead == '\\') ADVANCE(40); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(177); - if (lookahead != 0) ADVANCE(184); + lookahead == 65279) ADVANCE(178); + if (lookahead != 0) ADVANCE(185); END_STATE(); case 19: if (lookahead == '*') ADVANCE(21); - if (lookahead == '/') ADVANCE(267); + if (lookahead == '/') ADVANCE(268); END_STATE(); case 20: if (lookahead == '*') ADVANCE(20); - if (lookahead == '/') ADVANCE(266); + if (lookahead == '/') ADVANCE(267); if (lookahead != 0) ADVANCE(21); END_STATE(); case 21: @@ -7248,83 +7388,82 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(21); END_STATE(); case 22: - if (lookahead == '*') ADVANCE(179); + if (lookahead == '*') ADVANCE(180); if (lookahead == '\'' || lookahead == '\\') ADVANCE(21); - if (lookahead != 0) ADVANCE(180); + if (lookahead != 0) ADVANCE(181); END_STATE(); case 23: if (lookahead == '.') ADVANCE(25); END_STATE(); case 24: - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(117); if (lookahead == '_') ADVANCE(59); if (lookahead == 'E' || lookahead == 'e') ADVANCE(41); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); END_STATE(); case 25: - if (lookahead == '.') ADVANCE(101); + if (lookahead == '.') ADVANCE(102); END_STATE(); case 26: - if (lookahead == '.') ADVANCE(271); + if (lookahead == '.') ADVANCE(272); END_STATE(); case 27: if (lookahead == '.') ADVANCE(28); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(272); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(273); END_STATE(); case 28: if (lookahead == '.') ADVANCE(26); END_STATE(); case 29: - if (lookahead == '<') ADVANCE(185); + if (lookahead == '<') ADVANCE(186); END_STATE(); case 30: if (lookahead == '<') ADVANCE(29); END_STATE(); case 31: - if (lookahead == '<') ADVANCE(29); - if (lookahead == '?') ADVANCE(73); + if (lookahead == '=') ADVANCE(202); END_STATE(); case 32: if (lookahead == '=') ADVANCE(201); + if (lookahead == '>') ADVANCE(99); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(200); - if (lookahead == '>') ADVANCE(98); + if (lookahead == '>') ADVANCE(156); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(155); + if (lookahead == '>') ADVANCE(99); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(98); + if (lookahead == '>') ADVANCE(75); END_STATE(); case 36: - if (lookahead == '>') ADVANCE(74); + if (lookahead == '>') ADVANCE(157); END_STATE(); case 37: - if (lookahead == '>') ADVANCE(156); + if (lookahead == '?') ADVANCE(74); END_STATE(); case 38: - if (lookahead == 'u') ADVANCE(168); + if (lookahead == 'u') ADVANCE(169); END_STATE(); case 39: - if (lookahead == '}') ADVANCE(164); + if (lookahead == '}') ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); END_STATE(); case 40: if (lookahead == '\'' || - lookahead == '\\') ADVANCE(174); - if (lookahead != 0) ADVANCE(184); + lookahead == '\\') ADVANCE(175); + if (lookahead != 0) ADVANCE(185); END_STATE(); case 41: if (lookahead == '+' || lookahead == '-') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(119); END_STATE(); case 42: if (lookahead == 'A' || @@ -7332,7 +7471,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 43: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(161); + lookahead == 'e') ADVANCE(162); END_STATE(); case 44: if (lookahead == 'H' || @@ -7344,7 +7483,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 46: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(159); + lookahead == 'l') ADVANCE(160); END_STATE(); case 47: if (lookahead == 'L' || @@ -7352,7 +7491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 48: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(72); + lookahead == 'p') ADVANCE(73); END_STATE(); case 49: if (lookahead == 'R' || @@ -7372,46 +7511,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 53: if (lookahead == '0' || - lookahead == '1') ADVANCE(122); + lookahead == '1') ADVANCE(123); END_STATE(); case 54: if (lookahead == '8' || lookahead == '9') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(126); END_STATE(); case 56: - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(164); - if (lookahead == 'u') ADVANCE(169); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(165); + if (lookahead == 'u') ADVANCE(170); if (lookahead == 'x') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(166); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(167); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); END_STATE(); case 58: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); END_STATE(); case 59: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(24); END_STATE(); case 60: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(119); END_STATE(); case 61: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); END_STATE(); case 62: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); END_STATE(); case 63: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); END_STATE(); case 64: if (('0' <= lookahead && lookahead <= '9') || @@ -7421,63 +7560,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 65: if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(184); + lookahead != '\\') ADVANCE(185); END_STATE(); case 66: - if (eof) ADVANCE(71); - if (lookahead == '!') ADVANCE(137); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(269); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '%') ADVANCE(227); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(222); - if (lookahead == '+') ADVANCE(129); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(132); - if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(225); - if (lookahead == '0') ADVANCE(119); - if (lookahead == ':') ADVANCE(97); - if (lookahead == ';') ADVANCE(86); - if (lookahead == '<') ADVANCE(208); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(102); - if (lookahead == '@') ADVANCE(138); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(93); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '^') ADVANCE(199); - if (lookahead == '_') ADVANCE(263); - if (lookahead == '`') ADVANCE(190); - if (lookahead == '{') ADVANCE(94); - if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') ADVANCE(95); - if (lookahead == '~') ADVANCE(135); - if (lookahead == 181) ADVANCE(231); + if (eof) ADVANCE(72); + if (lookahead == '!') ADVANCE(138); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '#') ADVANCE(270); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(228); + if (lookahead == '&') ADVANCE(90); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '*') ADVANCE(223); + if (lookahead == '+') ADVANCE(130); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(133); + if (lookahead == '.') ADVANCE(221); + if (lookahead == '/') ADVANCE(226); + if (lookahead == '0') ADVANCE(120); + if (lookahead == ':') ADVANCE(98); + if (lookahead == ';') ADVANCE(87); + if (lookahead == '<') ADVANCE(209); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(210); + if (lookahead == '?') ADVANCE(103); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(94); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '^') ADVANCE(200); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(191); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(108); + if (lookahead == '}') ADVANCE(96); + if (lookahead == '~') ADVANCE(136); + if (lookahead == 181) ADVANCE(232); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(253); + lookahead == 'a') ADVANCE(254); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(228); + lookahead == 'b') ADVANCE(229); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); + lookahead == 'e') ADVANCE(233); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(233); + lookahead == 'f') ADVANCE(234); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(247); + lookahead == 'i') ADVANCE(248); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(261); + lookahead == 'n') ADVANCE(262); if (lookahead == 'S' || - lookahead == 's') ADVANCE(259); + lookahead == 's') ADVANCE(260); if (lookahead == 'T' || - lookahead == 't') ADVANCE(252); + lookahead == 't') ADVANCE(253); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(245); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 'u') ADVANCE(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7486,52 +7625,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(66) if (('C' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 67: - if (eof) ADVANCE(71); - if (lookahead == '!') ADVANCE(136); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(269); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '&') ADVANCE(87); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '+') ADVANCE(128); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(131); - if (lookahead == '.') ADVANCE(116); + if (eof) ADVANCE(72); + if (lookahead == '!') ADVANCE(137); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '#') ADVANCE(270); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '&') ADVANCE(88); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '+') ADVANCE(129); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(132); + if (lookahead == '.') ADVANCE(117); if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(119); - if (lookahead == ':') ADVANCE(96); - if (lookahead == ';') ADVANCE(86); + if (lookahead == '0') ADVANCE(120); + if (lookahead == ':') ADVANCE(97); + if (lookahead == ';') ADVANCE(87); if (lookahead == '<') ADVANCE(30); - if (lookahead == '=') ADVANCE(35); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '@') ADVANCE(138); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '_') ADVANCE(263); - if (lookahead == '`') ADVANCE(190); - if (lookahead == '{') ADVANCE(94); - if (lookahead == '}') ADVANCE(95); - if (lookahead == '~') ADVANCE(135); - if (lookahead == 181) ADVANCE(231); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '?') ADVANCE(35); + if (lookahead == '@') ADVANCE(139); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '_') ADVANCE(264); + if (lookahead == '`') ADVANCE(191); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '}') ADVANCE(96); + if (lookahead == '~') ADVANCE(136); + if (lookahead == 181) ADVANCE(232); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(253); + lookahead == 'a') ADVANCE(254); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(229); + lookahead == 'b') ADVANCE(230); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); + lookahead == 'e') ADVANCE(233); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(234); + lookahead == 'f') ADVANCE(235); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(261); + lookahead == 'n') ADVANCE(262); if (lookahead == 'T' || - lookahead == 't') ADVANCE(252); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(121); + lookahead == 't') ADVANCE(253); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -7541,326 +7680,364 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('C' <= lookahead && lookahead <= 'Z') || ('c' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 68: - if (eof) ADVANCE(71); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '%') ADVANCE(227); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(99); - if (lookahead == ')') ADVANCE(100); - if (lookahead == '*') ADVANCE(222); - if (lookahead == '+') ADVANCE(129); - if (lookahead == ',') ADVANCE(90); - if (lookahead == '-') ADVANCE(132); - if (lookahead == '.') ADVANCE(221); - if (lookahead == '/') ADVANCE(225); - if (lookahead == '0') ADVANCE(124); - if (lookahead == ':') ADVANCE(97); - if (lookahead == ';') ADVANCE(86); - if (lookahead == '<') ADVANCE(206); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(102); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(158); - if (lookahead == '^') ADVANCE(199); - if (lookahead == '{') ADVANCE(94); - if (lookahead == '|') ADVANCE(107); - if (lookahead == '}') ADVANCE(95); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (eof) ADVANCE(72); + if (lookahead == '!') ADVANCE(31); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(228); + if (lookahead == '&') ADVANCE(90); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '*') ADVANCE(223); + if (lookahead == '+') ADVANCE(130); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(133); + if (lookahead == '.') ADVANCE(222); + if (lookahead == '/') ADVANCE(226); + if (lookahead == '0') ADVANCE(125); + if (lookahead == ':') ADVANCE(98); + if (lookahead == ';') ADVANCE(87); + if (lookahead == '<') ADVANCE(207); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(210); + if (lookahead == '?') ADVANCE(103); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(56); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '^') ADVANCE(200); + if (lookahead == '`') ADVANCE(191); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(108); + if (lookahead == '}') ADVANCE(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(127); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(68) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || + lookahead == 65279) SKIP(69) + if (('A' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 69: - if (eof) ADVANCE(71); - if (lookahead == '"') ADVANCE(171); - if (lookahead == '#') ADVANCE(270); - if (lookahead == '$') ADVANCE(191); - if (lookahead == '&') ADVANCE(87); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(99); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(19); - if (lookahead == '0') ADVANCE(124); - if (lookahead == '<') ADVANCE(31); - if (lookahead == '?') ADVANCE(36); - if (lookahead == '[') ADVANCE(157); - if (lookahead == '\\') ADVANCE(92); - if (lookahead == '|') ADVANCE(106); - if (lookahead == '}') ADVANCE(95); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(253); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(229); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (eof) ADVANCE(72); + if (lookahead == '!') ADVANCE(31); + if (lookahead == '"') ADVANCE(172); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(228); + if (lookahead == '&') ADVANCE(90); + if (lookahead == '\'') ADVANCE(174); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == '*') ADVANCE(223); + if (lookahead == '+') ADVANCE(130); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '-') ADVANCE(133); + if (lookahead == '.') ADVANCE(222); + if (lookahead == '/') ADVANCE(226); + if (lookahead == '0') ADVANCE(125); + if (lookahead == ':') ADVANCE(98); + if (lookahead == ';') ADVANCE(87); + if (lookahead == '<') ADVANCE(207); + if (lookahead == '=') ADVANCE(92); + if (lookahead == '>') ADVANCE(210); + if (lookahead == '?') ADVANCE(103); + if (lookahead == '[') ADVANCE(158); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '^') ADVANCE(200); + if (lookahead == '`') ADVANCE(191); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(108); + if (lookahead == '}') ADVANCE(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(127); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(69) - if (('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z') || + if (('A' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 55295) || - (57344 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 70: - if (eof) ADVANCE(71); - if (lookahead == '#') ADVANCE(84); - if (lookahead == '/') ADVANCE(79); - if (lookahead == '<') ADVANCE(75); - if (lookahead == '?') ADVANCE(82); + if (eof) ADVANCE(72); + if (lookahead == '#') ADVANCE(85); + if (lookahead == '/') ADVANCE(80); + if (lookahead == '<') ADVANCE(76); + if (lookahead == '?') ADVANCE(83); if (lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(78); + lookahead == 65279) ADVANCE(79); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70) - if (lookahead != 0) ADVANCE(85); + if (lookahead != 0) ADVANCE(86); END_STATE(); case 71: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(72); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '&') ADVANCE(88); + if (lookahead == '(') ADVANCE(100); + if (lookahead == ')') ADVANCE(101); + if (lookahead == ',') ADVANCE(91); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(19); + if (lookahead == '<') ADVANCE(37); + if (lookahead == '?') ADVANCE(105); + if (lookahead == '\\') ADVANCE(93); + if (lookahead == ']') ADVANCE(159); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(107); + if (lookahead == 181) ADVANCE(232); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(71) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (128 <= lookahead && lookahead <= 55295) || + (57344 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); case 72: - ACCEPT_TOKEN(sym_php_tag); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 73: ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(72); + END_STATE(); + case 74: + ACCEPT_TOKEN(sym_php_tag); + if (lookahead == '=') ADVANCE(73); if (lookahead == 'P' || lookahead == 'p') ADVANCE(44); END_STATE(); - case 74: + case 75: ACCEPT_TOKEN(anon_sym_QMARK_GT); END_STATE(); - case 75: + case 76: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '?') ADVANCE(73); + if (lookahead == '?') ADVANCE(74); END_STATE(); - case 76: + case 77: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(85); - if (lookahead == '\r') ADVANCE(77); - if (lookahead == '>') ADVANCE(85); + if (lookahead == '\n') ADVANCE(86); + if (lookahead == '\r') ADVANCE(78); + if (lookahead == '>') ADVANCE(86); if (lookahead != 0 && - lookahead != '<') ADVANCE(83); + lookahead != '<') ADVANCE(84); END_STATE(); - case 77: + case 78: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(85); + if (lookahead == '\n') ADVANCE(86); if (lookahead != 0 && - lookahead != '<') ADVANCE(85); + lookahead != '<') ADVANCE(86); END_STATE(); - case 78: + case 79: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '#') ADVANCE(84); - if (lookahead == '/') ADVANCE(79); - if (lookahead == '?') ADVANCE(82); + if (lookahead == '#') ADVANCE(85); + if (lookahead == '/') ADVANCE(80); + if (lookahead == '?') ADVANCE(83); if (lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(78); + lookahead == 65279) ADVANCE(79); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(78); - if (lookahead != 0 && - lookahead != '<') ADVANCE(85); - END_STATE(); - case 79: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(81); - if (lookahead == '/') ADVANCE(83); + lookahead == ' ') ADVANCE(79); if (lookahead != 0 && - lookahead != '<') ADVANCE(85); + lookahead != '<') ADVANCE(86); END_STATE(); case 80: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(80); - if (lookahead == '/') ADVANCE(85); + if (lookahead == '*') ADVANCE(82); + if (lookahead == '/') ADVANCE(84); if (lookahead != 0 && - lookahead != '<') ADVANCE(81); + lookahead != '<') ADVANCE(86); END_STATE(); case 81: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(80); + if (lookahead == '*') ADVANCE(81); + if (lookahead == '/') ADVANCE(86); if (lookahead != 0 && - lookahead != '<') ADVANCE(81); + lookahead != '<') ADVANCE(82); END_STATE(); case 82: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '>') ADVANCE(85); + if (lookahead == '*') ADVANCE(81); if (lookahead != 0 && - lookahead != '<') ADVANCE(85); + lookahead != '<') ADVANCE(82); END_STATE(); case 83: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '?') ADVANCE(76); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(85); + if (lookahead == '>') ADVANCE(86); if (lookahead != 0 && - lookahead != '<') ADVANCE(83); + lookahead != '<') ADVANCE(86); END_STATE(); case 84: ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '?') ADVANCE(77); if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '?' || - lookahead == '[') ADVANCE(85); + lookahead == '\r') ADVANCE(86); if (lookahead != 0 && - lookahead != '<') ADVANCE(83); + lookahead != '<') ADVANCE(84); END_STATE(); case 85: ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '?' || + lookahead == '[') ADVANCE(86); if (lookahead != 0 && - lookahead != '<') ADVANCE(85); + lookahead != '<') ADVANCE(84); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead != 0 && + lookahead != '<') ADVANCE(86); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 88: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(197); END_STATE(); case 89: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(197); - if (lookahead == '=') ADVANCE(151); + if (lookahead == '&') ADVANCE(198); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(198); + if (lookahead == '=') ADVANCE(152); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(200); - if (lookahead == '>') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(201); + if (lookahead == '>') ADVANCE(99); END_STATE(); case 93: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(174); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '\'' || + lookahead == '\\') ADVANCE(175); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 97: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(139); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(140); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '>') ADVANCE(74); - if (lookahead == '?') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 103: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '>') ADVANCE(74); - if (lookahead == '?') ADVANCE(192); + if (lookahead == '-') ADVANCE(36); + if (lookahead == '>') ADVANCE(75); + if (lookahead == '?') ADVANCE(194); END_STATE(); case 104: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(74); + if (lookahead == '-') ADVANCE(36); + if (lookahead == '>') ADVANCE(75); + if (lookahead == '?') ADVANCE(193); END_STATE(); case 105: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(74); - if (lookahead == '?') ADVANCE(192); + if (lookahead == '>') ADVANCE(75); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '>') ADVANCE(75); + if (lookahead == '?') ADVANCE(193); END_STATE(); case 107: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(153); - if (lookahead == '|') ADVANCE(196); END_STATE(); case 108: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(196); + if (lookahead == '=') ADVANCE(154); + if (lookahead == '|') ADVANCE(197); END_STATE(); case 109: - ACCEPT_TOKEN(aux_sym_cast_type_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(197); END_STATE(); case 110: - ACCEPT_TOKEN(aux_sym_cast_type_token3); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + ACCEPT_TOKEN(aux_sym_cast_type_token1); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 111: - ACCEPT_TOKEN(aux_sym_cast_type_token6); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + ACCEPT_TOKEN(aux_sym_cast_type_token3); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 112: - ACCEPT_TOKEN(aux_sym_cast_type_token8); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + ACCEPT_TOKEN(aux_sym_cast_type_token6); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 113: - ACCEPT_TOKEN(aux_sym_cast_type_token11); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + ACCEPT_TOKEN(aux_sym_cast_type_token8); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 114: - ACCEPT_TOKEN(aux_sym_cast_type_token12); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + ACCEPT_TOKEN(aux_sym_cast_type_token11); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 115: + ACCEPT_TOKEN(aux_sym_cast_type_token12); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); + END_STATE(); + case 116: ACCEPT_TOKEN(sym_float); if (lookahead == '.') ADVANCE(25); if (lookahead == '_') ADVANCE(58); if (lookahead == 'E' || lookahead == 'e') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); END_STATE(); - case 116: + case 117: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(58); if (lookahead == 'E' || lookahead == 'e') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); END_STATE(); - case 117: + case 118: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(264); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); + if (lookahead == '_') ADVANCE(265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 159) || @@ -7868,520 +8045,520 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (8204 <= lookahead && lookahead <= 8287) || (8289 <= lookahead && lookahead <= 55295) || (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (65280 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); - case 118: + case 119: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(119); END_STATE(); - case 119: + case 120: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(117); if (lookahead == '_') ADVANCE(54); if (lookahead == 'B' || lookahead == 'b') ADVANCE(53); if (lookahead == 'E' || lookahead == 'e') ADVANCE(41); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(125); + lookahead == 'o') ADVANCE(126); if (lookahead == 'X' || lookahead == 'x') ADVANCE(62); if (lookahead == '8' || lookahead == '9') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); END_STATE(); - case 120: + case 121: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(117); if (lookahead == '_') ADVANCE(54); if (lookahead == 'E' || lookahead == 'e') ADVANCE(41); if (lookahead == '8' || lookahead == '9') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(120); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); END_STATE(); - case 121: + case 122: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(117); if (lookahead == '_') ADVANCE(57); if (lookahead == 'E' || lookahead == 'e') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(122); END_STATE(); - case 122: + case 123: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(53); if (lookahead == '0' || - lookahead == '1') ADVANCE(122); + lookahead == '1') ADVANCE(123); END_STATE(); - case 123: + case 124: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(62); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); END_STATE(); - case 124: + case 125: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(55); if (lookahead == 'B' || lookahead == 'b') ADVANCE(53); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(125); + lookahead == 'o') ADVANCE(126); if (lookahead == 'X' || lookahead == 'x') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(126); END_STATE(); - case 125: + case 126: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(126); END_STATE(); - case 126: + case 127: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(61); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); - END_STATE(); - case 127: - ACCEPT_TOKEN(anon_sym_PLUS); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); END_STATE(); case 128: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(141); END_STATE(); case 129: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(141); - if (lookahead == '=') ADVANCE(146); + if (lookahead == '+') ADVANCE(142); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(142); + if (lookahead == '=') ADVANCE(147); END_STATE(); case 131: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(140); END_STATE(); case 132: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '=') ADVANCE(147); - if (lookahead == '>') ADVANCE(155); + if (lookahead == '-') ADVANCE(141); END_STATE(); case 133: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '>') ADVANCE(155); + if (lookahead == '-') ADVANCE(141); + if (lookahead == '=') ADVANCE(148); + if (lookahead == '>') ADVANCE(156); END_STATE(); case 134: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(155); + if (lookahead == '-') ADVANCE(141); + if (lookahead == '>') ADVANCE(156); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(156); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 137: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(201); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(202); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 159: - ACCEPT_TOKEN(aux_sym__argument_name_token1); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 160: ACCEPT_TOKEN(aux_sym__argument_name_token1); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); END_STATE(); case 161: - ACCEPT_TOKEN(aux_sym__argument_name_token2); + ACCEPT_TOKEN(aux_sym__argument_name_token1); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 162: ACCEPT_TOKEN(aux_sym__argument_name_token2); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + ACCEPT_TOKEN(aux_sym__argument_name_token2); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 164: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); case 165: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(164); END_STATE(); case 166: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(165); END_STATE(); case 167: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(166); + END_STATE(); + case 168: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); END_STATE(); - case 168: + case 169: ACCEPT_TOKEN(anon_sym_BSLASHu); END_STATE(); - case 169: + case 170: ACCEPT_TOKEN(anon_sym_BSLASHu); if (lookahead == '{') ADVANCE(64); END_STATE(); - case 170: + case 171: ACCEPT_TOKEN(aux_sym_encapsed_string_token1); END_STATE(); - case 171: + case 172: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 172: + case 173: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 173: + case 174: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 174: + case 175: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 175: + case 176: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(184); - if (lookahead == '\r') ADVANCE(176); - if (lookahead == '>') ADVANCE(184); - if (lookahead == '\\') ADVANCE(268); + if (lookahead == '\n') ADVANCE(185); + if (lookahead == '\r') ADVANCE(177); + if (lookahead == '>') ADVANCE(185); + if (lookahead == '\\') ADVANCE(269); if (lookahead != 0 && - lookahead != '\'') ADVANCE(182); + lookahead != '\'') ADVANCE(183); END_STATE(); - case 176: + case 177: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\n') ADVANCE(184); + if (lookahead == '\n') ADVANCE(185); if (lookahead == '\\') ADVANCE(65); if (lookahead != 0 && - lookahead != '\'') ADVANCE(184); + lookahead != '\'') ADVANCE(185); END_STATE(); - case 177: + case 178: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '#') ADVANCE(183); - if (lookahead == '/') ADVANCE(178); - if (lookahead == '?') ADVANCE(181); + if (lookahead == '#') ADVANCE(184); + if (lookahead == '/') ADVANCE(179); + if (lookahead == '?') ADVANCE(182); if (lookahead == '\\') ADVANCE(40); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(177); + lookahead == 65279) ADVANCE(178); if (lookahead != 0 && - lookahead != '\'') ADVANCE(184); + lookahead != '\'') ADVANCE(185); END_STATE(); - case 178: + case 179: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(180); - if (lookahead == '/') ADVANCE(182); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '/') ADVANCE(183); if (lookahead == '\\') ADVANCE(65); if (lookahead != 0 && - lookahead != '\'') ADVANCE(184); + lookahead != '\'') ADVANCE(185); END_STATE(); - case 179: + case 180: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(179); - if (lookahead == '/') ADVANCE(184); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '/') ADVANCE(185); if (lookahead == '\\') ADVANCE(22); if (lookahead != 0 && - lookahead != '\'') ADVANCE(180); + lookahead != '\'') ADVANCE(181); END_STATE(); - case 180: + case 181: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '*') ADVANCE(179); + if (lookahead == '*') ADVANCE(180); if (lookahead == '\\') ADVANCE(22); if (lookahead != 0 && - lookahead != '\'') ADVANCE(180); + lookahead != '\'') ADVANCE(181); END_STATE(); - case 181: + case 182: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '>') ADVANCE(184); + if (lookahead == '>') ADVANCE(185); if (lookahead == '\\') ADVANCE(65); if (lookahead != 0 && - lookahead != '\'') ADVANCE(184); + lookahead != '\'') ADVANCE(185); END_STATE(); - case 182: + case 183: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '?') ADVANCE(175); - if (lookahead == '\\') ADVANCE(268); + if (lookahead == '?') ADVANCE(176); + if (lookahead == '\\') ADVANCE(269); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(184); + lookahead == '\r') ADVANCE(185); if (lookahead != 0 && - lookahead != '\'') ADVANCE(182); + lookahead != '\'') ADVANCE(183); END_STATE(); - case 183: + case 184: ACCEPT_TOKEN(sym_string_value); - if (lookahead == '\\') ADVANCE(268); + if (lookahead == '\\') ADVANCE(269); if (lookahead == '\n' || lookahead == '\r' || lookahead == '?' || - lookahead == '[') ADVANCE(184); + lookahead == '[') ADVANCE(185); if (lookahead != 0 && - lookahead != '\'') ADVANCE(182); + lookahead != '\'') ADVANCE(183); END_STATE(); - case 184: + case 185: ACCEPT_TOKEN(sym_string_value); if (lookahead == '\\') ADVANCE(65); if (lookahead != 0 && - lookahead != '\'') ADVANCE(184); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + lookahead != '\'') ADVANCE(185); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 187: - ACCEPT_TOKEN(sym__new_line); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '\r') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_); + ACCEPT_TOKEN(sym__new_line); + if (lookahead == '\n') ADVANCE(188); + if (lookahead == '\r') ADVANCE(188); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_SQUOTE2); + ACCEPT_TOKEN(anon_sym_); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 193: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(154); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(155); END_STATE(); case 195: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(142); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(143); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 199: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(152); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(153); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == '=') ADVANCE(204); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(205); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(215); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 206: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(216); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(202); + if (lookahead == '=') ADVANCE(212); + if (lookahead == '>') ADVANCE(203); END_STATE(); case 207: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(202); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '=') ADVANCE(212); + if (lookahead == '>') ADVANCE(203); END_STATE(); case 208: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '?') ADVANCE(73); + if (lookahead == '<') ADVANCE(215); + if (lookahead == '=') ADVANCE(212); + if (lookahead == '>') ADVANCE(203); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(212); - if (lookahead == '>') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '?') ADVANCE(74); END_STATE(); case 210: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(212); - if (lookahead == '>') ADVANCE(217); + if (lookahead == '=') ADVANCE(213); + if (lookahead == '>') ADVANCE(219); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(213); + if (lookahead == '>') ADVANCE(218); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(214); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 215: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(185); END_STATE(); case 216: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(149); + if (lookahead == '<') ADVANCE(186); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(150); END_STATE(); case 218: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(150); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(151); END_STATE(); case 220: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 221: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(25); if (lookahead == '_') ADVANCE(58); if (lookahead == 'E' || lookahead == 'e') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(195); - if (lookahead == '=') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '=') ADVANCE(149); END_STATE(); case 223: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(194); + if (lookahead == '*') ADVANCE(196); + if (lookahead == '=') ADVANCE(144); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(21); - if (lookahead == '/') ADVANCE(267); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(195); END_STATE(); case 225: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(21); - if (lookahead == '/') ADVANCE(267); - if (lookahead == '=') ADVANCE(144); + if (lookahead == '/') ADVANCE(268); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(21); + if (lookahead == '/') ADVANCE(268); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 227: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(145); END_STATE(); case 228: - ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(170); - if (lookahead == '\'') ADVANCE(172); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(249); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 229: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(170); - if (lookahead == '\'') ADVANCE(172); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == '"') ADVANCE(171); + if (lookahead == '\'') ADVANCE(173); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(250); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 230: ACCEPT_TOKEN(sym_name); - if (lookahead == '.') ADVANCE(116); - if (lookahead == '_') ADVANCE(263); + if (lookahead == '"') ADVANCE(171); + if (lookahead == '\'') ADVANCE(173); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); + END_STATE(); + case 231: + ACCEPT_TOKEN(sym_name); + if (lookahead == '.') ADVANCE(117); + if (lookahead == '_') ADVANCE(264); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(230); + lookahead == 'e') ADVANCE(233); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(231); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || (128 <= lookahead && lookahead <= 159) || @@ -8389,269 +8566,269 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (8204 <= lookahead && lookahead <= 8287) || (8289 <= lookahead && lookahead <= 55295) || (57344 <= lookahead && lookahead <= 65278) || - (65280 <= lookahead && lookahead <= 65535)) ADVANCE(265); + (65280 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); - case 231: + case 232: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(28); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(272); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(273); if (('0' <= lookahead && lookahead <= '9') || (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(265); + (65280 <= lookahead && lookahead <= 65535)) ADVANCE(266); END_STATE(); - case 232: + case 233: ACCEPT_TOKEN(sym_name); if (lookahead == '+' || lookahead == '-') ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); - if (sym_name_character_set_2(lookahead)) ADVANCE(265); - END_STATE(); - case 233: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(244); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(248); - if (sym_name_character_set_3(lookahead)) ADVANCE(265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (sym_name_character_set_2(lookahead)) ADVANCE(266); END_STATE(); case 234: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(244); - if (sym_name_character_set_3(lookahead)) ADVANCE(265); + lookahead == 'a') ADVANCE(245); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(249); + if (sym_name_character_set_3(lookahead)) ADVANCE(266); END_STATE(); case 235: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(262); - if (sym_name_character_set_3(lookahead)) ADVANCE(265); + lookahead == 'a') ADVANCE(245); + if (sym_name_character_set_3(lookahead)) ADVANCE(266); END_STATE(); case 236: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(257); - if (sym_name_character_set_3(lookahead)) ADVANCE(265); + lookahead == 'a') ADVANCE(263); + if (sym_name_character_set_3(lookahead)) ADVANCE(266); END_STATE(); case 237: ACCEPT_TOKEN(sym_name); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(162); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(258); + if (sym_name_character_set_3(lookahead)) ADVANCE(266); END_STATE(); case 238: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(258); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'e') ADVANCE(163); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 239: ACCEPT_TOKEN(sym_name); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(113); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(259); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 240: ACCEPT_TOKEN(sym_name); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(246); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(114); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 241: ACCEPT_TOKEN(sym_name); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(110); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(247); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 242: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(160); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'l') ADVANCE(111); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 243: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(242); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'l') ADVANCE(161); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 244: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(254); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'l') ADVANCE(243); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 245: ACCEPT_TOKEN(sym_name); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(255); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(255); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 246: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(239); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'n') ADVANCE(256); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 247: ACCEPT_TOKEN(sym_name); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(256); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'n') ADVANCE(240); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 248: ACCEPT_TOKEN(sym_name); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(236); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(257); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 249: ACCEPT_TOKEN(sym_name); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(241); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'o') ADVANCE(237); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 250: ACCEPT_TOKEN(sym_name); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(235); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(242); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 251: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(240); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'r') ADVANCE(236); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 252: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(260); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'r') ADVANCE(241); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 253: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(250); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'r') ADVANCE(261); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 254: ACCEPT_TOKEN(sym_name); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(237); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(251); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 255: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || lookahead == 's') ADVANCE(238); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 256: ACCEPT_TOKEN(sym_name); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(111); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(239); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 257: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || lookahead == 't') ADVANCE(112); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 258: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(114); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 't') ADVANCE(113); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 259: ACCEPT_TOKEN(sym_name); if (lookahead == 'T' || - lookahead == 't') ADVANCE(251); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 't') ADVANCE(115); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 260: ACCEPT_TOKEN(sym_name); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(237); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(252); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 261: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(243); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + lookahead == 'u') ADVANCE(238); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 262: ACCEPT_TOKEN(sym_name); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(109); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(244); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 263: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(230); - if (sym_name_character_set_2(lookahead)) ADVANCE(265); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(110); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 264: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(117); - if (sym_name_character_set_2(lookahead)) ADVANCE(265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(231); + if (sym_name_character_set_2(lookahead)) ADVANCE(266); END_STATE(); case 265: ACCEPT_TOKEN(sym_name); - if (sym_name_character_set_1(lookahead)) ADVANCE(265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(118); + if (sym_name_character_set_2(lookahead)) ADVANCE(266); END_STATE(); case 266: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(sym_name); + if (sym_name_character_set_1(lookahead)) ADVANCE(266); END_STATE(); case 267: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 268: ACCEPT_TOKEN(sym_comment); if (lookahead == '?') ADVANCE(2); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(267); + lookahead != '\r') ADVANCE(268); END_STATE(); - case 268: + case 269: ACCEPT_TOKEN(sym_comment); - if (lookahead == '?') ADVANCE(175); + if (lookahead == '?') ADVANCE(176); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(184); + lookahead == '\r') ADVANCE(185); if (lookahead == '\'' || - lookahead == '\\') ADVANCE(267); - if (lookahead != 0) ADVANCE(182); + lookahead == '\\') ADVANCE(268); + if (lookahead != 0) ADVANCE(183); END_STATE(); - case 269: + case 270: ACCEPT_TOKEN(sym_comment); - if (lookahead == '[') ADVANCE(163); + if (lookahead == '[') ADVANCE(164); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '?') ADVANCE(267); + lookahead != '?') ADVANCE(268); END_STATE(); - case 270: + case 271: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '?' && - lookahead != '[') ADVANCE(267); + lookahead != '[') ADVANCE(268); END_STATE(); - case 271: + case 272: ACCEPT_TOKEN(sym_grit_metavariable); END_STATE(); - case 272: + case 273: ACCEPT_TOKEN(sym_grit_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(272); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(273); END_STATE(); default: return false; @@ -10350,16 +10527,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [14] = {.lex_state = 67, .external_lex_state = 2}, [15] = {.lex_state = 67, .external_lex_state = 2}, [16] = {.lex_state = 67}, - [17] = {.lex_state = 67, .external_lex_state = 2}, - [18] = {.lex_state = 67, .external_lex_state = 2}, - [19] = {.lex_state = 67, .external_lex_state = 2}, + [17] = {.lex_state = 67}, + [18] = {.lex_state = 67}, + [19] = {.lex_state = 67}, [20] = {.lex_state = 67, .external_lex_state = 2}, [21] = {.lex_state = 67}, [22] = {.lex_state = 67}, - [23] = {.lex_state = 67}, - [24] = {.lex_state = 67}, + [23] = {.lex_state = 67, .external_lex_state = 2}, + [24] = {.lex_state = 67, .external_lex_state = 2}, [25] = {.lex_state = 67}, - [26] = {.lex_state = 67, .external_lex_state = 2}, + [26] = {.lex_state = 67}, [27] = {.lex_state = 67}, [28] = {.lex_state = 67}, [29] = {.lex_state = 67}, @@ -10367,47 +10544,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 67}, [32] = {.lex_state = 67}, [33] = {.lex_state = 67}, - [34] = {.lex_state = 67, .external_lex_state = 2}, + [34] = {.lex_state = 67}, [35] = {.lex_state = 67}, [36] = {.lex_state = 67}, - [37] = {.lex_state = 67, .external_lex_state = 2}, - [38] = {.lex_state = 67}, - [39] = {.lex_state = 67}, + [37] = {.lex_state = 67}, + [38] = {.lex_state = 67, .external_lex_state = 2}, + [39] = {.lex_state = 67, .external_lex_state = 2}, [40] = {.lex_state = 67}, - [41] = {.lex_state = 67, .external_lex_state = 2}, - [42] = {.lex_state = 67}, + [41] = {.lex_state = 67}, + [42] = {.lex_state = 67, .external_lex_state = 2}, [43] = {.lex_state = 67}, - [44] = {.lex_state = 67, .external_lex_state = 2}, + [44] = {.lex_state = 67}, [45] = {.lex_state = 67}, - [46] = {.lex_state = 67}, + [46] = {.lex_state = 67, .external_lex_state = 2}, [47] = {.lex_state = 67}, [48] = {.lex_state = 67, .external_lex_state = 2}, [49] = {.lex_state = 67}, - [50] = {.lex_state = 67, .external_lex_state = 2}, + [50] = {.lex_state = 67}, [51] = {.lex_state = 67}, - [52] = {.lex_state = 67}, + [52] = {.lex_state = 67, .external_lex_state = 2}, [53] = {.lex_state = 67}, [54] = {.lex_state = 67}, [55] = {.lex_state = 67}, [56] = {.lex_state = 67, .external_lex_state = 2}, - [57] = {.lex_state = 67, .external_lex_state = 2}, - [58] = {.lex_state = 67}, - [59] = {.lex_state = 67}, + [57] = {.lex_state = 67}, + [58] = {.lex_state = 67, .external_lex_state = 2}, + [59] = {.lex_state = 67, .external_lex_state = 2}, [60] = {.lex_state = 67}, [61] = {.lex_state = 67, .external_lex_state = 2}, - [62] = {.lex_state = 67, .external_lex_state = 2}, + [62] = {.lex_state = 67}, [63] = {.lex_state = 67}, [64] = {.lex_state = 67}, [65] = {.lex_state = 67, .external_lex_state = 2}, [66] = {.lex_state = 67}, - [67] = {.lex_state = 67, .external_lex_state = 2}, + [67] = {.lex_state = 67}, [68] = {.lex_state = 67}, [69] = {.lex_state = 67}, - [70] = {.lex_state = 67}, - [71] = {.lex_state = 67}, - [72] = {.lex_state = 67, .external_lex_state = 2}, - [73] = {.lex_state = 67}, - [74] = {.lex_state = 67}, + [70] = {.lex_state = 67, .external_lex_state = 2}, + [71] = {.lex_state = 67, .external_lex_state = 2}, + [72] = {.lex_state = 67}, + [73] = {.lex_state = 67, .external_lex_state = 2}, + [74] = {.lex_state = 67, .external_lex_state = 2}, [75] = {.lex_state = 67, .external_lex_state = 2}, [76] = {.lex_state = 67}, [77] = {.lex_state = 67}, @@ -10465,30 +10642,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [129] = {.lex_state = 6}, [130] = {.lex_state = 6}, [131] = {.lex_state = 6}, - [132] = {.lex_state = 67}, - [133] = {.lex_state = 67}, + [132] = {.lex_state = 6}, + [133] = {.lex_state = 6}, [134] = {.lex_state = 6}, [135] = {.lex_state = 6}, [136] = {.lex_state = 6}, - [137] = {.lex_state = 6}, + [137] = {.lex_state = 67}, [138] = {.lex_state = 6}, [139] = {.lex_state = 6}, - [140] = {.lex_state = 6}, + [140] = {.lex_state = 67}, [141] = {.lex_state = 6}, [142] = {.lex_state = 6}, [143] = {.lex_state = 67}, - [144] = {.lex_state = 67}, + [144] = {.lex_state = 6}, [145] = {.lex_state = 67}, [146] = {.lex_state = 67}, - [147] = {.lex_state = 6}, + [147] = {.lex_state = 67}, [148] = {.lex_state = 67}, [149] = {.lex_state = 67}, [150] = {.lex_state = 6}, [151] = {.lex_state = 67}, [152] = {.lex_state = 67}, - [153] = {.lex_state = 67}, + [153] = {.lex_state = 6}, [154] = {.lex_state = 67}, - [155] = {.lex_state = 6}, + [155] = {.lex_state = 67}, [156] = {.lex_state = 67}, [157] = {.lex_state = 67}, [158] = {.lex_state = 67}, @@ -10517,23 +10694,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [181] = {.lex_state = 67}, [182] = {.lex_state = 67}, [183] = {.lex_state = 67}, - [184] = {.lex_state = 67, .external_lex_state = 2}, - [185] = {.lex_state = 67, .external_lex_state = 2}, - [186] = {.lex_state = 67}, - [187] = {.lex_state = 67, .external_lex_state = 2}, + [184] = {.lex_state = 67}, + [185] = {.lex_state = 67}, + [186] = {.lex_state = 6}, + [187] = {.lex_state = 67}, [188] = {.lex_state = 67}, - [189] = {.lex_state = 67}, - [190] = {.lex_state = 67, .external_lex_state = 2}, + [189] = {.lex_state = 6}, + [190] = {.lex_state = 67}, [191] = {.lex_state = 67}, [192] = {.lex_state = 67}, - [193] = {.lex_state = 6}, + [193] = {.lex_state = 67, .external_lex_state = 2}, [194] = {.lex_state = 67}, - [195] = {.lex_state = 67}, + [195] = {.lex_state = 67, .external_lex_state = 2}, [196] = {.lex_state = 67}, [197] = {.lex_state = 67, .external_lex_state = 2}, [198] = {.lex_state = 67, .external_lex_state = 2}, - [199] = {.lex_state = 67}, - [200] = {.lex_state = 6}, + [199] = {.lex_state = 67, .external_lex_state = 2}, + [200] = {.lex_state = 67, .external_lex_state = 2}, [201] = {.lex_state = 67}, [202] = {.lex_state = 67}, [203] = {.lex_state = 67}, @@ -10769,13 +10946,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [433] = {.lex_state = 67}, [434] = {.lex_state = 67}, [435] = {.lex_state = 67}, - [436] = {.lex_state = 67, .external_lex_state = 2}, + [436] = {.lex_state = 67}, [437] = {.lex_state = 67, .external_lex_state = 2}, - [438] = {.lex_state = 67}, + [438] = {.lex_state = 67, .external_lex_state = 2}, [439] = {.lex_state = 67, .external_lex_state = 2}, [440] = {.lex_state = 67, .external_lex_state = 2}, [441] = {.lex_state = 67, .external_lex_state = 2}, - [442] = {.lex_state = 67, .external_lex_state = 2}, + [442] = {.lex_state = 67}, [443] = {.lex_state = 67, .external_lex_state = 2}, [444] = {.lex_state = 67, .external_lex_state = 2}, [445] = {.lex_state = 67}, @@ -10783,21 +10960,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [447] = {.lex_state = 67, .external_lex_state = 2}, [448] = {.lex_state = 67, .external_lex_state = 2}, [449] = {.lex_state = 67, .external_lex_state = 2}, - [450] = {.lex_state = 67}, + [450] = {.lex_state = 67, .external_lex_state = 2}, [451] = {.lex_state = 67}, - [452] = {.lex_state = 67, .external_lex_state = 2}, + [452] = {.lex_state = 67}, [453] = {.lex_state = 67, .external_lex_state = 2}, - [454] = {.lex_state = 67}, + [454] = {.lex_state = 67, .external_lex_state = 2}, [455] = {.lex_state = 67, .external_lex_state = 2}, - [456] = {.lex_state = 67}, + [456] = {.lex_state = 67, .external_lex_state = 2}, [457] = {.lex_state = 67, .external_lex_state = 2}, [458] = {.lex_state = 67, .external_lex_state = 2}, [459] = {.lex_state = 67}, [460] = {.lex_state = 67}, - [461] = {.lex_state = 67, .external_lex_state = 2}, + [461] = {.lex_state = 67}, [462] = {.lex_state = 67, .external_lex_state = 2}, - [463] = {.lex_state = 67}, - [464] = {.lex_state = 67, .external_lex_state = 2}, + [463] = {.lex_state = 67, .external_lex_state = 2}, + [464] = {.lex_state = 67}, [465] = {.lex_state = 67}, [466] = {.lex_state = 67}, [467] = {.lex_state = 67}, @@ -10910,9 +11087,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [574] = {.lex_state = 67}, [575] = {.lex_state = 67}, [576] = {.lex_state = 67}, - [577] = {.lex_state = 68}, - [578] = {.lex_state = 68}, - [579] = {.lex_state = 68}, + [577] = {.lex_state = 67}, + [578] = {.lex_state = 67}, + [579] = {.lex_state = 67}, [580] = {.lex_state = 68}, [581] = {.lex_state = 68}, [582] = {.lex_state = 68}, @@ -10936,132 +11113,132 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [600] = {.lex_state = 68}, [601] = {.lex_state = 68}, [602] = {.lex_state = 68}, - [603] = {.lex_state = 68, .external_lex_state = 2}, + [603] = {.lex_state = 68}, [604] = {.lex_state = 68, .external_lex_state = 2}, [605] = {.lex_state = 68, .external_lex_state = 2}, [606] = {.lex_state = 68}, - [607] = {.lex_state = 68, .external_lex_state = 2}, - [608] = {.lex_state = 68, .external_lex_state = 2}, + [607] = {.lex_state = 68}, + [608] = {.lex_state = 68}, [609] = {.lex_state = 68, .external_lex_state = 2}, [610] = {.lex_state = 68, .external_lex_state = 2}, - [611] = {.lex_state = 68}, + [611] = {.lex_state = 68, .external_lex_state = 2}, [612] = {.lex_state = 68}, - [613] = {.lex_state = 68, .external_lex_state = 2}, + [613] = {.lex_state = 68}, [614] = {.lex_state = 68, .external_lex_state = 2}, [615] = {.lex_state = 68, .external_lex_state = 2}, [616] = {.lex_state = 68, .external_lex_state = 2}, [617] = {.lex_state = 68, .external_lex_state = 2}, - [618] = {.lex_state = 68}, - [619] = {.lex_state = 68, .external_lex_state = 2}, + [618] = {.lex_state = 68, .external_lex_state = 2}, + [619] = {.lex_state = 68}, [620] = {.lex_state = 68, .external_lex_state = 2}, - [621] = {.lex_state = 68, .external_lex_state = 2}, + [621] = {.lex_state = 68}, [622] = {.lex_state = 68, .external_lex_state = 2}, [623] = {.lex_state = 68}, [624] = {.lex_state = 68, .external_lex_state = 2}, - [625] = {.lex_state = 68, .external_lex_state = 2}, + [625] = {.lex_state = 68}, [626] = {.lex_state = 68, .external_lex_state = 2}, - [627] = {.lex_state = 68, .external_lex_state = 2}, - [628] = {.lex_state = 68}, - [629] = {.lex_state = 68, .external_lex_state = 2}, - [630] = {.lex_state = 68}, + [627] = {.lex_state = 68}, + [628] = {.lex_state = 68, .external_lex_state = 2}, + [629] = {.lex_state = 68}, + [630] = {.lex_state = 68, .external_lex_state = 2}, [631] = {.lex_state = 68, .external_lex_state = 2}, [632] = {.lex_state = 68, .external_lex_state = 2}, - [633] = {.lex_state = 68}, + [633] = {.lex_state = 68, .external_lex_state = 2}, [634] = {.lex_state = 68, .external_lex_state = 2}, [635] = {.lex_state = 68}, [636] = {.lex_state = 68, .external_lex_state = 2}, - [637] = {.lex_state = 68}, - [638] = {.lex_state = 68}, - [639] = {.lex_state = 68, .external_lex_state = 2}, + [637] = {.lex_state = 68, .external_lex_state = 2}, + [638] = {.lex_state = 68, .external_lex_state = 2}, + [639] = {.lex_state = 68}, [640] = {.lex_state = 68}, [641] = {.lex_state = 68}, - [642] = {.lex_state = 68}, - [643] = {.lex_state = 68}, + [642] = {.lex_state = 68, .external_lex_state = 2}, + [643] = {.lex_state = 68, .external_lex_state = 2}, [644] = {.lex_state = 68}, - [645] = {.lex_state = 8}, - [646] = {.lex_state = 12}, - [647] = {.lex_state = 12}, - [648] = {.lex_state = 8}, - [649] = {.lex_state = 9}, - [650] = {.lex_state = 8}, - [651] = {.lex_state = 9}, - [652] = {.lex_state = 9}, - [653] = {.lex_state = 9}, - [654] = {.lex_state = 9}, - [655] = {.lex_state = 8}, - [656] = {.lex_state = 9}, - [657] = {.lex_state = 9}, - [658] = {.lex_state = 8}, - [659] = {.lex_state = 8}, - [660] = {.lex_state = 9}, - [661] = {.lex_state = 9}, - [662] = {.lex_state = 9}, - [663] = {.lex_state = 14}, - [664] = {.lex_state = 9}, - [665] = {.lex_state = 8}, - [666] = {.lex_state = 9}, - [667] = {.lex_state = 8}, - [668] = {.lex_state = 9}, - [669] = {.lex_state = 14}, - [670] = {.lex_state = 9}, - [671] = {.lex_state = 9}, - [672] = {.lex_state = 9}, - [673] = {.lex_state = 9}, - [674] = {.lex_state = 9}, + [645] = {.lex_state = 68, .external_lex_state = 2}, + [646] = {.lex_state = 68}, + [647] = {.lex_state = 68, .external_lex_state = 2}, + [648] = {.lex_state = 68, .external_lex_state = 2}, + [649] = {.lex_state = 68, .external_lex_state = 2}, + [650] = {.lex_state = 68}, + [651] = {.lex_state = 68, .external_lex_state = 2}, + [652] = {.lex_state = 68, .external_lex_state = 2}, + [653] = {.lex_state = 68}, + [654] = {.lex_state = 68, .external_lex_state = 2}, + [655] = {.lex_state = 68, .external_lex_state = 2}, + [656] = {.lex_state = 68}, + [657] = {.lex_state = 68, .external_lex_state = 2}, + [658] = {.lex_state = 68}, + [659] = {.lex_state = 68}, + [660] = {.lex_state = 68}, + [661] = {.lex_state = 68}, + [662] = {.lex_state = 68}, + [663] = {.lex_state = 68}, + [664] = {.lex_state = 68}, + [665] = {.lex_state = 68}, + [666] = {.lex_state = 8}, + [667] = {.lex_state = 71}, + [668] = {.lex_state = 71}, + [669] = {.lex_state = 10}, + [670] = {.lex_state = 10}, + [671] = {.lex_state = 13}, + [672] = {.lex_state = 16}, + [673] = {.lex_state = 8}, + [674] = {.lex_state = 10}, [675] = {.lex_state = 16}, - [676] = {.lex_state = 9}, - [677] = {.lex_state = 16}, - [678] = {.lex_state = 9}, - [679] = {.lex_state = 9}, - [680] = {.lex_state = 9}, - [681] = {.lex_state = 9}, - [682] = {.lex_state = 9}, + [676] = {.lex_state = 10}, + [677] = {.lex_state = 10}, + [678] = {.lex_state = 13}, + [679] = {.lex_state = 10}, + [680] = {.lex_state = 10}, + [681] = {.lex_state = 8}, + [682] = {.lex_state = 8}, [683] = {.lex_state = 8}, [684] = {.lex_state = 8}, - [685] = {.lex_state = 8}, - [686] = {.lex_state = 8}, - [687] = {.lex_state = 8}, - [688] = {.lex_state = 8}, - [689] = {.lex_state = 69}, - [690] = {.lex_state = 8}, + [685] = {.lex_state = 10}, + [686] = {.lex_state = 10}, + [687] = {.lex_state = 16}, + [688] = {.lex_state = 14}, + [689] = {.lex_state = 10}, + [690] = {.lex_state = 10}, [691] = {.lex_state = 16}, - [692] = {.lex_state = 69}, - [693] = {.lex_state = 8}, + [692] = {.lex_state = 14}, + [693] = {.lex_state = 10}, [694] = {.lex_state = 8}, - [695] = {.lex_state = 8}, - [696] = {.lex_state = 69}, - [697] = {.lex_state = 8}, - [698] = {.lex_state = 8}, - [699] = {.lex_state = 8}, - [700] = {.lex_state = 16}, - [701] = {.lex_state = 8}, - [702] = {.lex_state = 8}, - [703] = {.lex_state = 8}, - [704] = {.lex_state = 8}, - [705] = {.lex_state = 8}, - [706] = {.lex_state = 8}, - [707] = {.lex_state = 8}, - [708] = {.lex_state = 8}, - [709] = {.lex_state = 8}, - [710] = {.lex_state = 69}, - [711] = {.lex_state = 9}, - [712] = {.lex_state = 8}, - [713] = {.lex_state = 8}, - [714] = {.lex_state = 16}, + [695] = {.lex_state = 10}, + [696] = {.lex_state = 8}, + [697] = {.lex_state = 10}, + [698] = {.lex_state = 16}, + [699] = {.lex_state = 10}, + [700] = {.lex_state = 10}, + [701] = {.lex_state = 10}, + [702] = {.lex_state = 10}, + [703] = {.lex_state = 10}, + [704] = {.lex_state = 14}, + [705] = {.lex_state = 10}, + [706] = {.lex_state = 10}, + [707] = {.lex_state = 10}, + [708] = {.lex_state = 16}, + [709] = {.lex_state = 10}, + [710] = {.lex_state = 10}, + [711] = {.lex_state = 14}, + [712] = {.lex_state = 10}, + [713] = {.lex_state = 14}, + [714] = {.lex_state = 10}, [715] = {.lex_state = 8}, [716] = {.lex_state = 8}, [717] = {.lex_state = 8}, - [718] = {.lex_state = 69}, + [718] = {.lex_state = 8}, [719] = {.lex_state = 8}, [720] = {.lex_state = 8}, - [721] = {.lex_state = 9}, - [722] = {.lex_state = 8}, - [723] = {.lex_state = 16}, - [724] = {.lex_state = 8}, + [721] = {.lex_state = 8}, + [722] = {.lex_state = 14}, + [723] = {.lex_state = 8}, + [724] = {.lex_state = 16}, [725] = {.lex_state = 8}, [726] = {.lex_state = 8}, [727] = {.lex_state = 8}, - [728] = {.lex_state = 6}, + [728] = {.lex_state = 8}, [729] = {.lex_state = 8}, [730] = {.lex_state = 8}, [731] = {.lex_state = 8}, @@ -11080,19 +11257,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [744] = {.lex_state = 8}, [745] = {.lex_state = 8}, [746] = {.lex_state = 8}, - [747] = {.lex_state = 8}, + [747] = {.lex_state = 10}, [748] = {.lex_state = 8}, - [749] = {.lex_state = 16}, - [750] = {.lex_state = 8}, + [749] = {.lex_state = 8}, + [750] = {.lex_state = 10}, [751] = {.lex_state = 8}, [752] = {.lex_state = 8}, [753] = {.lex_state = 8}, [754] = {.lex_state = 8}, [755] = {.lex_state = 8}, - [756] = {.lex_state = 8}, + [756] = {.lex_state = 6}, [757] = {.lex_state = 8}, [758] = {.lex_state = 8}, - [759] = {.lex_state = 69}, + [759] = {.lex_state = 8}, [760] = {.lex_state = 8}, [761] = {.lex_state = 8}, [762] = {.lex_state = 8}, @@ -11101,108 +11278,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [765] = {.lex_state = 8}, [766] = {.lex_state = 8}, [767] = {.lex_state = 8}, - [768] = {.lex_state = 9, .external_lex_state = 2}, + [768] = {.lex_state = 8}, [769] = {.lex_state = 8}, - [770] = {.lex_state = 12}, + [770] = {.lex_state = 8}, [771] = {.lex_state = 8}, - [772] = {.lex_state = 8, .external_lex_state = 2}, + [772] = {.lex_state = 8}, [773] = {.lex_state = 8}, - [774] = {.lex_state = 9, .external_lex_state = 2}, - [775] = {.lex_state = 12}, - [776] = {.lex_state = 9, .external_lex_state = 2}, - [777] = {.lex_state = 9, .external_lex_state = 2}, - [778] = {.lex_state = 9, .external_lex_state = 2}, - [779] = {.lex_state = 8, .external_lex_state = 2}, + [774] = {.lex_state = 8}, + [775] = {.lex_state = 8}, + [776] = {.lex_state = 8}, + [777] = {.lex_state = 8}, + [778] = {.lex_state = 8}, + [779] = {.lex_state = 8}, [780] = {.lex_state = 8}, - [781] = {.lex_state = 9, .external_lex_state = 2}, + [781] = {.lex_state = 8}, [782] = {.lex_state = 8}, - [783] = {.lex_state = 8, .external_lex_state = 2}, - [784] = {.lex_state = 8, .external_lex_state = 2}, - [785] = {.lex_state = 6}, + [783] = {.lex_state = 8}, + [784] = {.lex_state = 8}, + [785] = {.lex_state = 8}, [786] = {.lex_state = 8}, - [787] = {.lex_state = 9, .external_lex_state = 2}, - [788] = {.lex_state = 9, .external_lex_state = 2}, - [789] = {.lex_state = 9, .external_lex_state = 2}, + [787] = {.lex_state = 8}, + [788] = {.lex_state = 8}, + [789] = {.lex_state = 8}, [790] = {.lex_state = 8}, - [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 = 9, .external_lex_state = 2}, - [797] = {.lex_state = 9, .external_lex_state = 2}, - [798] = {.lex_state = 8, .external_lex_state = 2}, - [799] = {.lex_state = 9, .external_lex_state = 2}, - [800] = {.lex_state = 9, .external_lex_state = 2}, - [801] = {.lex_state = 9, .external_lex_state = 2}, - [802] = {.lex_state = 9, .external_lex_state = 2}, - [803] = {.lex_state = 9, .external_lex_state = 2}, - [804] = {.lex_state = 8, .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 = 69}, - [809] = {.lex_state = 8, .external_lex_state = 2}, - [810] = {.lex_state = 69}, + [791] = {.lex_state = 8}, + [792] = {.lex_state = 8}, + [793] = {.lex_state = 8}, + [794] = {.lex_state = 8}, + [795] = {.lex_state = 8}, + [796] = {.lex_state = 8}, + [797] = {.lex_state = 8}, + [798] = {.lex_state = 10, .external_lex_state = 2}, + [799] = {.lex_state = 6}, + [800] = {.lex_state = 10, .external_lex_state = 2}, + [801] = {.lex_state = 8}, + [802] = {.lex_state = 10, .external_lex_state = 2}, + [803] = {.lex_state = 8, .external_lex_state = 2}, + [804] = {.lex_state = 8}, + [805] = {.lex_state = 10, .external_lex_state = 2}, + [806] = {.lex_state = 8}, + [807] = {.lex_state = 10, .external_lex_state = 2}, + [808] = {.lex_state = 10, .external_lex_state = 2}, + [809] = {.lex_state = 11}, + [810] = {.lex_state = 8}, [811] = {.lex_state = 8, .external_lex_state = 2}, [812] = {.lex_state = 8, .external_lex_state = 2}, - [813] = {.lex_state = 69}, - [814] = {.lex_state = 8, .external_lex_state = 2}, - [815] = {.lex_state = 8, .external_lex_state = 2}, + [813] = {.lex_state = 8}, + [814] = {.lex_state = 10, .external_lex_state = 2}, + [815] = {.lex_state = 10, .external_lex_state = 2}, [816] = {.lex_state = 8, .external_lex_state = 2}, - [817] = {.lex_state = 8, .external_lex_state = 2}, - [818] = {.lex_state = 69}, - [819] = {.lex_state = 69}, - [820] = {.lex_state = 8, .external_lex_state = 2}, - [821] = {.lex_state = 69}, - [822] = {.lex_state = 8, .external_lex_state = 2}, - [823] = {.lex_state = 8, .external_lex_state = 2}, - [824] = {.lex_state = 8, .external_lex_state = 2}, - [825] = {.lex_state = 8, .external_lex_state = 2}, - [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 = 69}, + [817] = {.lex_state = 10, .external_lex_state = 2}, + [818] = {.lex_state = 8}, + [819] = {.lex_state = 11}, + [820] = {.lex_state = 14}, + [821] = {.lex_state = 10, .external_lex_state = 2}, + [822] = {.lex_state = 10, .external_lex_state = 2}, + [823] = {.lex_state = 14}, + [824] = {.lex_state = 14}, + [825] = {.lex_state = 8}, + [826] = {.lex_state = 10, .external_lex_state = 2}, + [827] = {.lex_state = 14}, + [828] = {.lex_state = 10, .external_lex_state = 2}, + [829] = {.lex_state = 14}, + [830] = {.lex_state = 14}, [831] = {.lex_state = 8, .external_lex_state = 2}, - [832] = {.lex_state = 8, .external_lex_state = 2}, - [833] = {.lex_state = 69}, - [834] = {.lex_state = 9, .external_lex_state = 2}, - [835] = {.lex_state = 8, .external_lex_state = 2}, - [836] = {.lex_state = 69}, - [837] = {.lex_state = 8, .external_lex_state = 2}, - [838] = {.lex_state = 8, .external_lex_state = 2}, - [839] = {.lex_state = 8, .external_lex_state = 2}, - [840] = {.lex_state = 69}, - [841] = {.lex_state = 69}, - [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 = 8, .external_lex_state = 2}, - [846] = {.lex_state = 69}, - [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 = 12}, - [851] = {.lex_state = 8, .external_lex_state = 2}, - [852] = {.lex_state = 8, .external_lex_state = 2}, - [853] = {.lex_state = 9, .external_lex_state = 2}, - [854] = {.lex_state = 8, .external_lex_state = 2}, - [855] = {.lex_state = 8, .external_lex_state = 2}, + [832] = {.lex_state = 14}, + [833] = {.lex_state = 14}, + [834] = {.lex_state = 14}, + [835] = {.lex_state = 10, .external_lex_state = 2}, + [836] = {.lex_state = 10, .external_lex_state = 2}, + [837] = {.lex_state = 10, .external_lex_state = 2}, + [838] = {.lex_state = 10, .external_lex_state = 2}, + [839] = {.lex_state = 10, .external_lex_state = 2}, + [840] = {.lex_state = 14}, + [841] = {.lex_state = 14}, + [842] = {.lex_state = 14}, + [843] = {.lex_state = 10, .external_lex_state = 2}, + [844] = {.lex_state = 10, .external_lex_state = 2}, + [845] = {.lex_state = 10, .external_lex_state = 2}, + [846] = {.lex_state = 14}, + [847] = {.lex_state = 10, .external_lex_state = 2}, + [848] = {.lex_state = 10, .external_lex_state = 2}, + [849] = {.lex_state = 14}, + [850] = {.lex_state = 8, .external_lex_state = 2}, + [851] = {.lex_state = 10, .external_lex_state = 2}, + [852] = {.lex_state = 10, .external_lex_state = 2}, + [853] = {.lex_state = 14}, + [854] = {.lex_state = 10, .external_lex_state = 2}, + [855] = {.lex_state = 10, .external_lex_state = 2}, [856] = {.lex_state = 8, .external_lex_state = 2}, - [857] = {.lex_state = 69}, - [858] = {.lex_state = 69}, - [859] = {.lex_state = 12}, - [860] = {.lex_state = 69}, + [857] = {.lex_state = 8, .external_lex_state = 2}, + [858] = {.lex_state = 8, .external_lex_state = 2}, + [859] = {.lex_state = 8, .external_lex_state = 2}, + [860] = {.lex_state = 8, .external_lex_state = 2}, [861] = {.lex_state = 8, .external_lex_state = 2}, - [862] = {.lex_state = 8}, + [862] = {.lex_state = 11}, [863] = {.lex_state = 8, .external_lex_state = 2}, [864] = {.lex_state = 8, .external_lex_state = 2}, [865] = {.lex_state = 8, .external_lex_state = 2}, [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, .external_lex_state = 2}, + [869] = {.lex_state = 10, .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}, @@ -11214,7 +11391,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [878] = {.lex_state = 8, .external_lex_state = 2}, [879] = {.lex_state = 8, .external_lex_state = 2}, [880] = {.lex_state = 8, .external_lex_state = 2}, - [881] = {.lex_state = 8, .external_lex_state = 2}, + [881] = {.lex_state = 11}, [882] = {.lex_state = 8, .external_lex_state = 2}, [883] = {.lex_state = 8, .external_lex_state = 2}, [884] = {.lex_state = 8, .external_lex_state = 2}, @@ -11230,690 +11407,690 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [894] = {.lex_state = 8, .external_lex_state = 2}, [895] = {.lex_state = 8, .external_lex_state = 2}, [896] = {.lex_state = 8, .external_lex_state = 2}, - [897] = {.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 = 8}, [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}, - [909] = {.lex_state = 12}, - [910] = {.lex_state = 12}, - [911] = {.lex_state = 12}, - [912] = {.lex_state = 12}, - [913] = {.lex_state = 12}, - [914] = {.lex_state = 12}, - [915] = {.lex_state = 12}, - [916] = {.lex_state = 12}, - [917] = {.lex_state = 12}, - [918] = {.lex_state = 12}, - [919] = {.lex_state = 12}, - [920] = {.lex_state = 12}, - [921] = {.lex_state = 12}, - [922] = {.lex_state = 12}, - [923] = {.lex_state = 12}, - [924] = {.lex_state = 12}, - [925] = {.lex_state = 12}, - [926] = {.lex_state = 12}, - [927] = {.lex_state = 12}, - [928] = {.lex_state = 12}, - [929] = {.lex_state = 12}, - [930] = {.lex_state = 12}, - [931] = {.lex_state = 12}, - [932] = {.lex_state = 12}, - [933] = {.lex_state = 12}, - [934] = {.lex_state = 12}, - [935] = {.lex_state = 12}, - [936] = {.lex_state = 12}, - [937] = {.lex_state = 12}, - [938] = {.lex_state = 12}, - [939] = {.lex_state = 12}, - [940] = {.lex_state = 12}, - [941] = {.lex_state = 12}, - [942] = {.lex_state = 12}, - [943] = {.lex_state = 12}, - [944] = {.lex_state = 12}, - [945] = {.lex_state = 12}, - [946] = {.lex_state = 12}, - [947] = {.lex_state = 12}, - [948] = {.lex_state = 12}, - [949] = {.lex_state = 12}, - [950] = {.lex_state = 12}, - [951] = {.lex_state = 12}, - [952] = {.lex_state = 12}, - [953] = {.lex_state = 12}, - [954] = {.lex_state = 12}, - [955] = {.lex_state = 12}, - [956] = {.lex_state = 12}, - [957] = {.lex_state = 12}, - [958] = {.lex_state = 12}, - [959] = {.lex_state = 12}, - [960] = {.lex_state = 12}, - [961] = {.lex_state = 12}, - [962] = {.lex_state = 12}, - [963] = {.lex_state = 12}, - [964] = {.lex_state = 12}, - [965] = {.lex_state = 12}, - [966] = {.lex_state = 12}, - [967] = {.lex_state = 12}, - [968] = {.lex_state = 12}, - [969] = {.lex_state = 12}, - [970] = {.lex_state = 12}, - [971] = {.lex_state = 12}, - [972] = {.lex_state = 12}, - [973] = {.lex_state = 12}, - [974] = {.lex_state = 17}, - [975] = {.lex_state = 12, .external_lex_state = 2}, - [976] = {.lex_state = 12, .external_lex_state = 2}, - [977] = {.lex_state = 16}, - [978] = {.lex_state = 16}, - [979] = {.lex_state = 12}, - [980] = {.lex_state = 12}, - [981] = {.lex_state = 12}, - [982] = {.lex_state = 12}, - [983] = {.lex_state = 12}, - [984] = {.lex_state = 12}, - [985] = {.lex_state = 12}, - [986] = {.lex_state = 12}, - [987] = {.lex_state = 12}, - [988] = {.lex_state = 12}, - [989] = {.lex_state = 12}, - [990] = {.lex_state = 12}, - [991] = {.lex_state = 12}, - [992] = {.lex_state = 12}, - [993] = {.lex_state = 12}, - [994] = {.lex_state = 12}, - [995] = {.lex_state = 12}, - [996] = {.lex_state = 12}, - [997] = {.lex_state = 12}, - [998] = {.lex_state = 12}, - [999] = {.lex_state = 12}, - [1000] = {.lex_state = 12}, - [1001] = {.lex_state = 12}, - [1002] = {.lex_state = 12}, - [1003] = {.lex_state = 12}, - [1004] = {.lex_state = 12}, - [1005] = {.lex_state = 12}, - [1006] = {.lex_state = 12}, - [1007] = {.lex_state = 12}, - [1008] = {.lex_state = 12}, - [1009] = {.lex_state = 12}, - [1010] = {.lex_state = 12}, - [1011] = {.lex_state = 12}, - [1012] = {.lex_state = 16}, - [1013] = {.lex_state = 12}, - [1014] = {.lex_state = 12}, - [1015] = {.lex_state = 12}, - [1016] = {.lex_state = 12}, - [1017] = {.lex_state = 12}, - [1018] = {.lex_state = 12}, - [1019] = {.lex_state = 12}, - [1020] = {.lex_state = 12}, - [1021] = {.lex_state = 12}, - [1022] = {.lex_state = 12}, - [1023] = {.lex_state = 12}, - [1024] = {.lex_state = 12}, - [1025] = {.lex_state = 12}, - [1026] = {.lex_state = 12}, - [1027] = {.lex_state = 12}, - [1028] = {.lex_state = 12}, - [1029] = {.lex_state = 12}, - [1030] = {.lex_state = 12}, - [1031] = {.lex_state = 12}, - [1032] = {.lex_state = 16}, - [1033] = {.lex_state = 12}, - [1034] = {.lex_state = 16}, - [1035] = {.lex_state = 12}, - [1036] = {.lex_state = 12}, - [1037] = {.lex_state = 12}, - [1038] = {.lex_state = 12}, - [1039] = {.lex_state = 12}, - [1040] = {.lex_state = 12}, - [1041] = {.lex_state = 12}, - [1042] = {.lex_state = 12}, - [1043] = {.lex_state = 12}, - [1044] = {.lex_state = 16}, - [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}, - [1050] = {.lex_state = 12, .external_lex_state = 2}, - [1051] = {.lex_state = 12, .external_lex_state = 2}, - [1052] = {.lex_state = 12, .external_lex_state = 2}, - [1053] = {.lex_state = 12, .external_lex_state = 2}, - [1054] = {.lex_state = 12, .external_lex_state = 2}, - [1055] = {.lex_state = 12, .external_lex_state = 2}, - [1056] = {.lex_state = 12, .external_lex_state = 2}, - [1057] = {.lex_state = 12, .external_lex_state = 2}, - [1058] = {.lex_state = 12, .external_lex_state = 2}, - [1059] = {.lex_state = 12, .external_lex_state = 2}, - [1060] = {.lex_state = 12, .external_lex_state = 2}, - [1061] = {.lex_state = 12, .external_lex_state = 2}, - [1062] = {.lex_state = 12, .external_lex_state = 2}, - [1063] = {.lex_state = 12, .external_lex_state = 2}, - [1064] = {.lex_state = 12, .external_lex_state = 2}, - [1065] = {.lex_state = 12, .external_lex_state = 2}, - [1066] = {.lex_state = 12, .external_lex_state = 2}, - [1067] = {.lex_state = 12, .external_lex_state = 2}, - [1068] = {.lex_state = 12, .external_lex_state = 2}, - [1069] = {.lex_state = 12, .external_lex_state = 2}, - [1070] = {.lex_state = 12, .external_lex_state = 2}, - [1071] = {.lex_state = 12, .external_lex_state = 2}, - [1072] = {.lex_state = 12, .external_lex_state = 2}, - [1073] = {.lex_state = 12, .external_lex_state = 2}, - [1074] = {.lex_state = 12, .external_lex_state = 2}, - [1075] = {.lex_state = 12, .external_lex_state = 2}, - [1076] = {.lex_state = 12, .external_lex_state = 2}, - [1077] = {.lex_state = 12, .external_lex_state = 2}, - [1078] = {.lex_state = 12, .external_lex_state = 2}, - [1079] = {.lex_state = 12, .external_lex_state = 2}, - [1080] = {.lex_state = 12, .external_lex_state = 2}, - [1081] = {.lex_state = 12, .external_lex_state = 2}, - [1082] = {.lex_state = 12, .external_lex_state = 2}, - [1083] = {.lex_state = 12, .external_lex_state = 2}, - [1084] = {.lex_state = 12, .external_lex_state = 2}, - [1085] = {.lex_state = 12, .external_lex_state = 2}, - [1086] = {.lex_state = 12, .external_lex_state = 2}, - [1087] = {.lex_state = 12, .external_lex_state = 2}, - [1088] = {.lex_state = 12, .external_lex_state = 2}, - [1089] = {.lex_state = 12, .external_lex_state = 2}, - [1090] = {.lex_state = 12, .external_lex_state = 2}, - [1091] = {.lex_state = 12, .external_lex_state = 2}, - [1092] = {.lex_state = 12, .external_lex_state = 2}, - [1093] = {.lex_state = 12, .external_lex_state = 2}, - [1094] = {.lex_state = 12, .external_lex_state = 2}, - [1095] = {.lex_state = 12, .external_lex_state = 2}, - [1096] = {.lex_state = 12, .external_lex_state = 2}, - [1097] = {.lex_state = 12, .external_lex_state = 2}, - [1098] = {.lex_state = 12, .external_lex_state = 2}, - [1099] = {.lex_state = 12, .external_lex_state = 2}, - [1100] = {.lex_state = 12, .external_lex_state = 2}, - [1101] = {.lex_state = 12, .external_lex_state = 2}, - [1102] = {.lex_state = 12, .external_lex_state = 2}, - [1103] = {.lex_state = 12, .external_lex_state = 2}, - [1104] = {.lex_state = 12, .external_lex_state = 2}, - [1105] = {.lex_state = 12, .external_lex_state = 2}, - [1106] = {.lex_state = 12, .external_lex_state = 2}, - [1107] = {.lex_state = 12, .external_lex_state = 2}, - [1108] = {.lex_state = 12, .external_lex_state = 2}, - [1109] = {.lex_state = 12, .external_lex_state = 2}, - [1110] = {.lex_state = 12, .external_lex_state = 2}, - [1111] = {.lex_state = 12, .external_lex_state = 2}, - [1112] = {.lex_state = 12, .external_lex_state = 2}, - [1113] = {.lex_state = 12, .external_lex_state = 2}, - [1114] = {.lex_state = 12, .external_lex_state = 2}, - [1115] = {.lex_state = 12, .external_lex_state = 2}, - [1116] = {.lex_state = 12, .external_lex_state = 2}, - [1117] = {.lex_state = 12, .external_lex_state = 2}, - [1118] = {.lex_state = 12, .external_lex_state = 2}, - [1119] = {.lex_state = 12, .external_lex_state = 2}, - [1120] = {.lex_state = 12, .external_lex_state = 2}, - [1121] = {.lex_state = 12, .external_lex_state = 2}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, - [1123] = {.lex_state = 12, .external_lex_state = 2}, - [1124] = {.lex_state = 12, .external_lex_state = 2}, - [1125] = {.lex_state = 12, .external_lex_state = 2}, - [1126] = {.lex_state = 12, .external_lex_state = 2}, - [1127] = {.lex_state = 12, .external_lex_state = 2}, - [1128] = {.lex_state = 12, .external_lex_state = 2}, - [1129] = {.lex_state = 12, .external_lex_state = 2}, - [1130] = {.lex_state = 12, .external_lex_state = 2}, - [1131] = {.lex_state = 12, .external_lex_state = 2}, - [1132] = {.lex_state = 12, .external_lex_state = 2}, - [1133] = {.lex_state = 12}, - [1134] = {.lex_state = 12, .external_lex_state = 2}, - [1135] = {.lex_state = 12, .external_lex_state = 2}, - [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, .external_lex_state = 2}, - [1140] = {.lex_state = 12, .external_lex_state = 2}, - [1141] = {.lex_state = 12, .external_lex_state = 2}, - [1142] = {.lex_state = 12, .external_lex_state = 2}, - [1143] = {.lex_state = 12, .external_lex_state = 2}, - [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}, - [1150] = {.lex_state = 12}, - [1151] = {.lex_state = 12}, - [1152] = {.lex_state = 12}, - [1153] = {.lex_state = 12}, - [1154] = {.lex_state = 12}, - [1155] = {.lex_state = 12}, - [1156] = {.lex_state = 12}, - [1157] = {.lex_state = 12}, - [1158] = {.lex_state = 12}, - [1159] = {.lex_state = 12}, - [1160] = {.lex_state = 12}, - [1161] = {.lex_state = 12}, - [1162] = {.lex_state = 12}, - [1163] = {.lex_state = 12}, - [1164] = {.lex_state = 12}, - [1165] = {.lex_state = 12}, - [1166] = {.lex_state = 12}, - [1167] = {.lex_state = 12}, - [1168] = {.lex_state = 12}, - [1169] = {.lex_state = 12}, - [1170] = {.lex_state = 12}, - [1171] = {.lex_state = 12}, - [1172] = {.lex_state = 12}, - [1173] = {.lex_state = 12}, - [1174] = {.lex_state = 12}, - [1175] = {.lex_state = 12}, - [1176] = {.lex_state = 12}, - [1177] = {.lex_state = 12}, - [1178] = {.lex_state = 12}, - [1179] = {.lex_state = 12}, - [1180] = {.lex_state = 12}, - [1181] = {.lex_state = 12}, - [1182] = {.lex_state = 12}, - [1183] = {.lex_state = 12}, - [1184] = {.lex_state = 12}, - [1185] = {.lex_state = 12}, - [1186] = {.lex_state = 12, .external_lex_state = 2}, - [1187] = {.lex_state = 12}, - [1188] = {.lex_state = 12}, - [1189] = {.lex_state = 12}, - [1190] = {.lex_state = 12, .external_lex_state = 2}, - [1191] = {.lex_state = 12}, - [1192] = {.lex_state = 12, .external_lex_state = 2}, - [1193] = {.lex_state = 12, .external_lex_state = 2}, - [1194] = {.lex_state = 12}, - [1195] = {.lex_state = 12, .external_lex_state = 2}, - [1196] = {.lex_state = 12, .external_lex_state = 2}, - [1197] = {.lex_state = 16}, - [1198] = {.lex_state = 12}, - [1199] = {.lex_state = 12}, - [1200] = {.lex_state = 12}, - [1201] = {.lex_state = 12}, - [1202] = {.lex_state = 16}, - [1203] = {.lex_state = 12}, - [1204] = {.lex_state = 12}, - [1205] = {.lex_state = 16}, - [1206] = {.lex_state = 12}, - [1207] = {.lex_state = 12}, - [1208] = {.lex_state = 12}, - [1209] = {.lex_state = 12}, - [1210] = {.lex_state = 12, .external_lex_state = 2}, - [1211] = {.lex_state = 12}, - [1212] = {.lex_state = 12, .external_lex_state = 2}, - [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}, - [1217] = {.lex_state = 16}, - [1218] = {.lex_state = 12}, - [1219] = {.lex_state = 12}, - [1220] = {.lex_state = 12}, - [1221] = {.lex_state = 12}, - [1222] = {.lex_state = 12}, - [1223] = {.lex_state = 12}, - [1224] = {.lex_state = 12}, - [1225] = {.lex_state = 12}, - [1226] = {.lex_state = 12}, - [1227] = {.lex_state = 12}, - [1228] = {.lex_state = 12}, + [909] = {.lex_state = 8, .external_lex_state = 2}, + [910] = {.lex_state = 8, .external_lex_state = 2}, + [911] = {.lex_state = 8, .external_lex_state = 2}, + [912] = {.lex_state = 8, .external_lex_state = 2}, + [913] = {.lex_state = 8, .external_lex_state = 2}, + [914] = {.lex_state = 8, .external_lex_state = 2}, + [915] = {.lex_state = 8, .external_lex_state = 2}, + [916] = {.lex_state = 8, .external_lex_state = 2}, + [917] = {.lex_state = 8, .external_lex_state = 2}, + [918] = {.lex_state = 8, .external_lex_state = 2}, + [919] = {.lex_state = 8, .external_lex_state = 2}, + [920] = {.lex_state = 8, .external_lex_state = 2}, + [921] = {.lex_state = 8, .external_lex_state = 2}, + [922] = {.lex_state = 8, .external_lex_state = 2}, + [923] = {.lex_state = 8, .external_lex_state = 2}, + [924] = {.lex_state = 8, .external_lex_state = 2}, + [925] = {.lex_state = 8, .external_lex_state = 2}, + [926] = {.lex_state = 8, .external_lex_state = 2}, + [927] = {.lex_state = 8, .external_lex_state = 2}, + [928] = {.lex_state = 8, .external_lex_state = 2}, + [929] = {.lex_state = 8, .external_lex_state = 2}, + [930] = {.lex_state = 8, .external_lex_state = 2}, + [931] = {.lex_state = 8, .external_lex_state = 2}, + [932] = {.lex_state = 8, .external_lex_state = 2}, + [933] = {.lex_state = 8, .external_lex_state = 2}, + [934] = {.lex_state = 8, .external_lex_state = 2}, + [935] = {.lex_state = 8, .external_lex_state = 2}, + [936] = {.lex_state = 8, .external_lex_state = 2}, + [937] = {.lex_state = 8, .external_lex_state = 2}, + [938] = {.lex_state = 8, .external_lex_state = 2}, + [939] = {.lex_state = 8, .external_lex_state = 2}, + [940] = {.lex_state = 8, .external_lex_state = 2}, + [941] = {.lex_state = 8}, + [942] = {.lex_state = 8, .external_lex_state = 2}, + [943] = {.lex_state = 8, .external_lex_state = 2}, + [944] = {.lex_state = 8, .external_lex_state = 2}, + [945] = {.lex_state = 8, .external_lex_state = 2}, + [946] = {.lex_state = 8, .external_lex_state = 2}, + [947] = {.lex_state = 8, .external_lex_state = 2}, + [948] = {.lex_state = 11}, + [949] = {.lex_state = 16}, + [950] = {.lex_state = 11}, + [951] = {.lex_state = 11}, + [952] = {.lex_state = 11}, + [953] = {.lex_state = 11}, + [954] = {.lex_state = 11}, + [955] = {.lex_state = 11}, + [956] = {.lex_state = 11}, + [957] = {.lex_state = 11}, + [958] = {.lex_state = 11}, + [959] = {.lex_state = 11}, + [960] = {.lex_state = 11}, + [961] = {.lex_state = 11}, + [962] = {.lex_state = 11}, + [963] = {.lex_state = 11}, + [964] = {.lex_state = 11}, + [965] = {.lex_state = 11}, + [966] = {.lex_state = 11}, + [967] = {.lex_state = 11}, + [968] = {.lex_state = 11}, + [969] = {.lex_state = 11}, + [970] = {.lex_state = 11}, + [971] = {.lex_state = 11}, + [972] = {.lex_state = 11}, + [973] = {.lex_state = 11}, + [974] = {.lex_state = 71}, + [975] = {.lex_state = 11}, + [976] = {.lex_state = 11}, + [977] = {.lex_state = 11}, + [978] = {.lex_state = 11}, + [979] = {.lex_state = 11}, + [980] = {.lex_state = 11}, + [981] = {.lex_state = 11}, + [982] = {.lex_state = 11}, + [983] = {.lex_state = 11}, + [984] = {.lex_state = 11}, + [985] = {.lex_state = 11}, + [986] = {.lex_state = 11}, + [987] = {.lex_state = 11}, + [988] = {.lex_state = 11}, + [989] = {.lex_state = 16}, + [990] = {.lex_state = 11}, + [991] = {.lex_state = 11}, + [992] = {.lex_state = 11}, + [993] = {.lex_state = 11}, + [994] = {.lex_state = 11}, + [995] = {.lex_state = 11}, + [996] = {.lex_state = 11}, + [997] = {.lex_state = 11}, + [998] = {.lex_state = 11}, + [999] = {.lex_state = 11}, + [1000] = {.lex_state = 11}, + [1001] = {.lex_state = 11}, + [1002] = {.lex_state = 11}, + [1003] = {.lex_state = 11}, + [1004] = {.lex_state = 11}, + [1005] = {.lex_state = 11}, + [1006] = {.lex_state = 11}, + [1007] = {.lex_state = 11}, + [1008] = {.lex_state = 11}, + [1009] = {.lex_state = 11}, + [1010] = {.lex_state = 11}, + [1011] = {.lex_state = 11}, + [1012] = {.lex_state = 11}, + [1013] = {.lex_state = 11}, + [1014] = {.lex_state = 11}, + [1015] = {.lex_state = 11}, + [1016] = {.lex_state = 11, .external_lex_state = 2}, + [1017] = {.lex_state = 11, .external_lex_state = 2}, + [1018] = {.lex_state = 11}, + [1019] = {.lex_state = 11}, + [1020] = {.lex_state = 11}, + [1021] = {.lex_state = 11}, + [1022] = {.lex_state = 16}, + [1023] = {.lex_state = 11}, + [1024] = {.lex_state = 11}, + [1025] = {.lex_state = 11}, + [1026] = {.lex_state = 11}, + [1027] = {.lex_state = 11}, + [1028] = {.lex_state = 11}, + [1029] = {.lex_state = 11}, + [1030] = {.lex_state = 11}, + [1031] = {.lex_state = 11}, + [1032] = {.lex_state = 11}, + [1033] = {.lex_state = 11}, + [1034] = {.lex_state = 11}, + [1035] = {.lex_state = 11}, + [1036] = {.lex_state = 16}, + [1037] = {.lex_state = 11}, + [1038] = {.lex_state = 11}, + [1039] = {.lex_state = 11}, + [1040] = {.lex_state = 16}, + [1041] = {.lex_state = 11}, + [1042] = {.lex_state = 11}, + [1043] = {.lex_state = 11}, + [1044] = {.lex_state = 11}, + [1045] = {.lex_state = 11}, + [1046] = {.lex_state = 11}, + [1047] = {.lex_state = 11}, + [1048] = {.lex_state = 11}, + [1049] = {.lex_state = 11}, + [1050] = {.lex_state = 11}, + [1051] = {.lex_state = 16}, + [1052] = {.lex_state = 11}, + [1053] = {.lex_state = 11}, + [1054] = {.lex_state = 11}, + [1055] = {.lex_state = 11}, + [1056] = {.lex_state = 11}, + [1057] = {.lex_state = 11}, + [1058] = {.lex_state = 11}, + [1059] = {.lex_state = 11}, + [1060] = {.lex_state = 11}, + [1061] = {.lex_state = 11}, + [1062] = {.lex_state = 11}, + [1063] = {.lex_state = 11}, + [1064] = {.lex_state = 11}, + [1065] = {.lex_state = 71}, + [1066] = {.lex_state = 11}, + [1067] = {.lex_state = 11}, + [1068] = {.lex_state = 11}, + [1069] = {.lex_state = 11}, + [1070] = {.lex_state = 11}, + [1071] = {.lex_state = 11}, + [1072] = {.lex_state = 11}, + [1073] = {.lex_state = 11}, + [1074] = {.lex_state = 11}, + [1075] = {.lex_state = 11}, + [1076] = {.lex_state = 11}, + [1077] = {.lex_state = 11}, + [1078] = {.lex_state = 11}, + [1079] = {.lex_state = 11}, + [1080] = {.lex_state = 11}, + [1081] = {.lex_state = 11}, + [1082] = {.lex_state = 11}, + [1083] = {.lex_state = 11}, + [1084] = {.lex_state = 11}, + [1085] = {.lex_state = 11}, + [1086] = {.lex_state = 11}, + [1087] = {.lex_state = 11, .external_lex_state = 2}, + [1088] = {.lex_state = 11, .external_lex_state = 2}, + [1089] = {.lex_state = 11, .external_lex_state = 2}, + [1090] = {.lex_state = 11, .external_lex_state = 2}, + [1091] = {.lex_state = 11, .external_lex_state = 2}, + [1092] = {.lex_state = 11, .external_lex_state = 2}, + [1093] = {.lex_state = 11, .external_lex_state = 2}, + [1094] = {.lex_state = 11, .external_lex_state = 2}, + [1095] = {.lex_state = 11, .external_lex_state = 2}, + [1096] = {.lex_state = 11, .external_lex_state = 2}, + [1097] = {.lex_state = 11, .external_lex_state = 2}, + [1098] = {.lex_state = 11, .external_lex_state = 2}, + [1099] = {.lex_state = 11, .external_lex_state = 2}, + [1100] = {.lex_state = 11, .external_lex_state = 2}, + [1101] = {.lex_state = 11, .external_lex_state = 2}, + [1102] = {.lex_state = 11, .external_lex_state = 2}, + [1103] = {.lex_state = 11, .external_lex_state = 2}, + [1104] = {.lex_state = 11, .external_lex_state = 2}, + [1105] = {.lex_state = 11, .external_lex_state = 2}, + [1106] = {.lex_state = 11, .external_lex_state = 2}, + [1107] = {.lex_state = 11, .external_lex_state = 2}, + [1108] = {.lex_state = 11, .external_lex_state = 2}, + [1109] = {.lex_state = 11, .external_lex_state = 2}, + [1110] = {.lex_state = 11, .external_lex_state = 2}, + [1111] = {.lex_state = 11, .external_lex_state = 2}, + [1112] = {.lex_state = 11, .external_lex_state = 2}, + [1113] = {.lex_state = 11, .external_lex_state = 2}, + [1114] = {.lex_state = 11, .external_lex_state = 2}, + [1115] = {.lex_state = 11, .external_lex_state = 2}, + [1116] = {.lex_state = 11, .external_lex_state = 2}, + [1117] = {.lex_state = 11, .external_lex_state = 2}, + [1118] = {.lex_state = 11, .external_lex_state = 2}, + [1119] = {.lex_state = 11, .external_lex_state = 2}, + [1120] = {.lex_state = 11, .external_lex_state = 2}, + [1121] = {.lex_state = 11, .external_lex_state = 2}, + [1122] = {.lex_state = 11, .external_lex_state = 2}, + [1123] = {.lex_state = 11, .external_lex_state = 2}, + [1124] = {.lex_state = 11, .external_lex_state = 2}, + [1125] = {.lex_state = 11, .external_lex_state = 2}, + [1126] = {.lex_state = 11, .external_lex_state = 2}, + [1127] = {.lex_state = 11, .external_lex_state = 2}, + [1128] = {.lex_state = 11, .external_lex_state = 2}, + [1129] = {.lex_state = 11, .external_lex_state = 2}, + [1130] = {.lex_state = 11, .external_lex_state = 2}, + [1131] = {.lex_state = 11, .external_lex_state = 2}, + [1132] = {.lex_state = 71}, + [1133] = {.lex_state = 11, .external_lex_state = 2}, + [1134] = {.lex_state = 11, .external_lex_state = 2}, + [1135] = {.lex_state = 11, .external_lex_state = 2}, + [1136] = {.lex_state = 71}, + [1137] = {.lex_state = 11, .external_lex_state = 2}, + [1138] = {.lex_state = 11, .external_lex_state = 2}, + [1139] = {.lex_state = 11, .external_lex_state = 2}, + [1140] = {.lex_state = 11, .external_lex_state = 2}, + [1141] = {.lex_state = 11, .external_lex_state = 2}, + [1142] = {.lex_state = 11, .external_lex_state = 2}, + [1143] = {.lex_state = 71}, + [1144] = {.lex_state = 11, .external_lex_state = 2}, + [1145] = {.lex_state = 11, .external_lex_state = 2}, + [1146] = {.lex_state = 11, .external_lex_state = 2}, + [1147] = {.lex_state = 11, .external_lex_state = 2}, + [1148] = {.lex_state = 71}, + [1149] = {.lex_state = 11, .external_lex_state = 2}, + [1150] = {.lex_state = 11, .external_lex_state = 2}, + [1151] = {.lex_state = 11, .external_lex_state = 2}, + [1152] = {.lex_state = 11, .external_lex_state = 2}, + [1153] = {.lex_state = 11, .external_lex_state = 2}, + [1154] = {.lex_state = 11, .external_lex_state = 2}, + [1155] = {.lex_state = 11, .external_lex_state = 2}, + [1156] = {.lex_state = 11, .external_lex_state = 2}, + [1157] = {.lex_state = 11, .external_lex_state = 2}, + [1158] = {.lex_state = 11, .external_lex_state = 2}, + [1159] = {.lex_state = 11, .external_lex_state = 2}, + [1160] = {.lex_state = 11, .external_lex_state = 2}, + [1161] = {.lex_state = 11, .external_lex_state = 2}, + [1162] = {.lex_state = 11, .external_lex_state = 2}, + [1163] = {.lex_state = 11, .external_lex_state = 2}, + [1164] = {.lex_state = 11, .external_lex_state = 2}, + [1165] = {.lex_state = 11, .external_lex_state = 2}, + [1166] = {.lex_state = 11, .external_lex_state = 2}, + [1167] = {.lex_state = 11, .external_lex_state = 2}, + [1168] = {.lex_state = 11, .external_lex_state = 2}, + [1169] = {.lex_state = 11, .external_lex_state = 2}, + [1170] = {.lex_state = 11, .external_lex_state = 2}, + [1171] = {.lex_state = 11, .external_lex_state = 2}, + [1172] = {.lex_state = 11, .external_lex_state = 2}, + [1173] = {.lex_state = 11, .external_lex_state = 2}, + [1174] = {.lex_state = 11, .external_lex_state = 2}, + [1175] = {.lex_state = 11, .external_lex_state = 2}, + [1176] = {.lex_state = 11, .external_lex_state = 2}, + [1177] = {.lex_state = 11, .external_lex_state = 2}, + [1178] = {.lex_state = 11, .external_lex_state = 2}, + [1179] = {.lex_state = 11, .external_lex_state = 2}, + [1180] = {.lex_state = 11, .external_lex_state = 2}, + [1181] = {.lex_state = 11, .external_lex_state = 2}, + [1182] = {.lex_state = 11, .external_lex_state = 2}, + [1183] = {.lex_state = 11, .external_lex_state = 2}, + [1184] = {.lex_state = 11, .external_lex_state = 2}, + [1185] = {.lex_state = 11, .external_lex_state = 2}, + [1186] = {.lex_state = 11, .external_lex_state = 2}, + [1187] = {.lex_state = 11, .external_lex_state = 2}, + [1188] = {.lex_state = 11, .external_lex_state = 2}, + [1189] = {.lex_state = 11, .external_lex_state = 2}, + [1190] = {.lex_state = 11}, + [1191] = {.lex_state = 11}, + [1192] = {.lex_state = 11}, + [1193] = {.lex_state = 11}, + [1194] = {.lex_state = 11}, + [1195] = {.lex_state = 11}, + [1196] = {.lex_state = 71}, + [1197] = {.lex_state = 11}, + [1198] = {.lex_state = 11}, + [1199] = {.lex_state = 11}, + [1200] = {.lex_state = 11}, + [1201] = {.lex_state = 71}, + [1202] = {.lex_state = 11}, + [1203] = {.lex_state = 11}, + [1204] = {.lex_state = 11}, + [1205] = {.lex_state = 11}, + [1206] = {.lex_state = 11}, + [1207] = {.lex_state = 11}, + [1208] = {.lex_state = 11}, + [1209] = {.lex_state = 11}, + [1210] = {.lex_state = 11}, + [1211] = {.lex_state = 11}, + [1212] = {.lex_state = 11}, + [1213] = {.lex_state = 11}, + [1214] = {.lex_state = 11}, + [1215] = {.lex_state = 11}, + [1216] = {.lex_state = 11}, + [1217] = {.lex_state = 11}, + [1218] = {.lex_state = 11}, + [1219] = {.lex_state = 11}, + [1220] = {.lex_state = 11}, + [1221] = {.lex_state = 11}, + [1222] = {.lex_state = 11}, + [1223] = {.lex_state = 11}, + [1224] = {.lex_state = 11}, + [1225] = {.lex_state = 11}, + [1226] = {.lex_state = 11}, + [1227] = {.lex_state = 11, .external_lex_state = 2}, + [1228] = {.lex_state = 16}, [1229] = {.lex_state = 16}, [1230] = {.lex_state = 16}, - [1231] = {.lex_state = 16}, - [1232] = {.lex_state = 12}, - [1233] = {.lex_state = 12}, - [1234] = {.lex_state = 16}, - [1235] = {.lex_state = 12}, - [1236] = {.lex_state = 12}, - [1237] = {.lex_state = 12}, - [1238] = {.lex_state = 12, .external_lex_state = 2}, - [1239] = {.lex_state = 12}, - [1240] = {.lex_state = 16}, - [1241] = {.lex_state = 12, .external_lex_state = 2}, - [1242] = {.lex_state = 12}, - [1243] = {.lex_state = 12}, - [1244] = {.lex_state = 12}, - [1245] = {.lex_state = 12}, - [1246] = {.lex_state = 12}, - [1247] = {.lex_state = 12}, - [1248] = {.lex_state = 12}, - [1249] = {.lex_state = 12}, - [1250] = {.lex_state = 12}, - [1251] = {.lex_state = 12}, - [1252] = {.lex_state = 12}, - [1253] = {.lex_state = 12}, - [1254] = {.lex_state = 12}, - [1255] = {.lex_state = 12}, - [1256] = {.lex_state = 12}, - [1257] = {.lex_state = 12}, - [1258] = {.lex_state = 12}, - [1259] = {.lex_state = 12}, - [1260] = {.lex_state = 12}, - [1261] = {.lex_state = 12}, - [1262] = {.lex_state = 12}, - [1263] = {.lex_state = 12}, - [1264] = {.lex_state = 12}, - [1265] = {.lex_state = 12}, - [1266] = {.lex_state = 12}, - [1267] = {.lex_state = 12}, - [1268] = {.lex_state = 12}, - [1269] = {.lex_state = 12}, - [1270] = {.lex_state = 12}, - [1271] = {.lex_state = 12}, - [1272] = {.lex_state = 12}, - [1273] = {.lex_state = 12}, - [1274] = {.lex_state = 12}, - [1275] = {.lex_state = 12}, - [1276] = {.lex_state = 12}, - [1277] = {.lex_state = 12}, - [1278] = {.lex_state = 12}, - [1279] = {.lex_state = 12}, - [1280] = {.lex_state = 12}, - [1281] = {.lex_state = 12}, - [1282] = {.lex_state = 12}, - [1283] = {.lex_state = 12}, - [1284] = {.lex_state = 12}, - [1285] = {.lex_state = 12}, - [1286] = {.lex_state = 12}, - [1287] = {.lex_state = 12}, - [1288] = {.lex_state = 12}, - [1289] = {.lex_state = 12}, - [1290] = {.lex_state = 12}, - [1291] = {.lex_state = 12}, - [1292] = {.lex_state = 12}, - [1293] = {.lex_state = 12}, - [1294] = {.lex_state = 12}, - [1295] = {.lex_state = 12}, - [1296] = {.lex_state = 12}, - [1297] = {.lex_state = 12}, - [1298] = {.lex_state = 12}, - [1299] = {.lex_state = 12}, - [1300] = {.lex_state = 12}, - [1301] = {.lex_state = 12}, - [1302] = {.lex_state = 12}, - [1303] = {.lex_state = 12}, - [1304] = {.lex_state = 12}, - [1305] = {.lex_state = 12}, - [1306] = {.lex_state = 12}, - [1307] = {.lex_state = 12}, - [1308] = {.lex_state = 12}, - [1309] = {.lex_state = 12}, - [1310] = {.lex_state = 12}, - [1311] = {.lex_state = 12}, - [1312] = {.lex_state = 12}, - [1313] = {.lex_state = 12}, - [1314] = {.lex_state = 12}, - [1315] = {.lex_state = 12}, - [1316] = {.lex_state = 12}, + [1231] = {.lex_state = 11, .external_lex_state = 2}, + [1232] = {.lex_state = 11}, + [1233] = {.lex_state = 16}, + [1234] = {.lex_state = 11}, + [1235] = {.lex_state = 16}, + [1236] = {.lex_state = 16}, + [1237] = {.lex_state = 16}, + [1238] = {.lex_state = 11}, + [1239] = {.lex_state = 11, .external_lex_state = 2}, + [1240] = {.lex_state = 11, .external_lex_state = 2}, + [1241] = {.lex_state = 16}, + [1242] = {.lex_state = 16}, + [1243] = {.lex_state = 11, .external_lex_state = 2}, + [1244] = {.lex_state = 11}, + [1245] = {.lex_state = 71}, + [1246] = {.lex_state = 11}, + [1247] = {.lex_state = 11}, + [1248] = {.lex_state = 11, .external_lex_state = 2}, + [1249] = {.lex_state = 11}, + [1250] = {.lex_state = 11, .external_lex_state = 2}, + [1251] = {.lex_state = 11}, + [1252] = {.lex_state = 11, .external_lex_state = 2}, + [1253] = {.lex_state = 11}, + [1254] = {.lex_state = 11, .external_lex_state = 2}, + [1255] = {.lex_state = 11}, + [1256] = {.lex_state = 11}, + [1257] = {.lex_state = 11}, + [1258] = {.lex_state = 11}, + [1259] = {.lex_state = 11}, + [1260] = {.lex_state = 11, .external_lex_state = 2}, + [1261] = {.lex_state = 11}, + [1262] = {.lex_state = 11}, + [1263] = {.lex_state = 11}, + [1264] = {.lex_state = 11, .external_lex_state = 2}, + [1265] = {.lex_state = 11}, + [1266] = {.lex_state = 11, .external_lex_state = 2}, + [1267] = {.lex_state = 11}, + [1268] = {.lex_state = 11}, + [1269] = {.lex_state = 11, .external_lex_state = 2}, + [1270] = {.lex_state = 11}, + [1271] = {.lex_state = 11}, + [1272] = {.lex_state = 71}, + [1273] = {.lex_state = 11}, + [1274] = {.lex_state = 11}, + [1275] = {.lex_state = 11}, + [1276] = {.lex_state = 71}, + [1277] = {.lex_state = 11}, + [1278] = {.lex_state = 11}, + [1279] = {.lex_state = 11}, + [1280] = {.lex_state = 11}, + [1281] = {.lex_state = 71}, + [1282] = {.lex_state = 11}, + [1283] = {.lex_state = 11}, + [1284] = {.lex_state = 11}, + [1285] = {.lex_state = 11}, + [1286] = {.lex_state = 11}, + [1287] = {.lex_state = 11}, + [1288] = {.lex_state = 11}, + [1289] = {.lex_state = 11}, + [1290] = {.lex_state = 11}, + [1291] = {.lex_state = 11}, + [1292] = {.lex_state = 11}, + [1293] = {.lex_state = 11}, + [1294] = {.lex_state = 11}, + [1295] = {.lex_state = 11}, + [1296] = {.lex_state = 11}, + [1297] = {.lex_state = 11}, + [1298] = {.lex_state = 71}, + [1299] = {.lex_state = 11}, + [1300] = {.lex_state = 11}, + [1301] = {.lex_state = 11}, + [1302] = {.lex_state = 11}, + [1303] = {.lex_state = 11}, + [1304] = {.lex_state = 11}, + [1305] = {.lex_state = 11}, + [1306] = {.lex_state = 11}, + [1307] = {.lex_state = 11}, + [1308] = {.lex_state = 11}, + [1309] = {.lex_state = 11}, + [1310] = {.lex_state = 16}, + [1311] = {.lex_state = 11}, + [1312] = {.lex_state = 11}, + [1313] = {.lex_state = 16}, + [1314] = {.lex_state = 11}, + [1315] = {.lex_state = 11}, + [1316] = {.lex_state = 11}, [1317] = {.lex_state = 16}, [1318] = {.lex_state = 16}, - [1319] = {.lex_state = 12}, - [1320] = {.lex_state = 16}, - [1321] = {.lex_state = 16}, - [1322] = {.lex_state = 12}, - [1323] = {.lex_state = 12}, - [1324] = {.lex_state = 16}, - [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}, - [1332] = {.lex_state = 12}, - [1333] = {.lex_state = 12}, - [1334] = {.lex_state = 12}, - [1335] = {.lex_state = 12}, - [1336] = {.lex_state = 12}, - [1337] = {.lex_state = 12}, - [1338] = {.lex_state = 12}, - [1339] = {.lex_state = 12}, - [1340] = {.lex_state = 12}, - [1341] = {.lex_state = 12}, - [1342] = {.lex_state = 12}, - [1343] = {.lex_state = 12}, - [1344] = {.lex_state = 12}, - [1345] = {.lex_state = 12}, - [1346] = {.lex_state = 12}, - [1347] = {.lex_state = 12}, - [1348] = {.lex_state = 12}, - [1349] = {.lex_state = 68}, - [1350] = {.lex_state = 68}, - [1351] = {.lex_state = 68}, - [1352] = {.lex_state = 68}, - [1353] = {.lex_state = 68}, - [1354] = {.lex_state = 68}, - [1355] = {.lex_state = 68}, - [1356] = {.lex_state = 15}, - [1357] = {.lex_state = 69}, - [1358] = {.lex_state = 3, .external_lex_state = 3}, - [1359] = {.lex_state = 3, .external_lex_state = 3}, - [1360] = {.lex_state = 3, .external_lex_state = 3}, - [1361] = {.lex_state = 3, .external_lex_state = 3}, - [1362] = {.lex_state = 16}, - [1363] = {.lex_state = 16}, - [1364] = {.lex_state = 16}, - [1365] = {.lex_state = 16}, - [1366] = {.lex_state = 16}, - [1367] = {.lex_state = 3, .external_lex_state = 4}, - [1368] = {.lex_state = 16}, - [1369] = {.lex_state = 16}, - [1370] = {.lex_state = 16}, - [1371] = {.lex_state = 16}, - [1372] = {.lex_state = 16}, - [1373] = {.lex_state = 16}, - [1374] = {.lex_state = 16}, - [1375] = {.lex_state = 16}, - [1376] = {.lex_state = 16}, - [1377] = {.lex_state = 16}, - [1378] = {.lex_state = 16}, - [1379] = {.lex_state = 3, .external_lex_state = 3}, - [1380] = {.lex_state = 16}, - [1381] = {.lex_state = 68}, - [1382] = {.lex_state = 16}, - [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 = 6}, - [1387] = {.lex_state = 16}, - [1388] = {.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 = 68}, - [1394] = {.lex_state = 9, .external_lex_state = 5}, - [1395] = {.lex_state = 68}, - [1396] = {.lex_state = 9, .external_lex_state = 6}, - [1397] = {.lex_state = 16}, + [1319] = {.lex_state = 11}, + [1320] = {.lex_state = 11}, + [1321] = {.lex_state = 11}, + [1322] = {.lex_state = 11}, + [1323] = {.lex_state = 11}, + [1324] = {.lex_state = 11}, + [1325] = {.lex_state = 71}, + [1326] = {.lex_state = 11}, + [1327] = {.lex_state = 11}, + [1328] = {.lex_state = 11}, + [1329] = {.lex_state = 11}, + [1330] = {.lex_state = 11}, + [1331] = {.lex_state = 11}, + [1332] = {.lex_state = 11}, + [1333] = {.lex_state = 11}, + [1334] = {.lex_state = 11}, + [1335] = {.lex_state = 11}, + [1336] = {.lex_state = 11}, + [1337] = {.lex_state = 11}, + [1338] = {.lex_state = 11}, + [1339] = {.lex_state = 11}, + [1340] = {.lex_state = 11}, + [1341] = {.lex_state = 11}, + [1342] = {.lex_state = 11}, + [1343] = {.lex_state = 11}, + [1344] = {.lex_state = 11}, + [1345] = {.lex_state = 11}, + [1346] = {.lex_state = 11}, + [1347] = {.lex_state = 16}, + [1348] = {.lex_state = 11}, + [1349] = {.lex_state = 11}, + [1350] = {.lex_state = 71}, + [1351] = {.lex_state = 11}, + [1352] = {.lex_state = 11}, + [1353] = {.lex_state = 11}, + [1354] = {.lex_state = 11}, + [1355] = {.lex_state = 11}, + [1356] = {.lex_state = 11}, + [1357] = {.lex_state = 11}, + [1358] = {.lex_state = 11}, + [1359] = {.lex_state = 11}, + [1360] = {.lex_state = 11}, + [1361] = {.lex_state = 11}, + [1362] = {.lex_state = 11}, + [1363] = {.lex_state = 71}, + [1364] = {.lex_state = 11}, + [1365] = {.lex_state = 71}, + [1366] = {.lex_state = 71}, + [1367] = {.lex_state = 71}, + [1368] = {.lex_state = 71}, + [1369] = {.lex_state = 71}, + [1370] = {.lex_state = 71}, + [1371] = {.lex_state = 71}, + [1372] = {.lex_state = 71}, + [1373] = {.lex_state = 71}, + [1374] = {.lex_state = 71}, + [1375] = {.lex_state = 71}, + [1376] = {.lex_state = 71}, + [1377] = {.lex_state = 71}, + [1378] = {.lex_state = 71}, + [1379] = {.lex_state = 71}, + [1380] = {.lex_state = 71}, + [1381] = {.lex_state = 71}, + [1382] = {.lex_state = 71}, + [1383] = {.lex_state = 71}, + [1384] = {.lex_state = 71}, + [1385] = {.lex_state = 71}, + [1386] = {.lex_state = 71}, + [1387] = {.lex_state = 71}, + [1388] = {.lex_state = 71}, + [1389] = {.lex_state = 71}, + [1390] = {.lex_state = 71}, + [1391] = {.lex_state = 71}, + [1392] = {.lex_state = 71}, + [1393] = {.lex_state = 71}, + [1394] = {.lex_state = 71}, + [1395] = {.lex_state = 71}, + [1396] = {.lex_state = 15}, + [1397] = {.lex_state = 14}, [1398] = {.lex_state = 16}, - [1399] = {.lex_state = 9, .external_lex_state = 5}, - [1400] = {.lex_state = 16}, + [1399] = {.lex_state = 16}, + [1400] = {.lex_state = 3, .external_lex_state = 3}, [1401] = {.lex_state = 16}, [1402] = {.lex_state = 16}, [1403] = {.lex_state = 16}, - [1404] = {.lex_state = 16}, + [1404] = {.lex_state = 3, .external_lex_state = 3}, [1405] = {.lex_state = 16}, [1406] = {.lex_state = 16}, [1407] = {.lex_state = 16}, - [1408] = {.lex_state = 9, .external_lex_state = 5}, - [1409] = {.lex_state = 9, .external_lex_state = 6}, - [1410] = {.lex_state = 9, .external_lex_state = 6}, + [1408] = {.lex_state = 16}, + [1409] = {.lex_state = 16}, + [1410] = {.lex_state = 16}, [1411] = {.lex_state = 16}, [1412] = {.lex_state = 16}, - [1413] = {.lex_state = 68}, + [1413] = {.lex_state = 16}, [1414] = {.lex_state = 16}, [1415] = {.lex_state = 16}, - [1416] = {.lex_state = 9, .external_lex_state = 4}, - [1417] = {.lex_state = 68}, - [1418] = {.lex_state = 68}, - [1419] = {.lex_state = 68}, - [1420] = {.lex_state = 68}, - [1421] = {.lex_state = 17}, - [1422] = {.lex_state = 68}, - [1423] = {.lex_state = 68}, - [1424] = {.lex_state = 68}, - [1425] = {.lex_state = 17}, - [1426] = {.lex_state = 69}, - [1427] = {.lex_state = 69}, - [1428] = {.lex_state = 68}, - [1429] = {.lex_state = 68}, - [1430] = {.lex_state = 68}, - [1431] = {.lex_state = 17}, - [1432] = {.lex_state = 68}, - [1433] = {.lex_state = 17}, - [1434] = {.lex_state = 68}, - [1435] = {.lex_state = 68}, - [1436] = {.lex_state = 68}, - [1437] = {.lex_state = 68}, - [1438] = {.lex_state = 68}, - [1439] = {.lex_state = 17}, - [1440] = {.lex_state = 68}, - [1441] = {.lex_state = 68}, - [1442] = {.lex_state = 68}, - [1443] = {.lex_state = 68}, - [1444] = {.lex_state = 68}, - [1445] = {.lex_state = 3, .external_lex_state = 7}, - [1446] = {.lex_state = 68}, - [1447] = {.lex_state = 17}, - [1448] = {.lex_state = 17}, - [1449] = {.lex_state = 17}, - [1450] = {.lex_state = 3, .external_lex_state = 7}, - [1451] = {.lex_state = 68}, - [1452] = {.lex_state = 68}, - [1453] = {.lex_state = 68}, - [1454] = {.lex_state = 17}, - [1455] = {.lex_state = 68}, - [1456] = {.lex_state = 68}, - [1457] = {.lex_state = 68}, - [1458] = {.lex_state = 68}, - [1459] = {.lex_state = 68}, - [1460] = {.lex_state = 68}, + [1416] = {.lex_state = 16}, + [1417] = {.lex_state = 16}, + [1418] = {.lex_state = 3, .external_lex_state = 3}, + [1419] = {.lex_state = 16}, + [1420] = {.lex_state = 16}, + [1421] = {.lex_state = 16}, + [1422] = {.lex_state = 16}, + [1423] = {.lex_state = 16}, + [1424] = {.lex_state = 3, .external_lex_state = 4}, + [1425] = {.lex_state = 16}, + [1426] = {.lex_state = 16}, + [1427] = {.lex_state = 16}, + [1428] = {.lex_state = 16}, + [1429] = {.lex_state = 3, .external_lex_state = 3}, + [1430] = {.lex_state = 16}, + [1431] = {.lex_state = 3, .external_lex_state = 3}, + [1432] = {.lex_state = 16}, + [1433] = {.lex_state = 16}, + [1434] = {.lex_state = 16}, + [1435] = {.lex_state = 16}, + [1436] = {.lex_state = 71}, + [1437] = {.lex_state = 16}, + [1438] = {.lex_state = 16}, + [1439] = {.lex_state = 16}, + [1440] = {.lex_state = 16}, + [1441] = {.lex_state = 16}, + [1442] = {.lex_state = 71}, + [1443] = {.lex_state = 68, .external_lex_state = 5}, + [1444] = {.lex_state = 68, .external_lex_state = 5}, + [1445] = {.lex_state = 68, .external_lex_state = 6}, + [1446] = {.lex_state = 71}, + [1447] = {.lex_state = 68, .external_lex_state = 5}, + [1448] = {.lex_state = 68, .external_lex_state = 6}, + [1449] = {.lex_state = 68, .external_lex_state = 5}, + [1450] = {.lex_state = 68, .external_lex_state = 5}, + [1451] = {.lex_state = 68, .external_lex_state = 6}, + [1452] = {.lex_state = 68, .external_lex_state = 6}, + [1453] = {.lex_state = 68, .external_lex_state = 6}, + [1454] = {.lex_state = 8}, + [1455] = {.lex_state = 17}, + [1456] = {.lex_state = 8}, + [1457] = {.lex_state = 71}, + [1458] = {.lex_state = 71}, + [1459] = {.lex_state = 71}, + [1460] = {.lex_state = 68, .external_lex_state = 4}, [1461] = {.lex_state = 68}, - [1462] = {.lex_state = 68}, - [1463] = {.lex_state = 68}, - [1464] = {.lex_state = 68}, - [1465] = {.lex_state = 68}, - [1466] = {.lex_state = 68}, - [1467] = {.lex_state = 68}, - [1468] = {.lex_state = 9, .external_lex_state = 8}, - [1469] = {.lex_state = 17}, - [1470] = {.lex_state = 68}, - [1471] = {.lex_state = 68}, - [1472] = {.lex_state = 68}, - [1473] = {.lex_state = 68}, + [1462] = {.lex_state = 8}, + [1463] = {.lex_state = 17}, + [1464] = {.lex_state = 71}, + [1465] = {.lex_state = 8}, + [1466] = {.lex_state = 17}, + [1467] = {.lex_state = 14}, + [1468] = {.lex_state = 71}, + [1469] = {.lex_state = 68}, + [1470] = {.lex_state = 71}, + [1471] = {.lex_state = 14}, + [1472] = {.lex_state = 17}, + [1473] = {.lex_state = 17}, [1474] = {.lex_state = 68}, - [1475] = {.lex_state = 68}, + [1475] = {.lex_state = 71}, [1476] = {.lex_state = 68}, - [1477] = {.lex_state = 68}, - [1478] = {.lex_state = 68}, - [1479] = {.lex_state = 9, .external_lex_state = 9}, + [1477] = {.lex_state = 8}, + [1478] = {.lex_state = 8}, + [1479] = {.lex_state = 68}, [1480] = {.lex_state = 68}, [1481] = {.lex_state = 68}, - [1482] = {.lex_state = 68}, - [1483] = {.lex_state = 68}, - [1484] = {.lex_state = 68}, - [1485] = {.lex_state = 68}, - [1486] = {.lex_state = 68}, - [1487] = {.lex_state = 68}, - [1488] = {.lex_state = 68}, + [1482] = {.lex_state = 71}, + [1483] = {.lex_state = 3, .external_lex_state = 7}, + [1484] = {.lex_state = 17}, + [1485] = {.lex_state = 71}, + [1486] = {.lex_state = 71}, + [1487] = {.lex_state = 71}, + [1488] = {.lex_state = 71}, [1489] = {.lex_state = 68}, - [1490] = {.lex_state = 68}, - [1491] = {.lex_state = 68}, - [1492] = {.lex_state = 9, .external_lex_state = 8}, - [1493] = {.lex_state = 68}, + [1490] = {.lex_state = 17}, + [1491] = {.lex_state = 71}, + [1492] = {.lex_state = 71}, + [1493] = {.lex_state = 3, .external_lex_state = 7}, [1494] = {.lex_state = 68}, - [1495] = {.lex_state = 68}, - [1496] = {.lex_state = 68}, - [1497] = {.lex_state = 68}, - [1498] = {.lex_state = 68}, - [1499] = {.lex_state = 68}, + [1495] = {.lex_state = 71}, + [1496] = {.lex_state = 8}, + [1497] = {.lex_state = 71}, + [1498] = {.lex_state = 71}, + [1499] = {.lex_state = 71}, [1500] = {.lex_state = 68}, - [1501] = {.lex_state = 68}, - [1502] = {.lex_state = 68}, - [1503] = {.lex_state = 68}, - [1504] = {.lex_state = 68}, - [1505] = {.lex_state = 68}, - [1506] = {.lex_state = 68}, - [1507] = {.lex_state = 68}, - [1508] = {.lex_state = 9, .external_lex_state = 9}, - [1509] = {.lex_state = 68}, - [1510] = {.lex_state = 68}, - [1511] = {.lex_state = 68}, - [1512] = {.lex_state = 68}, - [1513] = {.lex_state = 68}, + [1501] = {.lex_state = 71}, + [1502] = {.lex_state = 8}, + [1503] = {.lex_state = 71}, + [1504] = {.lex_state = 71}, + [1505] = {.lex_state = 17}, + [1506] = {.lex_state = 71}, + [1507] = {.lex_state = 71}, + [1508] = {.lex_state = 71}, + [1509] = {.lex_state = 71}, + [1510] = {.lex_state = 71}, + [1511] = {.lex_state = 71}, + [1512] = {.lex_state = 71}, + [1513] = {.lex_state = 71}, [1514] = {.lex_state = 68}, [1515] = {.lex_state = 68}, - [1516] = {.lex_state = 68}, - [1517] = {.lex_state = 68}, - [1518] = {.lex_state = 68}, + [1516] = {.lex_state = 71}, + [1517] = {.lex_state = 17}, + [1518] = {.lex_state = 17}, [1519] = {.lex_state = 68}, - [1520] = {.lex_state = 68}, - [1521] = {.lex_state = 68}, - [1522] = {.lex_state = 68}, - [1523] = {.lex_state = 68}, - [1524] = {.lex_state = 68}, + [1520] = {.lex_state = 71}, + [1521] = {.lex_state = 71}, + [1522] = {.lex_state = 71}, + [1523] = {.lex_state = 71}, + [1524] = {.lex_state = 71}, [1525] = {.lex_state = 68}, - [1526] = {.lex_state = 68}, - [1527] = {.lex_state = 68}, - [1528] = {.lex_state = 68}, - [1529] = {.lex_state = 68, .external_lex_state = 2}, - [1530] = {.lex_state = 68, .external_lex_state = 2}, - [1531] = {.lex_state = 68}, + [1526] = {.lex_state = 71}, + [1527] = {.lex_state = 71}, + [1528] = {.lex_state = 71}, + [1529] = {.lex_state = 71}, + [1530] = {.lex_state = 71}, + [1531] = {.lex_state = 71}, [1532] = {.lex_state = 68}, [1533] = {.lex_state = 68}, [1534] = {.lex_state = 68}, - [1535] = {.lex_state = 68}, - [1536] = {.lex_state = 68}, - [1537] = {.lex_state = 68}, + [1535] = {.lex_state = 71}, + [1536] = {.lex_state = 71}, + [1537] = {.lex_state = 71}, [1538] = {.lex_state = 68}, [1539] = {.lex_state = 68}, - [1540] = {.lex_state = 3, .external_lex_state = 3}, - [1541] = {.lex_state = 3, .external_lex_state = 3}, - [1542] = {.lex_state = 3, .external_lex_state = 3}, - [1543] = {.lex_state = 69}, - [1544] = {.lex_state = 3, .external_lex_state = 3}, - [1545] = {.lex_state = 68}, - [1546] = {.lex_state = 3, .external_lex_state = 3}, - [1547] = {.lex_state = 8}, - [1548] = {.lex_state = 68}, - [1549] = {.lex_state = 68, .external_lex_state = 2}, - [1550] = {.lex_state = 8}, - [1551] = {.lex_state = 68}, - [1552] = {.lex_state = 3, .external_lex_state = 3}, - [1553] = {.lex_state = 8}, - [1554] = {.lex_state = 68}, - [1555] = {.lex_state = 3, .external_lex_state = 3}, - [1556] = {.lex_state = 3, .external_lex_state = 3}, + [1540] = {.lex_state = 68}, + [1541] = {.lex_state = 68}, + [1542] = {.lex_state = 68}, + [1543] = {.lex_state = 68}, + [1544] = {.lex_state = 8}, + [1545] = {.lex_state = 8}, + [1546] = {.lex_state = 68}, + [1547] = {.lex_state = 71}, + [1548] = {.lex_state = 8}, + [1549] = {.lex_state = 68, .external_lex_state = 8}, + [1550] = {.lex_state = 68, .external_lex_state = 8}, + [1551] = {.lex_state = 68, .external_lex_state = 9}, + [1552] = {.lex_state = 68}, + [1553] = {.lex_state = 68, .external_lex_state = 9}, + [1554] = {.lex_state = 8}, + [1555] = {.lex_state = 68}, + [1556] = {.lex_state = 68}, [1557] = {.lex_state = 68}, [1558] = {.lex_state = 68}, [1559] = {.lex_state = 68}, [1560] = {.lex_state = 68}, - [1561] = {.lex_state = 68}, - [1562] = {.lex_state = 68, .external_lex_state = 2}, - [1563] = {.lex_state = 17}, - [1564] = {.lex_state = 68}, + [1561] = {.lex_state = 71}, + [1562] = {.lex_state = 68}, + [1563] = {.lex_state = 68}, + [1564] = {.lex_state = 17}, [1565] = {.lex_state = 68}, - [1566] = {.lex_state = 68}, - [1567] = {.lex_state = 3, .external_lex_state = 3}, - [1568] = {.lex_state = 3, .external_lex_state = 3}, - [1569] = {.lex_state = 68}, - [1570] = {.lex_state = 68}, - [1571] = {.lex_state = 68}, + [1566] = {.lex_state = 8}, + [1567] = {.lex_state = 8}, + [1568] = {.lex_state = 71}, + [1569] = {.lex_state = 8, .external_lex_state = 2}, + [1570] = {.lex_state = 71}, + [1571] = {.lex_state = 71}, [1572] = {.lex_state = 68}, - [1573] = {.lex_state = 68}, + [1573] = {.lex_state = 68, .external_lex_state = 2}, [1574] = {.lex_state = 68}, [1575] = {.lex_state = 68}, [1576] = {.lex_state = 68}, - [1577] = {.lex_state = 68}, + [1577] = {.lex_state = 71}, [1578] = {.lex_state = 68}, [1579] = {.lex_state = 68}, - [1580] = {.lex_state = 68}, + [1580] = {.lex_state = 71}, [1581] = {.lex_state = 68}, [1582] = {.lex_state = 68}, [1583] = {.lex_state = 68}, @@ -11921,140 +12098,140 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1585] = {.lex_state = 68}, [1586] = {.lex_state = 68}, [1587] = {.lex_state = 68}, - [1588] = {.lex_state = 68}, - [1589] = {.lex_state = 68}, - [1590] = {.lex_state = 68}, - [1591] = {.lex_state = 68}, + [1588] = {.lex_state = 3, .external_lex_state = 3}, + [1589] = {.lex_state = 3, .external_lex_state = 3}, + [1590] = {.lex_state = 3, .external_lex_state = 3}, + [1591] = {.lex_state = 3, .external_lex_state = 3}, [1592] = {.lex_state = 68}, [1593] = {.lex_state = 68}, - [1594] = {.lex_state = 68}, - [1595] = {.lex_state = 68, .external_lex_state = 2}, - [1596] = {.lex_state = 9, .external_lex_state = 5}, - [1597] = {.lex_state = 9, .external_lex_state = 6}, - [1598] = {.lex_state = 68}, - [1599] = {.lex_state = 9, .external_lex_state = 5}, - [1600] = {.lex_state = 9, .external_lex_state = 6}, - [1601] = {.lex_state = 9, .external_lex_state = 6}, - [1602] = {.lex_state = 68}, + [1594] = {.lex_state = 3, .external_lex_state = 3}, + [1595] = {.lex_state = 8}, + [1596] = {.lex_state = 68}, + [1597] = {.lex_state = 68}, + [1598] = {.lex_state = 3, .external_lex_state = 3}, + [1599] = {.lex_state = 68}, + [1600] = {.lex_state = 68}, + [1601] = {.lex_state = 68}, + [1602] = {.lex_state = 71}, [1603] = {.lex_state = 68}, - [1604] = {.lex_state = 68}, + [1604] = {.lex_state = 8, .external_lex_state = 2}, [1605] = {.lex_state = 68}, [1606] = {.lex_state = 68}, [1607] = {.lex_state = 68}, - [1608] = {.lex_state = 9, .external_lex_state = 6}, - [1609] = {.lex_state = 9, .external_lex_state = 6}, - [1610] = {.lex_state = 9, .external_lex_state = 6}, - [1611] = {.lex_state = 68}, - [1612] = {.lex_state = 68}, + [1608] = {.lex_state = 68}, + [1609] = {.lex_state = 68}, + [1610] = {.lex_state = 8}, + [1611] = {.lex_state = 71}, + [1612] = {.lex_state = 3, .external_lex_state = 3}, [1613] = {.lex_state = 68}, - [1614] = {.lex_state = 9, .external_lex_state = 5}, + [1614] = {.lex_state = 8}, [1615] = {.lex_state = 68}, - [1616] = {.lex_state = 9, .external_lex_state = 5}, - [1617] = {.lex_state = 70, .external_lex_state = 10}, - [1618] = {.lex_state = 9, .external_lex_state = 5}, - [1619] = {.lex_state = 68}, + [1616] = {.lex_state = 68}, + [1617] = {.lex_state = 68}, + [1618] = {.lex_state = 71}, + [1619] = {.lex_state = 3, .external_lex_state = 3}, [1620] = {.lex_state = 68}, [1621] = {.lex_state = 68}, - [1622] = {.lex_state = 68, .external_lex_state = 2}, - [1623] = {.lex_state = 9, .external_lex_state = 6}, - [1624] = {.lex_state = 68}, + [1622] = {.lex_state = 68}, + [1623] = {.lex_state = 8, .external_lex_state = 2}, + [1624] = {.lex_state = 3, .external_lex_state = 3}, [1625] = {.lex_state = 68}, - [1626] = {.lex_state = 9, .external_lex_state = 6}, + [1626] = {.lex_state = 3, .external_lex_state = 3}, [1627] = {.lex_state = 68}, - [1628] = {.lex_state = 9, .external_lex_state = 5}, - [1629] = {.lex_state = 9, .external_lex_state = 5}, + [1628] = {.lex_state = 68}, + [1629] = {.lex_state = 68}, [1630] = {.lex_state = 68}, - [1631] = {.lex_state = 68}, + [1631] = {.lex_state = 71}, [1632] = {.lex_state = 68}, [1633] = {.lex_state = 68}, - [1634] = {.lex_state = 68}, - [1635] = {.lex_state = 68}, - [1636] = {.lex_state = 68}, - [1637] = {.lex_state = 68}, - [1638] = {.lex_state = 68}, + [1634] = {.lex_state = 71}, + [1635] = {.lex_state = 71}, + [1636] = {.lex_state = 71}, + [1637] = {.lex_state = 68, .external_lex_state = 6}, + [1638] = {.lex_state = 68, .external_lex_state = 5}, [1639] = {.lex_state = 68}, - [1640] = {.lex_state = 68}, - [1641] = {.lex_state = 68}, - [1642] = {.lex_state = 68}, - [1643] = {.lex_state = 68}, - [1644] = {.lex_state = 9, .external_lex_state = 5}, - [1645] = {.lex_state = 68}, - [1646] = {.lex_state = 9, .external_lex_state = 5}, - [1647] = {.lex_state = 9, .external_lex_state = 5}, - [1648] = {.lex_state = 68, .external_lex_state = 2}, - [1649] = {.lex_state = 9, .external_lex_state = 6}, - [1650] = {.lex_state = 9, .external_lex_state = 6}, - [1651] = {.lex_state = 68}, - [1652] = {.lex_state = 68}, - [1653] = {.lex_state = 68}, + [1640] = {.lex_state = 68, .external_lex_state = 6}, + [1641] = {.lex_state = 68, .external_lex_state = 5}, + [1642] = {.lex_state = 71}, + [1643] = {.lex_state = 71}, + [1644] = {.lex_state = 71}, + [1645] = {.lex_state = 68, .external_lex_state = 5}, + [1646] = {.lex_state = 68, .external_lex_state = 2}, + [1647] = {.lex_state = 68, .external_lex_state = 5}, + [1648] = {.lex_state = 71}, + [1649] = {.lex_state = 71}, + [1650] = {.lex_state = 68}, + [1651] = {.lex_state = 8, .external_lex_state = 2}, + [1652] = {.lex_state = 71}, + [1653] = {.lex_state = 70, .external_lex_state = 10}, [1654] = {.lex_state = 68}, - [1655] = {.lex_state = 68}, - [1656] = {.lex_state = 68, .external_lex_state = 2}, - [1657] = {.lex_state = 70}, - [1658] = {.lex_state = 68}, + [1655] = {.lex_state = 68, .external_lex_state = 6}, + [1656] = {.lex_state = 68}, + [1657] = {.lex_state = 71}, + [1658] = {.lex_state = 71}, [1659] = {.lex_state = 68}, - [1660] = {.lex_state = 68, .external_lex_state = 2}, - [1661] = {.lex_state = 68, .external_lex_state = 2}, - [1662] = {.lex_state = 70, .external_lex_state = 10}, - [1663] = {.lex_state = 68, .external_lex_state = 2}, - [1664] = {.lex_state = 68}, - [1665] = {.lex_state = 68, .external_lex_state = 2}, - [1666] = {.lex_state = 68, .external_lex_state = 2}, - [1667] = {.lex_state = 68}, - [1668] = {.lex_state = 68, .external_lex_state = 2}, - [1669] = {.lex_state = 68, .external_lex_state = 2}, - [1670] = {.lex_state = 68, .external_lex_state = 2}, - [1671] = {.lex_state = 68, .external_lex_state = 2}, - [1672] = {.lex_state = 68}, - [1673] = {.lex_state = 69}, + [1660] = {.lex_state = 71}, + [1661] = {.lex_state = 68}, + [1662] = {.lex_state = 71}, + [1663] = {.lex_state = 71}, + [1664] = {.lex_state = 68, .external_lex_state = 5}, + [1665] = {.lex_state = 68}, + [1666] = {.lex_state = 68}, + [1667] = {.lex_state = 68, .external_lex_state = 6}, + [1668] = {.lex_state = 68}, + [1669] = {.lex_state = 68, .external_lex_state = 6}, + [1670] = {.lex_state = 8}, + [1671] = {.lex_state = 68}, + [1672] = {.lex_state = 68, .external_lex_state = 5}, + [1673] = {.lex_state = 68}, [1674] = {.lex_state = 68}, [1675] = {.lex_state = 68}, - [1676] = {.lex_state = 68, .external_lex_state = 2}, - [1677] = {.lex_state = 69}, - [1678] = {.lex_state = 68, .external_lex_state = 2}, - [1679] = {.lex_state = 68, .external_lex_state = 2}, - [1680] = {.lex_state = 68}, - [1681] = {.lex_state = 68, .external_lex_state = 2}, - [1682] = {.lex_state = 68, .external_lex_state = 2}, - [1683] = {.lex_state = 68}, - [1684] = {.lex_state = 68}, + [1676] = {.lex_state = 71}, + [1677] = {.lex_state = 68}, + [1678] = {.lex_state = 71}, + [1679] = {.lex_state = 68}, + [1680] = {.lex_state = 8}, + [1681] = {.lex_state = 68, .external_lex_state = 6}, + [1682] = {.lex_state = 68}, + [1683] = {.lex_state = 68, .external_lex_state = 6}, + [1684] = {.lex_state = 68, .external_lex_state = 6}, [1685] = {.lex_state = 68}, [1686] = {.lex_state = 68}, - [1687] = {.lex_state = 70, .external_lex_state = 10}, + [1687] = {.lex_state = 68}, [1688] = {.lex_state = 68}, - [1689] = {.lex_state = 68, .external_lex_state = 2}, - [1690] = {.lex_state = 69}, - [1691] = {.lex_state = 68, .external_lex_state = 2}, + [1689] = {.lex_state = 68, .external_lex_state = 5}, + [1690] = {.lex_state = 68}, + [1691] = {.lex_state = 68}, [1692] = {.lex_state = 68}, [1693] = {.lex_state = 68}, - [1694] = {.lex_state = 68, .external_lex_state = 2}, - [1695] = {.lex_state = 68, .external_lex_state = 2}, - [1696] = {.lex_state = 69}, - [1697] = {.lex_state = 69}, - [1698] = {.lex_state = 68, .external_lex_state = 2}, + [1694] = {.lex_state = 68}, + [1695] = {.lex_state = 68}, + [1696] = {.lex_state = 68}, + [1697] = {.lex_state = 68}, + [1698] = {.lex_state = 68}, [1699] = {.lex_state = 68}, - [1700] = {.lex_state = 69}, - [1701] = {.lex_state = 69}, - [1702] = {.lex_state = 68}, - [1703] = {.lex_state = 69}, + [1700] = {.lex_state = 68}, + [1701] = {.lex_state = 68, .external_lex_state = 2}, + [1702] = {.lex_state = 71}, + [1703] = {.lex_state = 68}, [1704] = {.lex_state = 68}, - [1705] = {.lex_state = 68, .external_lex_state = 2}, - [1706] = {.lex_state = 68, .external_lex_state = 2}, + [1705] = {.lex_state = 68, .external_lex_state = 5}, + [1706] = {.lex_state = 68}, [1707] = {.lex_state = 68}, [1708] = {.lex_state = 68}, [1709] = {.lex_state = 68}, [1710] = {.lex_state = 68}, - [1711] = {.lex_state = 68, .external_lex_state = 2}, + [1711] = {.lex_state = 68, .external_lex_state = 5}, [1712] = {.lex_state = 68}, [1713] = {.lex_state = 68}, - [1714] = {.lex_state = 68}, + [1714] = {.lex_state = 68, .external_lex_state = 6}, [1715] = {.lex_state = 68}, - [1716] = {.lex_state = 68, .external_lex_state = 2}, - [1717] = {.lex_state = 70}, - [1718] = {.lex_state = 68, .external_lex_state = 2}, - [1719] = {.lex_state = 68, .external_lex_state = 2}, - [1720] = {.lex_state = 68, .external_lex_state = 2}, - [1721] = {.lex_state = 68}, + [1716] = {.lex_state = 68}, + [1717] = {.lex_state = 68, .external_lex_state = 5}, + [1718] = {.lex_state = 68}, + [1719] = {.lex_state = 68}, + [1720] = {.lex_state = 68}, + [1721] = {.lex_state = 68, .external_lex_state = 6}, [1722] = {.lex_state = 68}, [1723] = {.lex_state = 68}, [1724] = {.lex_state = 68}, @@ -12064,252 +12241,252 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1728] = {.lex_state = 68}, [1729] = {.lex_state = 68, .external_lex_state = 2}, [1730] = {.lex_state = 68, .external_lex_state = 2}, - [1731] = {.lex_state = 68}, + [1731] = {.lex_state = 8}, [1732] = {.lex_state = 68}, [1733] = {.lex_state = 68}, - [1734] = {.lex_state = 68}, - [1735] = {.lex_state = 68}, - [1736] = {.lex_state = 68, .external_lex_state = 2}, - [1737] = {.lex_state = 68, .external_lex_state = 2}, - [1738] = {.lex_state = 68}, - [1739] = {.lex_state = 68}, + [1734] = {.lex_state = 71}, + [1735] = {.lex_state = 68, .external_lex_state = 2}, + [1736] = {.lex_state = 68}, + [1737] = {.lex_state = 8}, + [1738] = {.lex_state = 68, .external_lex_state = 2}, + [1739] = {.lex_state = 68, .external_lex_state = 2}, [1740] = {.lex_state = 68, .external_lex_state = 2}, - [1741] = {.lex_state = 68, .external_lex_state = 2}, - [1742] = {.lex_state = 68, .external_lex_state = 2}, - [1743] = {.lex_state = 68}, + [1741] = {.lex_state = 8}, + [1742] = {.lex_state = 8}, + [1743] = {.lex_state = 68, .external_lex_state = 2}, [1744] = {.lex_state = 68}, - [1745] = {.lex_state = 68, .external_lex_state = 2}, + [1745] = {.lex_state = 68}, [1746] = {.lex_state = 68}, - [1747] = {.lex_state = 68}, + [1747] = {.lex_state = 71}, [1748] = {.lex_state = 68, .external_lex_state = 2}, - [1749] = {.lex_state = 68}, - [1750] = {.lex_state = 68}, + [1749] = {.lex_state = 68, .external_lex_state = 2}, + [1750] = {.lex_state = 68, .external_lex_state = 2}, [1751] = {.lex_state = 68}, - [1752] = {.lex_state = 68, .external_lex_state = 2}, - [1753] = {.lex_state = 68}, + [1752] = {.lex_state = 68}, + [1753] = {.lex_state = 68, .external_lex_state = 2}, [1754] = {.lex_state = 68, .external_lex_state = 2}, - [1755] = {.lex_state = 68}, - [1756] = {.lex_state = 68}, + [1755] = {.lex_state = 8, .external_lex_state = 2}, + [1756] = {.lex_state = 68, .external_lex_state = 2}, [1757] = {.lex_state = 68, .external_lex_state = 2}, - [1758] = {.lex_state = 68}, + [1758] = {.lex_state = 68, .external_lex_state = 2}, [1759] = {.lex_state = 68}, - [1760] = {.lex_state = 68, .external_lex_state = 2}, - [1761] = {.lex_state = 68}, - [1762] = {.lex_state = 68, .external_lex_state = 2}, - [1763] = {.lex_state = 68, .external_lex_state = 2}, + [1760] = {.lex_state = 70}, + [1761] = {.lex_state = 68, .external_lex_state = 2}, + [1762] = {.lex_state = 71}, + [1763] = {.lex_state = 68}, [1764] = {.lex_state = 68}, - [1765] = {.lex_state = 68}, + [1765] = {.lex_state = 8, .external_lex_state = 2}, [1766] = {.lex_state = 68}, [1767] = {.lex_state = 68}, - [1768] = {.lex_state = 68}, - [1769] = {.lex_state = 68, .external_lex_state = 2}, - [1770] = {.lex_state = 68, .external_lex_state = 2}, - [1771] = {.lex_state = 68}, + [1768] = {.lex_state = 71}, + [1769] = {.lex_state = 71}, + [1770] = {.lex_state = 71}, + [1771] = {.lex_state = 68, .external_lex_state = 2}, [1772] = {.lex_state = 68}, - [1773] = {.lex_state = 18}, - [1774] = {.lex_state = 69}, + [1773] = {.lex_state = 8}, + [1774] = {.lex_state = 68}, [1775] = {.lex_state = 68, .external_lex_state = 2}, [1776] = {.lex_state = 68, .external_lex_state = 2}, [1777] = {.lex_state = 68}, - [1778] = {.lex_state = 68, .external_lex_state = 2}, - [1779] = {.lex_state = 68, .external_lex_state = 2}, - [1780] = {.lex_state = 68, .external_lex_state = 2}, - [1781] = {.lex_state = 68}, - [1782] = {.lex_state = 68}, + [1778] = {.lex_state = 68}, + [1779] = {.lex_state = 68}, + [1780] = {.lex_state = 8, .external_lex_state = 2}, + [1781] = {.lex_state = 68, .external_lex_state = 2}, + [1782] = {.lex_state = 71}, [1783] = {.lex_state = 68, .external_lex_state = 2}, - [1784] = {.lex_state = 68}, - [1785] = {.lex_state = 70}, - [1786] = {.lex_state = 68}, - [1787] = {.lex_state = 68, .external_lex_state = 2}, - [1788] = {.lex_state = 68, .external_lex_state = 2}, + [1784] = {.lex_state = 68, .external_lex_state = 2}, + [1785] = {.lex_state = 68, .external_lex_state = 2}, + [1786] = {.lex_state = 68, .external_lex_state = 2}, + [1787] = {.lex_state = 71}, + [1788] = {.lex_state = 70, .external_lex_state = 10}, [1789] = {.lex_state = 68}, [1790] = {.lex_state = 68}, [1791] = {.lex_state = 68}, [1792] = {.lex_state = 68}, - [1793] = {.lex_state = 68, .external_lex_state = 2}, - [1794] = {.lex_state = 68}, + [1793] = {.lex_state = 71}, + [1794] = {.lex_state = 68, .external_lex_state = 2}, [1795] = {.lex_state = 68, .external_lex_state = 2}, - [1796] = {.lex_state = 68, .external_lex_state = 2}, - [1797] = {.lex_state = 68}, - [1798] = {.lex_state = 68}, - [1799] = {.lex_state = 68}, + [1796] = {.lex_state = 8, .external_lex_state = 2}, + [1797] = {.lex_state = 71}, + [1798] = {.lex_state = 68, .external_lex_state = 2}, + [1799] = {.lex_state = 68, .external_lex_state = 2}, [1800] = {.lex_state = 68}, - [1801] = {.lex_state = 68}, + [1801] = {.lex_state = 8, .external_lex_state = 2}, [1802] = {.lex_state = 68, .external_lex_state = 2}, [1803] = {.lex_state = 68, .external_lex_state = 2}, [1804] = {.lex_state = 68}, - [1805] = {.lex_state = 68}, + [1805] = {.lex_state = 70}, [1806] = {.lex_state = 68, .external_lex_state = 2}, - [1807] = {.lex_state = 68}, - [1808] = {.lex_state = 68}, - [1809] = {.lex_state = 68}, - [1810] = {.lex_state = 68, .external_lex_state = 2}, - [1811] = {.lex_state = 68}, - [1812] = {.lex_state = 68}, + [1807] = {.lex_state = 68, .external_lex_state = 2}, + [1808] = {.lex_state = 68, .external_lex_state = 2}, + [1809] = {.lex_state = 68, .external_lex_state = 2}, + [1810] = {.lex_state = 68}, + [1811] = {.lex_state = 70, .external_lex_state = 10}, + [1812] = {.lex_state = 68, .external_lex_state = 2}, [1813] = {.lex_state = 68}, - [1814] = {.lex_state = 68}, + [1814] = {.lex_state = 71}, [1815] = {.lex_state = 68, .external_lex_state = 2}, [1816] = {.lex_state = 68}, [1817] = {.lex_state = 68}, - [1818] = {.lex_state = 68}, + [1818] = {.lex_state = 68, .external_lex_state = 2}, [1819] = {.lex_state = 68}, [1820] = {.lex_state = 68}, - [1821] = {.lex_state = 68, .external_lex_state = 2}, - [1822] = {.lex_state = 68, .external_lex_state = 2}, - [1823] = {.lex_state = 69}, + [1821] = {.lex_state = 68}, + [1822] = {.lex_state = 68}, + [1823] = {.lex_state = 68}, [1824] = {.lex_state = 68}, [1825] = {.lex_state = 68, .external_lex_state = 2}, [1826] = {.lex_state = 68, .external_lex_state = 2}, - [1827] = {.lex_state = 68}, - [1828] = {.lex_state = 68}, - [1829] = {.lex_state = 68}, - [1830] = {.lex_state = 69}, + [1827] = {.lex_state = 68, .external_lex_state = 2}, + [1828] = {.lex_state = 68, .external_lex_state = 2}, + [1829] = {.lex_state = 68, .external_lex_state = 2}, + [1830] = {.lex_state = 68}, [1831] = {.lex_state = 68, .external_lex_state = 2}, - [1832] = {.lex_state = 68, .external_lex_state = 2}, - [1833] = {.lex_state = 68, .external_lex_state = 2}, - [1834] = {.lex_state = 68}, - [1835] = {.lex_state = 68, .external_lex_state = 2}, + [1832] = {.lex_state = 68}, + [1833] = {.lex_state = 68}, + [1834] = {.lex_state = 70, .external_lex_state = 10}, + [1835] = {.lex_state = 68}, [1836] = {.lex_state = 68}, [1837] = {.lex_state = 68}, - [1838] = {.lex_state = 68}, - [1839] = {.lex_state = 68, .external_lex_state = 2}, - [1840] = {.lex_state = 18}, + [1838] = {.lex_state = 18}, + [1839] = {.lex_state = 68}, + [1840] = {.lex_state = 68}, [1841] = {.lex_state = 68, .external_lex_state = 2}, [1842] = {.lex_state = 68}, [1843] = {.lex_state = 68}, [1844] = {.lex_state = 68}, - [1845] = {.lex_state = 68}, + [1845] = {.lex_state = 68, .external_lex_state = 2}, [1846] = {.lex_state = 68, .external_lex_state = 2}, - [1847] = {.lex_state = 68}, + [1847] = {.lex_state = 68, .external_lex_state = 2}, [1848] = {.lex_state = 68, .external_lex_state = 2}, - [1849] = {.lex_state = 68}, + [1849] = {.lex_state = 3, .external_lex_state = 11}, [1850] = {.lex_state = 68}, [1851] = {.lex_state = 68}, - [1852] = {.lex_state = 68}, - [1853] = {.lex_state = 18}, - [1854] = {.lex_state = 68, .external_lex_state = 2}, + [1852] = {.lex_state = 68, .external_lex_state = 2}, + [1853] = {.lex_state = 68}, + [1854] = {.lex_state = 68}, [1855] = {.lex_state = 68, .external_lex_state = 2}, - [1856] = {.lex_state = 68, .external_lex_state = 2}, - [1857] = {.lex_state = 68, .external_lex_state = 2}, + [1856] = {.lex_state = 68}, + [1857] = {.lex_state = 68}, [1858] = {.lex_state = 68, .external_lex_state = 2}, - [1859] = {.lex_state = 68}, - [1860] = {.lex_state = 68, .external_lex_state = 2}, - [1861] = {.lex_state = 68}, + [1859] = {.lex_state = 68, .external_lex_state = 2}, + [1860] = {.lex_state = 68}, + [1861] = {.lex_state = 68, .external_lex_state = 2}, [1862] = {.lex_state = 68, .external_lex_state = 2}, [1863] = {.lex_state = 68, .external_lex_state = 2}, [1864] = {.lex_state = 68, .external_lex_state = 2}, [1865] = {.lex_state = 68}, [1866] = {.lex_state = 68}, - [1867] = {.lex_state = 68}, + [1867] = {.lex_state = 68, .external_lex_state = 2}, [1868] = {.lex_state = 68}, [1869] = {.lex_state = 68}, - [1870] = {.lex_state = 68, .external_lex_state = 2}, - [1871] = {.lex_state = 3, .external_lex_state = 11}, + [1870] = {.lex_state = 71}, + [1871] = {.lex_state = 68}, [1872] = {.lex_state = 68}, [1873] = {.lex_state = 68}, [1874] = {.lex_state = 68}, - [1875] = {.lex_state = 68, .external_lex_state = 2}, - [1876] = {.lex_state = 68, .external_lex_state = 2}, + [1875] = {.lex_state = 68}, + [1876] = {.lex_state = 68}, [1877] = {.lex_state = 68}, [1878] = {.lex_state = 68}, - [1879] = {.lex_state = 68}, - [1880] = {.lex_state = 68, .external_lex_state = 2}, + [1879] = {.lex_state = 68, .external_lex_state = 2}, + [1880] = {.lex_state = 68}, [1881] = {.lex_state = 68, .external_lex_state = 2}, [1882] = {.lex_state = 68}, - [1883] = {.lex_state = 68}, + [1883] = {.lex_state = 3, .external_lex_state = 11}, [1884] = {.lex_state = 68}, [1885] = {.lex_state = 68}, - [1886] = {.lex_state = 68, .external_lex_state = 2}, + [1886] = {.lex_state = 68}, [1887] = {.lex_state = 68, .external_lex_state = 2}, - [1888] = {.lex_state = 3, .external_lex_state = 11}, + [1888] = {.lex_state = 68}, [1889] = {.lex_state = 68}, [1890] = {.lex_state = 68, .external_lex_state = 2}, - [1891] = {.lex_state = 68, .external_lex_state = 2}, - [1892] = {.lex_state = 18}, + [1891] = {.lex_state = 8, .external_lex_state = 2}, + [1892] = {.lex_state = 68, .external_lex_state = 2}, [1893] = {.lex_state = 68, .external_lex_state = 2}, [1894] = {.lex_state = 68}, - [1895] = {.lex_state = 68, .external_lex_state = 2}, - [1896] = {.lex_state = 68, .external_lex_state = 2}, + [1895] = {.lex_state = 68}, + [1896] = {.lex_state = 18}, [1897] = {.lex_state = 68}, [1898] = {.lex_state = 68}, [1899] = {.lex_state = 68}, [1900] = {.lex_state = 68}, [1901] = {.lex_state = 68, .external_lex_state = 2}, [1902] = {.lex_state = 68}, - [1903] = {.lex_state = 70, .external_lex_state = 10}, + [1903] = {.lex_state = 68, .external_lex_state = 2}, [1904] = {.lex_state = 68, .external_lex_state = 2}, [1905] = {.lex_state = 68, .external_lex_state = 2}, - [1906] = {.lex_state = 68, .external_lex_state = 2}, - [1907] = {.lex_state = 18}, + [1906] = {.lex_state = 68}, + [1907] = {.lex_state = 68}, [1908] = {.lex_state = 68, .external_lex_state = 2}, - [1909] = {.lex_state = 68, .external_lex_state = 2}, + [1909] = {.lex_state = 68}, [1910] = {.lex_state = 68, .external_lex_state = 2}, - [1911] = {.lex_state = 68}, - [1912] = {.lex_state = 68}, - [1913] = {.lex_state = 68}, + [1911] = {.lex_state = 68, .external_lex_state = 2}, + [1912] = {.lex_state = 68, .external_lex_state = 2}, + [1913] = {.lex_state = 68, .external_lex_state = 2}, [1914] = {.lex_state = 68}, - [1915] = {.lex_state = 68}, + [1915] = {.lex_state = 68, .external_lex_state = 2}, [1916] = {.lex_state = 68}, - [1917] = {.lex_state = 68}, - [1918] = {.lex_state = 68}, - [1919] = {.lex_state = 69}, - [1920] = {.lex_state = 68}, - [1921] = {.lex_state = 3, .external_lex_state = 12}, + [1917] = {.lex_state = 8}, + [1918] = {.lex_state = 8}, + [1919] = {.lex_state = 68, .external_lex_state = 2}, + [1920] = {.lex_state = 18}, + [1921] = {.lex_state = 18}, [1922] = {.lex_state = 68}, [1923] = {.lex_state = 68}, - [1924] = {.lex_state = 68}, - [1925] = {.lex_state = 68}, + [1924] = {.lex_state = 68, .external_lex_state = 2}, + [1925] = {.lex_state = 68, .external_lex_state = 2}, [1926] = {.lex_state = 68}, - [1927] = {.lex_state = 68}, + [1927] = {.lex_state = 68, .external_lex_state = 2}, [1928] = {.lex_state = 68}, [1929] = {.lex_state = 68}, [1930] = {.lex_state = 68}, [1931] = {.lex_state = 68}, [1932] = {.lex_state = 68}, [1933] = {.lex_state = 68}, - [1934] = {.lex_state = 68}, - [1935] = {.lex_state = 68, .external_lex_state = 2}, - [1936] = {.lex_state = 69}, + [1934] = {.lex_state = 68, .external_lex_state = 2}, + [1935] = {.lex_state = 68}, + [1936] = {.lex_state = 8}, [1937] = {.lex_state = 68}, - [1938] = {.lex_state = 68, .external_lex_state = 2}, - [1939] = {.lex_state = 68, .external_lex_state = 13}, + [1938] = {.lex_state = 68}, + [1939] = {.lex_state = 68, .external_lex_state = 2}, [1940] = {.lex_state = 68}, - [1941] = {.lex_state = 68}, - [1942] = {.lex_state = 68}, + [1941] = {.lex_state = 68, .external_lex_state = 2}, + [1942] = {.lex_state = 68, .external_lex_state = 2}, [1943] = {.lex_state = 68}, - [1944] = {.lex_state = 68}, - [1945] = {.lex_state = 68}, + [1944] = {.lex_state = 68, .external_lex_state = 2}, + [1945] = {.lex_state = 68, .external_lex_state = 2}, [1946] = {.lex_state = 68}, [1947] = {.lex_state = 68}, [1948] = {.lex_state = 68}, - [1949] = {.lex_state = 68}, - [1950] = {.lex_state = 68}, - [1951] = {.lex_state = 68}, + [1949] = {.lex_state = 68, .external_lex_state = 2}, + [1950] = {.lex_state = 18}, + [1951] = {.lex_state = 68, .external_lex_state = 2}, [1952] = {.lex_state = 68, .external_lex_state = 2}, - [1953] = {.lex_state = 68}, - [1954] = {.lex_state = 68}, - [1955] = {.lex_state = 68}, + [1953] = {.lex_state = 70}, + [1954] = {.lex_state = 71}, + [1955] = {.lex_state = 68, .external_lex_state = 2}, [1956] = {.lex_state = 68, .external_lex_state = 2}, [1957] = {.lex_state = 68}, - [1958] = {.lex_state = 68}, + [1958] = {.lex_state = 68, .external_lex_state = 2}, [1959] = {.lex_state = 68}, - [1960] = {.lex_state = 68}, - [1961] = {.lex_state = 68}, - [1962] = {.lex_state = 68}, - [1963] = {.lex_state = 68}, - [1964] = {.lex_state = 68}, - [1965] = {.lex_state = 68}, - [1966] = {.lex_state = 68}, + [1960] = {.lex_state = 68, .external_lex_state = 2}, + [1961] = {.lex_state = 68, .external_lex_state = 2}, + [1962] = {.lex_state = 68, .external_lex_state = 2}, + [1963] = {.lex_state = 68, .external_lex_state = 2}, + [1964] = {.lex_state = 68, .external_lex_state = 2}, + [1965] = {.lex_state = 68, .external_lex_state = 2}, + [1966] = {.lex_state = 68, .external_lex_state = 2}, [1967] = {.lex_state = 68}, [1968] = {.lex_state = 68}, - [1969] = {.lex_state = 68}, + [1969] = {.lex_state = 71}, [1970] = {.lex_state = 68}, [1971] = {.lex_state = 68}, [1972] = {.lex_state = 68}, [1973] = {.lex_state = 68}, [1974] = {.lex_state = 68}, [1975] = {.lex_state = 68}, - [1976] = {.lex_state = 68}, + [1976] = {.lex_state = 68, .external_lex_state = 2}, [1977] = {.lex_state = 68}, [1978] = {.lex_state = 68}, [1979] = {.lex_state = 68}, @@ -12320,60 +12497,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1984] = {.lex_state = 68}, [1985] = {.lex_state = 68}, [1986] = {.lex_state = 68}, - [1987] = {.lex_state = 68}, - [1988] = {.lex_state = 68}, + [1987] = {.lex_state = 3, .external_lex_state = 12}, + [1988] = {.lex_state = 71}, [1989] = {.lex_state = 68}, [1990] = {.lex_state = 68}, - [1991] = {.lex_state = 3, .external_lex_state = 12}, - [1992] = {.lex_state = 3, .external_lex_state = 12}, - [1993] = {.lex_state = 68, .external_lex_state = 2}, + [1991] = {.lex_state = 68}, + [1992] = {.lex_state = 68}, + [1993] = {.lex_state = 68}, [1994] = {.lex_state = 68}, [1995] = {.lex_state = 68}, [1996] = {.lex_state = 68}, - [1997] = {.lex_state = 68, .external_lex_state = 2}, + [1997] = {.lex_state = 68}, [1998] = {.lex_state = 68}, - [1999] = {.lex_state = 68}, + [1999] = {.lex_state = 68, .external_lex_state = 2}, [2000] = {.lex_state = 68}, [2001] = {.lex_state = 68}, [2002] = {.lex_state = 68}, [2003] = {.lex_state = 68}, - [2004] = {.lex_state = 69}, + [2004] = {.lex_state = 68}, [2005] = {.lex_state = 68}, [2006] = {.lex_state = 68}, [2007] = {.lex_state = 68}, [2008] = {.lex_state = 68}, [2009] = {.lex_state = 68}, - [2010] = {.lex_state = 68}, + [2010] = {.lex_state = 68, .external_lex_state = 2}, [2011] = {.lex_state = 68}, [2012] = {.lex_state = 68}, - [2013] = {.lex_state = 18}, + [2013] = {.lex_state = 68}, [2014] = {.lex_state = 68}, - [2015] = {.lex_state = 68, .external_lex_state = 2}, - [2016] = {.lex_state = 3, .external_lex_state = 12}, + [2015] = {.lex_state = 68}, + [2016] = {.lex_state = 68}, [2017] = {.lex_state = 68}, [2018] = {.lex_state = 68}, [2019] = {.lex_state = 68}, [2020] = {.lex_state = 68}, [2021] = {.lex_state = 68}, [2022] = {.lex_state = 68}, - [2023] = {.lex_state = 68, .external_lex_state = 2}, + [2023] = {.lex_state = 68}, [2024] = {.lex_state = 68}, [2025] = {.lex_state = 68}, [2026] = {.lex_state = 68}, - [2027] = {.lex_state = 68}, + [2027] = {.lex_state = 3, .external_lex_state = 12}, [2028] = {.lex_state = 68}, [2029] = {.lex_state = 68}, [2030] = {.lex_state = 68}, [2031] = {.lex_state = 68}, - [2032] = {.lex_state = 68}, + [2032] = {.lex_state = 18}, [2033] = {.lex_state = 68}, [2034] = {.lex_state = 68}, - [2035] = {.lex_state = 68, .external_lex_state = 2}, + [2035] = {.lex_state = 68}, [2036] = {.lex_state = 68}, [2037] = {.lex_state = 68}, [2038] = {.lex_state = 68}, [2039] = {.lex_state = 68}, - [2040] = {.lex_state = 69}, + [2040] = {.lex_state = 68}, [2041] = {.lex_state = 68}, [2042] = {.lex_state = 68}, [2043] = {.lex_state = 68}, @@ -12384,10 +12561,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2048] = {.lex_state = 68}, [2049] = {.lex_state = 68}, [2050] = {.lex_state = 68}, - [2051] = {.lex_state = 3, .external_lex_state = 11}, - [2052] = {.lex_state = 68}, + [2051] = {.lex_state = 3, .external_lex_state = 12}, + [2052] = {.lex_state = 3, .external_lex_state = 12}, [2053] = {.lex_state = 68}, - [2054] = {.lex_state = 68, .external_lex_state = 2}, + [2054] = {.lex_state = 68}, [2055] = {.lex_state = 68}, [2056] = {.lex_state = 68}, [2057] = {.lex_state = 68}, @@ -12395,8 +12572,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2059] = {.lex_state = 68}, [2060] = {.lex_state = 68}, [2061] = {.lex_state = 68}, - [2062] = {.lex_state = 68, .external_lex_state = 2}, - [2063] = {.lex_state = 68}, + [2062] = {.lex_state = 68}, + [2063] = {.lex_state = 68, .external_lex_state = 2}, [2064] = {.lex_state = 68}, [2065] = {.lex_state = 68}, [2066] = {.lex_state = 68}, @@ -12407,34 +12584,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2071] = {.lex_state = 68}, [2072] = {.lex_state = 68}, [2073] = {.lex_state = 68}, - [2074] = {.lex_state = 68}, + [2074] = {.lex_state = 68, .external_lex_state = 2}, [2075] = {.lex_state = 68}, [2076] = {.lex_state = 68, .external_lex_state = 2}, - [2077] = {.lex_state = 68, .external_lex_state = 2}, + [2077] = {.lex_state = 68}, [2078] = {.lex_state = 68}, [2079] = {.lex_state = 68}, [2080] = {.lex_state = 68}, [2081] = {.lex_state = 68}, - [2082] = {.lex_state = 68}, - [2083] = {.lex_state = 68}, + [2082] = {.lex_state = 68, .external_lex_state = 2}, + [2083] = {.lex_state = 68, .external_lex_state = 2}, [2084] = {.lex_state = 68}, [2085] = {.lex_state = 68}, - [2086] = {.lex_state = 68}, + [2086] = {.lex_state = 3, .external_lex_state = 11}, [2087] = {.lex_state = 68}, - [2088] = {.lex_state = 68}, + [2088] = {.lex_state = 68, .external_lex_state = 2}, [2089] = {.lex_state = 68}, [2090] = {.lex_state = 68}, [2091] = {.lex_state = 68}, [2092] = {.lex_state = 68}, [2093] = {.lex_state = 68}, [2094] = {.lex_state = 68}, - [2095] = {.lex_state = 3, .external_lex_state = 12}, - [2096] = {.lex_state = 68, .external_lex_state = 2}, + [2095] = {.lex_state = 68}, + [2096] = {.lex_state = 68}, [2097] = {.lex_state = 68}, [2098] = {.lex_state = 68}, [2099] = {.lex_state = 68}, [2100] = {.lex_state = 68}, - [2101] = {.lex_state = 68}, + [2101] = {.lex_state = 71}, [2102] = {.lex_state = 68}, [2103] = {.lex_state = 68}, [2104] = {.lex_state = 68}, @@ -12442,31 +12619,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2106] = {.lex_state = 68}, [2107] = {.lex_state = 68}, [2108] = {.lex_state = 68}, - [2109] = {.lex_state = 68, .external_lex_state = 13}, - [2110] = {.lex_state = 68}, + [2109] = {.lex_state = 68, .external_lex_state = 2}, + [2110] = {.lex_state = 71}, [2111] = {.lex_state = 68}, - [2112] = {.lex_state = 68, .external_lex_state = 2}, - [2113] = {.lex_state = 68}, + [2112] = {.lex_state = 68}, + [2113] = {.lex_state = 71}, [2114] = {.lex_state = 68}, [2115] = {.lex_state = 68}, - [2116] = {.lex_state = 188, .external_lex_state = 14}, + [2116] = {.lex_state = 68}, [2117] = {.lex_state = 68}, - [2118] = {.lex_state = 68, .external_lex_state = 2}, - [2119] = {.lex_state = 68, .external_lex_state = 2}, + [2118] = {.lex_state = 68}, + [2119] = {.lex_state = 68}, [2120] = {.lex_state = 68}, - [2121] = {.lex_state = 68}, + [2121] = {.lex_state = 68, .external_lex_state = 2}, [2122] = {.lex_state = 68}, [2123] = {.lex_state = 68}, [2124] = {.lex_state = 68}, [2125] = {.lex_state = 68}, [2126] = {.lex_state = 68}, - [2127] = {.lex_state = 68}, + [2127] = {.lex_state = 68, .external_lex_state = 2}, [2128] = {.lex_state = 68}, - [2129] = {.lex_state = 68, .external_lex_state = 2}, + [2129] = {.lex_state = 68}, [2130] = {.lex_state = 68}, - [2131] = {.lex_state = 68}, - [2132] = {.lex_state = 68}, - [2133] = {.lex_state = 68}, + [2131] = {.lex_state = 68, .external_lex_state = 2}, + [2132] = {.lex_state = 8}, + [2133] = {.lex_state = 71}, [2134] = {.lex_state = 68}, [2135] = {.lex_state = 68}, [2136] = {.lex_state = 68}, @@ -12479,12 +12656,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2143] = {.lex_state = 68}, [2144] = {.lex_state = 68}, [2145] = {.lex_state = 68}, - [2146] = {.lex_state = 68}, + [2146] = {.lex_state = 189, .external_lex_state = 13}, [2147] = {.lex_state = 68}, [2148] = {.lex_state = 68}, [2149] = {.lex_state = 68}, [2150] = {.lex_state = 68}, - [2151] = {.lex_state = 68}, + [2151] = {.lex_state = 68, .external_lex_state = 14}, [2152] = {.lex_state = 68}, [2153] = {.lex_state = 68}, [2154] = {.lex_state = 68}, @@ -12502,7 +12679,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2166] = {.lex_state = 68}, [2167] = {.lex_state = 68}, [2168] = {.lex_state = 68}, - [2169] = {.lex_state = 3, .external_lex_state = 12}, + [2169] = {.lex_state = 68, .external_lex_state = 14}, [2170] = {.lex_state = 68}, [2171] = {.lex_state = 68}, [2172] = {.lex_state = 68}, @@ -12511,48 +12688,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2175] = {.lex_state = 68}, [2176] = {.lex_state = 68}, [2177] = {.lex_state = 68}, - [2178] = {.lex_state = 68}, + [2178] = {.lex_state = 68, .external_lex_state = 2}, [2179] = {.lex_state = 68}, - [2180] = {.lex_state = 68}, + [2180] = {.lex_state = 68, .external_lex_state = 2}, [2181] = {.lex_state = 68}, [2182] = {.lex_state = 68}, [2183] = {.lex_state = 68}, [2184] = {.lex_state = 68}, [2185] = {.lex_state = 68}, - [2186] = {.lex_state = 68}, - [2187] = {.lex_state = 68, .external_lex_state = 2}, - [2188] = {.lex_state = 69}, + [2186] = {.lex_state = 68, .external_lex_state = 2}, + [2187] = {.lex_state = 68}, + [2188] = {.lex_state = 68, .external_lex_state = 2}, [2189] = {.lex_state = 68}, - [2190] = {.lex_state = 68, .external_lex_state = 2}, + [2190] = {.lex_state = 68}, [2191] = {.lex_state = 68}, - [2192] = {.lex_state = 69, .external_lex_state = 10}, - [2193] = {.lex_state = 68, .external_lex_state = 2}, + [2192] = {.lex_state = 68}, + [2193] = {.lex_state = 68}, [2194] = {.lex_state = 68}, [2195] = {.lex_state = 68}, [2196] = {.lex_state = 68}, - [2197] = {.lex_state = 68, .external_lex_state = 2}, - [2198] = {.lex_state = 68, .external_lex_state = 2}, + [2197] = {.lex_state = 68}, + [2198] = {.lex_state = 68}, [2199] = {.lex_state = 68}, [2200] = {.lex_state = 68}, - [2201] = {.lex_state = 68, .external_lex_state = 2}, + [2201] = {.lex_state = 68}, [2202] = {.lex_state = 68}, [2203] = {.lex_state = 68}, - [2204] = {.lex_state = 3, .external_lex_state = 12}, - [2205] = {.lex_state = 68, .external_lex_state = 2}, - [2206] = {.lex_state = 68}, + [2204] = {.lex_state = 68}, + [2205] = {.lex_state = 68}, + [2206] = {.lex_state = 71}, [2207] = {.lex_state = 68}, [2208] = {.lex_state = 68}, [2209] = {.lex_state = 68}, [2210] = {.lex_state = 68}, [2211] = {.lex_state = 68}, - [2212] = {.lex_state = 68, .external_lex_state = 2}, + [2212] = {.lex_state = 68}, [2213] = {.lex_state = 68}, [2214] = {.lex_state = 68}, - [2215] = {.lex_state = 68, .external_lex_state = 2}, + [2215] = {.lex_state = 68}, [2216] = {.lex_state = 68}, - [2217] = {.lex_state = 68, .external_lex_state = 2}, + [2217] = {.lex_state = 68}, [2218] = {.lex_state = 68}, - [2219] = {.lex_state = 68, .external_lex_state = 2}, + [2219] = {.lex_state = 68}, [2220] = {.lex_state = 68}, [2221] = {.lex_state = 68}, [2222] = {.lex_state = 68}, @@ -12560,15 +12737,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2224] = {.lex_state = 68}, [2225] = {.lex_state = 68}, [2226] = {.lex_state = 68}, - [2227] = {.lex_state = 68, .external_lex_state = 2}, - [2228] = {.lex_state = 68, .external_lex_state = 2}, + [2227] = {.lex_state = 68}, + [2228] = {.lex_state = 68}, [2229] = {.lex_state = 68}, - [2230] = {.lex_state = 68}, - [2231] = {.lex_state = 68}, + [2230] = {.lex_state = 3, .external_lex_state = 12}, + [2231] = {.lex_state = 3, .external_lex_state = 12}, [2232] = {.lex_state = 68}, [2233] = {.lex_state = 68}, [2234] = {.lex_state = 68}, - [2235] = {.lex_state = 68}, + [2235] = {.lex_state = 68, .external_lex_state = 2}, [2236] = {.lex_state = 68}, [2237] = {.lex_state = 68}, [2238] = {.lex_state = 68}, @@ -12580,41 +12757,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2244] = {.lex_state = 68}, [2245] = {.lex_state = 68}, [2246] = {.lex_state = 68}, - [2247] = {.lex_state = 68}, + [2247] = {.lex_state = 71}, [2248] = {.lex_state = 68}, - [2249] = {.lex_state = 68, .external_lex_state = 2}, + [2249] = {.lex_state = 68}, [2250] = {.lex_state = 68}, - [2251] = {.lex_state = 68}, + [2251] = {.lex_state = 68, .external_lex_state = 2}, [2252] = {.lex_state = 68}, [2253] = {.lex_state = 68}, [2254] = {.lex_state = 68}, [2255] = {.lex_state = 68}, [2256] = {.lex_state = 68}, - [2257] = {.lex_state = 68}, - [2258] = {.lex_state = 68}, + [2257] = {.lex_state = 68, .external_lex_state = 2}, + [2258] = {.lex_state = 71}, [2259] = {.lex_state = 68}, - [2260] = {.lex_state = 68}, - [2261] = {.lex_state = 68}, - [2262] = {.lex_state = 3, .external_lex_state = 12}, - [2263] = {.lex_state = 68, .external_lex_state = 2}, + [2260] = {.lex_state = 71, .external_lex_state = 10}, + [2261] = {.lex_state = 71}, + [2262] = {.lex_state = 68}, + [2263] = {.lex_state = 68}, [2264] = {.lex_state = 68}, [2265] = {.lex_state = 68}, - [2266] = {.lex_state = 3, .external_lex_state = 12}, - [2267] = {.lex_state = 3, .external_lex_state = 12}, + [2266] = {.lex_state = 68}, + [2267] = {.lex_state = 68}, [2268] = {.lex_state = 68}, - [2269] = {.lex_state = 68}, - [2270] = {.lex_state = 68}, + [2269] = {.lex_state = 8}, + [2270] = {.lex_state = 68, .external_lex_state = 2}, [2271] = {.lex_state = 68, .external_lex_state = 2}, [2272] = {.lex_state = 68}, - [2273] = {.lex_state = 68, .external_lex_state = 2}, - [2274] = {.lex_state = 68}, - [2275] = {.lex_state = 68}, - [2276] = {.lex_state = 68}, + [2273] = {.lex_state = 68}, + [2274] = {.lex_state = 71}, + [2275] = {.lex_state = 71}, + [2276] = {.lex_state = 71}, [2277] = {.lex_state = 68}, [2278] = {.lex_state = 68}, [2279] = {.lex_state = 68}, [2280] = {.lex_state = 68}, - [2281] = {.lex_state = 68}, + [2281] = {.lex_state = 71}, [2282] = {.lex_state = 68}, [2283] = {.lex_state = 68}, [2284] = {.lex_state = 68}, @@ -12623,156 +12800,156 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2287] = {.lex_state = 68}, [2288] = {.lex_state = 68}, [2289] = {.lex_state = 68}, - [2290] = {.lex_state = 68}, + [2290] = {.lex_state = 68, .external_lex_state = 2}, [2291] = {.lex_state = 68}, [2292] = {.lex_state = 68}, [2293] = {.lex_state = 68}, - [2294] = {.lex_state = 68}, - [2295] = {.lex_state = 68}, + [2294] = {.lex_state = 68, .external_lex_state = 2}, + [2295] = {.lex_state = 68, .external_lex_state = 2}, [2296] = {.lex_state = 68}, [2297] = {.lex_state = 68}, [2298] = {.lex_state = 68}, - [2299] = {.lex_state = 68}, - [2300] = {.lex_state = 68, .external_lex_state = 2}, - [2301] = {.lex_state = 68, .external_lex_state = 2}, + [2299] = {.lex_state = 71}, + [2300] = {.lex_state = 71}, + [2301] = {.lex_state = 68}, [2302] = {.lex_state = 68}, [2303] = {.lex_state = 68, .external_lex_state = 2}, [2304] = {.lex_state = 68}, [2305] = {.lex_state = 68}, [2306] = {.lex_state = 68}, - [2307] = {.lex_state = 68, .external_lex_state = 2}, - [2308] = {.lex_state = 68}, - [2309] = {.lex_state = 68}, - [2310] = {.lex_state = 68}, - [2311] = {.lex_state = 68}, - [2312] = {.lex_state = 68}, - [2313] = {.lex_state = 68}, + [2307] = {.lex_state = 68}, + [2308] = {.lex_state = 68, .external_lex_state = 2}, + [2309] = {.lex_state = 68, .external_lex_state = 2}, + [2310] = {.lex_state = 68, .external_lex_state = 2}, + [2311] = {.lex_state = 68, .external_lex_state = 2}, + [2312] = {.lex_state = 68, .external_lex_state = 2}, + [2313] = {.lex_state = 68, .external_lex_state = 2}, [2314] = {.lex_state = 68}, [2315] = {.lex_state = 68}, [2316] = {.lex_state = 68}, [2317] = {.lex_state = 68}, [2318] = {.lex_state = 68}, [2319] = {.lex_state = 68}, - [2320] = {.lex_state = 68}, + [2320] = {.lex_state = 68, .external_lex_state = 2}, [2321] = {.lex_state = 68}, [2322] = {.lex_state = 68, .external_lex_state = 2}, - [2323] = {.lex_state = 68}, - [2324] = {.lex_state = 68}, - [2325] = {.lex_state = 68}, - [2326] = {.lex_state = 68}, - [2327] = {.lex_state = 68, .external_lex_state = 2}, + [2323] = {.lex_state = 68, .external_lex_state = 2}, + [2324] = {.lex_state = 68, .external_lex_state = 2}, + [2325] = {.lex_state = 68, .external_lex_state = 2}, + [2326] = {.lex_state = 71}, + [2327] = {.lex_state = 68}, [2328] = {.lex_state = 68}, - [2329] = {.lex_state = 68, .external_lex_state = 2}, + [2329] = {.lex_state = 68}, [2330] = {.lex_state = 68, .external_lex_state = 2}, [2331] = {.lex_state = 68, .external_lex_state = 2}, - [2332] = {.lex_state = 68, .external_lex_state = 2}, - [2333] = {.lex_state = 68, .external_lex_state = 2}, - [2334] = {.lex_state = 68, .external_lex_state = 2}, - [2335] = {.lex_state = 68, .external_lex_state = 2}, - [2336] = {.lex_state = 68}, - [2337] = {.lex_state = 68}, - [2338] = {.lex_state = 68}, - [2339] = {.lex_state = 68}, + [2332] = {.lex_state = 68}, + [2333] = {.lex_state = 68}, + [2334] = {.lex_state = 68}, + [2335] = {.lex_state = 71}, + [2336] = {.lex_state = 71}, + [2337] = {.lex_state = 71}, + [2338] = {.lex_state = 71}, + [2339] = {.lex_state = 68, .external_lex_state = 2}, [2340] = {.lex_state = 68}, - [2341] = {.lex_state = 68}, + [2341] = {.lex_state = 68, .external_lex_state = 2}, [2342] = {.lex_state = 68}, - [2343] = {.lex_state = 68, .external_lex_state = 2}, - [2344] = {.lex_state = 68, .external_lex_state = 2}, + [2343] = {.lex_state = 68}, + [2344] = {.lex_state = 68}, [2345] = {.lex_state = 68}, [2346] = {.lex_state = 68}, - [2347] = {.lex_state = 68, .external_lex_state = 2}, + [2347] = {.lex_state = 68}, [2348] = {.lex_state = 68}, [2349] = {.lex_state = 68}, [2350] = {.lex_state = 68}, - [2351] = {.lex_state = 68}, - [2352] = {.lex_state = 68}, - [2353] = {.lex_state = 68}, + [2351] = {.lex_state = 68, .external_lex_state = 2}, + [2352] = {.lex_state = 68, .external_lex_state = 2}, + [2353] = {.lex_state = 68, .external_lex_state = 2}, [2354] = {.lex_state = 68, .external_lex_state = 2}, - [2355] = {.lex_state = 68, .external_lex_state = 2}, - [2356] = {.lex_state = 68}, + [2355] = {.lex_state = 3, .external_lex_state = 12}, + [2356] = {.lex_state = 3, .external_lex_state = 12}, [2357] = {.lex_state = 68}, [2358] = {.lex_state = 68, .external_lex_state = 2}, [2359] = {.lex_state = 68}, [2360] = {.lex_state = 68}, [2361] = {.lex_state = 68, .external_lex_state = 2}, - [2362] = {.lex_state = 68}, - [2363] = {.lex_state = 68}, - [2364] = {.lex_state = 68}, - [2365] = {.lex_state = 68}, + [2362] = {.lex_state = 68, .external_lex_state = 2}, + [2363] = {.lex_state = 68, .external_lex_state = 2}, + [2364] = {.lex_state = 71}, + [2365] = {.lex_state = 71}, [2366] = {.lex_state = 68}, - [2367] = {.lex_state = 68, .external_lex_state = 2}, - [2368] = {.lex_state = 68, .external_lex_state = 2}, - [2369] = {.lex_state = 68}, + [2367] = {.lex_state = 71}, + [2368] = {.lex_state = 71}, + [2369] = {.lex_state = 68, .external_lex_state = 2}, [2370] = {.lex_state = 68}, - [2371] = {.lex_state = 68}, - [2372] = {.lex_state = 68}, - [2373] = {.lex_state = 68}, + [2371] = {.lex_state = 68, .external_lex_state = 2}, + [2372] = {.lex_state = 68, .external_lex_state = 2}, + [2373] = {.lex_state = 68, .external_lex_state = 2}, [2374] = {.lex_state = 68}, - [2375] = {.lex_state = 68, .external_lex_state = 2}, + [2375] = {.lex_state = 68}, [2376] = {.lex_state = 68}, - [2377] = {.lex_state = 68}, - [2378] = {.lex_state = 68, .external_lex_state = 2}, + [2377] = {.lex_state = 68, .external_lex_state = 2}, + [2378] = {.lex_state = 68}, [2379] = {.lex_state = 68}, [2380] = {.lex_state = 68}, [2381] = {.lex_state = 68}, - [2382] = {.lex_state = 68}, + [2382] = {.lex_state = 68, .external_lex_state = 2}, [2383] = {.lex_state = 68}, - [2384] = {.lex_state = 68}, + [2384] = {.lex_state = 68, .external_lex_state = 2}, [2385] = {.lex_state = 68}, - [2386] = {.lex_state = 68}, - [2387] = {.lex_state = 68, .external_lex_state = 2}, + [2386] = {.lex_state = 68, .external_lex_state = 2}, + [2387] = {.lex_state = 68}, [2388] = {.lex_state = 68}, - [2389] = {.lex_state = 68}, - [2390] = {.lex_state = 68, .external_lex_state = 2}, - [2391] = {.lex_state = 68, .external_lex_state = 2}, - [2392] = {.lex_state = 68, .external_lex_state = 2}, + [2389] = {.lex_state = 68, .external_lex_state = 2}, + [2390] = {.lex_state = 71}, + [2391] = {.lex_state = 68}, + [2392] = {.lex_state = 68}, [2393] = {.lex_state = 68}, - [2394] = {.lex_state = 68, .external_lex_state = 2}, - [2395] = {.lex_state = 3, .external_lex_state = 12}, - [2396] = {.lex_state = 68}, - [2397] = {.lex_state = 68, .external_lex_state = 2}, + [2394] = {.lex_state = 68}, + [2395] = {.lex_state = 68}, + [2396] = {.lex_state = 71}, + [2397] = {.lex_state = 68}, [2398] = {.lex_state = 68}, [2399] = {.lex_state = 68}, - [2400] = {.lex_state = 68, .external_lex_state = 2}, - [2401] = {.lex_state = 68, .external_lex_state = 2}, - [2402] = {.lex_state = 68}, - [2403] = {.lex_state = 68}, + [2400] = {.lex_state = 68}, + [2401] = {.lex_state = 68}, + [2402] = {.lex_state = 68, .external_lex_state = 2}, + [2403] = {.lex_state = 68, .external_lex_state = 2}, [2404] = {.lex_state = 68}, [2405] = {.lex_state = 68}, [2406] = {.lex_state = 68}, [2407] = {.lex_state = 68}, - [2408] = {.lex_state = 68}, - [2409] = {.lex_state = 68}, + [2408] = {.lex_state = 68, .external_lex_state = 2}, + [2409] = {.lex_state = 68, .external_lex_state = 2}, [2410] = {.lex_state = 68}, [2411] = {.lex_state = 68}, [2412] = {.lex_state = 68}, [2413] = {.lex_state = 68}, [2414] = {.lex_state = 68}, [2415] = {.lex_state = 68}, - [2416] = {.lex_state = 68, .external_lex_state = 2}, - [2417] = {.lex_state = 68, .external_lex_state = 2}, + [2416] = {.lex_state = 68}, + [2417] = {.lex_state = 71}, [2418] = {.lex_state = 68}, [2419] = {.lex_state = 68}, [2420] = {.lex_state = 68}, - [2421] = {.lex_state = 68, .external_lex_state = 2}, + [2421] = {.lex_state = 68}, [2422] = {.lex_state = 68}, - [2423] = {.lex_state = 68}, - [2424] = {.lex_state = 68, .external_lex_state = 2}, + [2423] = {.lex_state = 68, .external_lex_state = 2}, + [2424] = {.lex_state = 68}, [2425] = {.lex_state = 68}, [2426] = {.lex_state = 68}, [2427] = {.lex_state = 68}, - [2428] = {.lex_state = 3, .external_lex_state = 12}, + [2428] = {.lex_state = 68}, [2429] = {.lex_state = 3, .external_lex_state = 12}, [2430] = {.lex_state = 68}, [2431] = {.lex_state = 68}, - [2432] = {.lex_state = 68}, - [2433] = {.lex_state = 68}, + [2432] = {.lex_state = 3, .external_lex_state = 12}, + [2433] = {.lex_state = 68, .external_lex_state = 2}, [2434] = {.lex_state = 68}, [2435] = {.lex_state = 68}, [2436] = {.lex_state = 68}, - [2437] = {.lex_state = 68}, + [2437] = {.lex_state = 68, .external_lex_state = 2}, [2438] = {.lex_state = 68, .external_lex_state = 2}, - [2439] = {.lex_state = 68}, + [2439] = {.lex_state = 68, .external_lex_state = 2}, [2440] = {.lex_state = 68}, [2441] = {.lex_state = 68}, [2442] = {.lex_state = 68}, @@ -12780,15 +12957,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2444] = {.lex_state = 68}, [2445] = {.lex_state = 68}, [2446] = {.lex_state = 68}, - [2447] = {.lex_state = 68, .external_lex_state = 2}, + [2447] = {.lex_state = 68}, [2448] = {.lex_state = 68}, - [2449] = {.lex_state = 68, .external_lex_state = 2}, + [2449] = {.lex_state = 68}, [2450] = {.lex_state = 68, .external_lex_state = 2}, [2451] = {.lex_state = 68}, - [2452] = {.lex_state = 68, .external_lex_state = 2}, + [2452] = {.lex_state = 68}, [2453] = {.lex_state = 68}, [2454] = {.lex_state = 68}, - [2455] = {.lex_state = 68, .external_lex_state = 2}, + [2455] = {.lex_state = 71}, [2456] = {.lex_state = 68}, [2457] = {.lex_state = 68}, [2458] = {.lex_state = 68}, @@ -12797,85 +12974,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2461] = {.lex_state = 68}, [2462] = {.lex_state = 68}, [2463] = {.lex_state = 68}, - [2464] = {.lex_state = 68, .external_lex_state = 13}, - [2465] = {.lex_state = 68, .external_lex_state = 13}, - [2466] = {.lex_state = 68}, - [2467] = {.lex_state = 68}, + [2464] = {.lex_state = 68}, + [2465] = {.lex_state = 68}, + [2466] = {.lex_state = 71}, + [2467] = {.lex_state = 3, .external_lex_state = 12}, [2468] = {.lex_state = 68}, [2469] = {.lex_state = 68}, [2470] = {.lex_state = 68}, [2471] = {.lex_state = 68}, [2472] = {.lex_state = 68}, - [2473] = {.lex_state = 68}, - [2474] = {.lex_state = 68}, - [2475] = {.lex_state = 68}, - [2476] = {.lex_state = 68}, + [2473] = {.lex_state = 68, .external_lex_state = 2}, + [2474] = {.lex_state = 68, .external_lex_state = 2}, + [2475] = {.lex_state = 68, .external_lex_state = 2}, + [2476] = {.lex_state = 68, .external_lex_state = 2}, [2477] = {.lex_state = 68}, - [2478] = {.lex_state = 68}, + [2478] = {.lex_state = 68, .external_lex_state = 2}, [2479] = {.lex_state = 68}, [2480] = {.lex_state = 68}, - [2481] = {.lex_state = 68}, - [2482] = {.lex_state = 68}, - [2483] = {.lex_state = 68}, - [2484] = {.lex_state = 68}, - [2485] = {.lex_state = 68}, + [2481] = {.lex_state = 3, .external_lex_state = 12}, + [2482] = {.lex_state = 68, .external_lex_state = 2}, + [2483] = {.lex_state = 71}, + [2484] = {.lex_state = 68, .external_lex_state = 2}, + [2485] = {.lex_state = 68, .external_lex_state = 2}, [2486] = {.lex_state = 68}, [2487] = {.lex_state = 68}, - [2488] = {.lex_state = 68}, + [2488] = {.lex_state = 68, .external_lex_state = 2}, [2489] = {.lex_state = 68}, [2490] = {.lex_state = 68}, [2491] = {.lex_state = 68}, [2492] = {.lex_state = 68}, [2493] = {.lex_state = 68}, [2494] = {.lex_state = 68}, - [2495] = {.lex_state = 68, .external_lex_state = 12}, - [2496] = {.lex_state = 68}, + [2495] = {.lex_state = 68}, + [2496] = {.lex_state = 68, .external_lex_state = 2}, [2497] = {.lex_state = 68}, [2498] = {.lex_state = 68}, [2499] = {.lex_state = 68}, [2500] = {.lex_state = 68}, - [2501] = {.lex_state = 68, .external_lex_state = 12}, - [2502] = {.lex_state = 68}, - [2503] = {.lex_state = 68, .external_lex_state = 12}, - [2504] = {.lex_state = 68, .external_lex_state = 12}, + [2501] = {.lex_state = 68}, + [2502] = {.lex_state = 68, .external_lex_state = 2}, + [2503] = {.lex_state = 68}, + [2504] = {.lex_state = 3, .external_lex_state = 12}, [2505] = {.lex_state = 68}, [2506] = {.lex_state = 68}, [2507] = {.lex_state = 68}, - [2508] = {.lex_state = 68, .external_lex_state = 12}, + [2508] = {.lex_state = 68}, [2509] = {.lex_state = 68}, - [2510] = {.lex_state = 68}, - [2511] = {.lex_state = 68}, + [2510] = {.lex_state = 71}, + [2511] = {.lex_state = 68, .external_lex_state = 2}, [2512] = {.lex_state = 68}, [2513] = {.lex_state = 68}, [2514] = {.lex_state = 68}, [2515] = {.lex_state = 68}, - [2516] = {.lex_state = 68}, - [2517] = {.lex_state = 68}, - [2518] = {.lex_state = 68}, - [2519] = {.lex_state = 68}, + [2516] = {.lex_state = 8}, + [2517] = {.lex_state = 68, .external_lex_state = 2}, + [2518] = {.lex_state = 71}, + [2519] = {.lex_state = 71}, [2520] = {.lex_state = 68}, [2521] = {.lex_state = 68}, [2522] = {.lex_state = 68}, - [2523] = {.lex_state = 68}, + [2523] = {.lex_state = 68, .external_lex_state = 2}, [2524] = {.lex_state = 68}, [2525] = {.lex_state = 68}, [2526] = {.lex_state = 68}, [2527] = {.lex_state = 68}, - [2528] = {.lex_state = 68}, + [2528] = {.lex_state = 71}, [2529] = {.lex_state = 68}, - [2530] = {.lex_state = 68}, + [2530] = {.lex_state = 71}, [2531] = {.lex_state = 68}, - [2532] = {.lex_state = 68}, + [2532] = {.lex_state = 68, .external_lex_state = 2}, [2533] = {.lex_state = 68}, - [2534] = {.lex_state = 68}, - [2535] = {.lex_state = 68}, + [2534] = {.lex_state = 68, .external_lex_state = 2}, + [2535] = {.lex_state = 68, .external_lex_state = 2}, [2536] = {.lex_state = 68}, [2537] = {.lex_state = 68}, [2538] = {.lex_state = 68}, [2539] = {.lex_state = 68}, [2540] = {.lex_state = 68}, - [2541] = {.lex_state = 8}, - [2542] = {.lex_state = 8}, + [2541] = {.lex_state = 68}, + [2542] = {.lex_state = 68}, [2543] = {.lex_state = 68}, [2544] = {.lex_state = 68}, [2545] = {.lex_state = 68}, @@ -12889,15 +13066,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2553] = {.lex_state = 68}, [2554] = {.lex_state = 68}, [2555] = {.lex_state = 68}, - [2556] = {.lex_state = 68}, + [2556] = {.lex_state = 68, .external_lex_state = 14}, [2557] = {.lex_state = 68}, [2558] = {.lex_state = 68}, [2559] = {.lex_state = 68}, - [2560] = {.lex_state = 68}, + [2560] = {.lex_state = 8}, [2561] = {.lex_state = 68}, [2562] = {.lex_state = 68}, - [2563] = {.lex_state = 68, .external_lex_state = 12}, - [2564] = {.lex_state = 68}, + [2563] = {.lex_state = 68}, + [2564] = {.lex_state = 8}, [2565] = {.lex_state = 68}, [2566] = {.lex_state = 68}, [2567] = {.lex_state = 68}, @@ -12908,7 +13085,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2572] = {.lex_state = 68}, [2573] = {.lex_state = 68}, [2574] = {.lex_state = 68}, - [2575] = {.lex_state = 68}, + [2575] = {.lex_state = 68, .external_lex_state = 12}, [2576] = {.lex_state = 68}, [2577] = {.lex_state = 68}, [2578] = {.lex_state = 68}, @@ -12918,9 +13095,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2582] = {.lex_state = 68}, [2583] = {.lex_state = 68}, [2584] = {.lex_state = 68}, - [2585] = {.lex_state = 68, .external_lex_state = 13}, - [2586] = {.lex_state = 68, .external_lex_state = 13}, - [2587] = {.lex_state = 68}, + [2585] = {.lex_state = 68}, + [2586] = {.lex_state = 68, .external_lex_state = 14}, + [2587] = {.lex_state = 68, .external_lex_state = 14}, [2588] = {.lex_state = 68}, [2589] = {.lex_state = 68}, [2590] = {.lex_state = 68}, @@ -12947,53 +13124,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2611] = {.lex_state = 68}, [2612] = {.lex_state = 68}, [2613] = {.lex_state = 68}, - [2614] = {.lex_state = 68}, - [2615] = {.lex_state = 68}, + [2614] = {.lex_state = 8}, + [2615] = {.lex_state = 8}, [2616] = {.lex_state = 68}, - [2617] = {.lex_state = 68}, + [2617] = {.lex_state = 68, .external_lex_state = 12}, [2618] = {.lex_state = 68}, [2619] = {.lex_state = 68}, [2620] = {.lex_state = 68}, [2621] = {.lex_state = 68}, - [2622] = {.lex_state = 68}, + [2622] = {.lex_state = 68, .external_lex_state = 12}, [2623] = {.lex_state = 68}, [2624] = {.lex_state = 68}, [2625] = {.lex_state = 68}, [2626] = {.lex_state = 68}, - [2627] = {.lex_state = 68}, + [2627] = {.lex_state = 8}, [2628] = {.lex_state = 68}, [2629] = {.lex_state = 68}, [2630] = {.lex_state = 68}, [2631] = {.lex_state = 68}, [2632] = {.lex_state = 68}, - [2633] = {.lex_state = 68}, + [2633] = {.lex_state = 8}, [2634] = {.lex_state = 68}, [2635] = {.lex_state = 68}, [2636] = {.lex_state = 68}, [2637] = {.lex_state = 68}, [2638] = {.lex_state = 68}, [2639] = {.lex_state = 68}, - [2640] = {.lex_state = 68}, + [2640] = {.lex_state = 8}, [2641] = {.lex_state = 68}, - [2642] = {.lex_state = 68}, - [2643] = {.lex_state = 68}, + [2642] = {.lex_state = 68, .external_lex_state = 12}, + [2643] = {.lex_state = 68, .external_lex_state = 12}, [2644] = {.lex_state = 68}, - [2645] = {.lex_state = 68}, + [2645] = {.lex_state = 8}, [2646] = {.lex_state = 68}, [2647] = {.lex_state = 68}, - [2648] = {.lex_state = 68}, - [2649] = {.lex_state = 68}, + [2648] = {.lex_state = 8}, + [2649] = {.lex_state = 8}, [2650] = {.lex_state = 68}, - [2651] = {.lex_state = 8}, - [2652] = {.lex_state = 68}, + [2651] = {.lex_state = 68}, + [2652] = {.lex_state = 8}, [2653] = {.lex_state = 68}, [2654] = {.lex_state = 68}, - [2655] = {.lex_state = 68}, + [2655] = {.lex_state = 68, .external_lex_state = 14}, [2656] = {.lex_state = 68}, [2657] = {.lex_state = 68}, [2658] = {.lex_state = 68}, [2659] = {.lex_state = 68}, - [2660] = {.lex_state = 68}, + [2660] = {.lex_state = 8}, [2661] = {.lex_state = 8}, [2662] = {.lex_state = 68}, [2663] = {.lex_state = 68}, @@ -13002,7 +13179,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2666] = {.lex_state = 68}, [2667] = {.lex_state = 68}, [2668] = {.lex_state = 68}, - [2669] = {.lex_state = 68}, + [2669] = {.lex_state = 8}, [2670] = {.lex_state = 68}, [2671] = {.lex_state = 68}, [2672] = {.lex_state = 68}, @@ -13013,8 +13190,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2677] = {.lex_state = 68}, [2678] = {.lex_state = 68}, [2679] = {.lex_state = 68}, - [2680] = {(TSStateId)(-1)}, - [2681] = {(TSStateId)(-1)}, + [2680] = {.lex_state = 68}, + [2681] = {.lex_state = 68}, + [2682] = {.lex_state = 68}, + [2683] = {.lex_state = 68}, + [2684] = {.lex_state = 68}, + [2685] = {.lex_state = 68}, + [2686] = {.lex_state = 68}, + [2687] = {.lex_state = 68}, + [2688] = {.lex_state = 68}, + [2689] = {.lex_state = 68}, + [2690] = {.lex_state = 68}, + [2691] = {.lex_state = 68}, + [2692] = {.lex_state = 68}, + [2693] = {.lex_state = 68}, + [2694] = {.lex_state = 68}, + [2695] = {.lex_state = 68}, + [2696] = {.lex_state = 68}, + [2697] = {.lex_state = 8}, + [2698] = {.lex_state = 68}, + [2699] = {.lex_state = 68}, + [2700] = {.lex_state = 68}, + [2701] = {.lex_state = 68}, + [2702] = {.lex_state = 68}, + [2703] = {.lex_state = 68}, + [2704] = {.lex_state = 68}, + [2705] = {.lex_state = 68}, + [2706] = {.lex_state = 68}, + [2707] = {.lex_state = 68}, + [2708] = {.lex_state = 68}, + [2709] = {.lex_state = 68}, + [2710] = {.lex_state = 68}, + [2711] = {.lex_state = 68}, + [2712] = {.lex_state = 68}, + [2713] = {.lex_state = 68}, + [2714] = {.lex_state = 68}, + [2715] = {.lex_state = 68}, + [2716] = {.lex_state = 68}, + [2717] = {.lex_state = 68}, + [2718] = {.lex_state = 68}, + [2719] = {.lex_state = 68}, + [2720] = {.lex_state = 68}, + [2721] = {.lex_state = 68}, + [2722] = {.lex_state = 68}, + [2723] = {.lex_state = 68}, + [2724] = {.lex_state = 68}, + [2725] = {.lex_state = 68}, + [2726] = {.lex_state = 68}, + [2727] = {.lex_state = 68}, + [2728] = {.lex_state = 68}, + [2729] = {.lex_state = 68}, + [2730] = {.lex_state = 68}, + [2731] = {.lex_state = 68}, + [2732] = {.lex_state = 68}, + [2733] = {.lex_state = 68}, + [2734] = {.lex_state = 68}, + [2735] = {.lex_state = 68, .external_lex_state = 12}, + [2736] = {.lex_state = 68}, + [2737] = {.lex_state = 68}, + [2738] = {.lex_state = 68}, + [2739] = {.lex_state = 68}, + [2740] = {.lex_state = 68}, + [2741] = {.lex_state = 68}, + [2742] = {.lex_state = 68}, + [2743] = {.lex_state = 68}, + [2744] = {.lex_state = 68}, + [2745] = {.lex_state = 68}, + [2746] = {.lex_state = 68}, + [2747] = {.lex_state = 68}, + [2748] = {.lex_state = 68}, + [2749] = {.lex_state = 68}, + [2750] = {(TSStateId)(-1)}, + [2751] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13204,10 +13451,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_sentinel_error] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(2676), + [sym_program] = STATE(2746), [sym_text_interpolation] = STATE(1), - [sym_text] = STATE(2188), - [aux_sym_text_repeat1] = STATE(1657), + [sym_text] = STATE(2258), + [aux_sym_text_repeat1] = STATE(1760), [ts_builtin_sym_end] = ACTIONS(7), [sym_php_tag] = ACTIONS(9), [anon_sym_QMARK_GT] = ACTIONS(11), @@ -13217,103 +13464,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2] = { [sym_text_interpolation] = STATE(2), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [ts_builtin_sym_end] = ACTIONS(17), [sym_name] = ACTIONS(19), [anon_sym_QMARK_GT] = ACTIONS(3), @@ -13401,103 +13648,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [3] = { [sym_text_interpolation] = STATE(3), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(5), - [aux_sym_attribute_list_repeat1] = STATE(978), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -13579,103 +13826,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [4] = { [sym_text_interpolation] = STATE(4), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(3), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -13757,103 +14004,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5] = { [sym_text_interpolation] = STATE(5), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -13935,103 +14182,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [6] = { [sym_text_interpolation] = STATE(6), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_attribute_list_repeat1] = STATE(978), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(5), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -14113,103 +14360,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [7] = { [sym_text_interpolation] = STATE(7), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(19), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(22), @@ -14290,103 +14537,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [8] = { [sym_text_interpolation] = STATE(8), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_attribute_list_repeat1] = STATE(978), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -14414,7 +14661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -14423,14 +14670,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(278), + [aux_sym_while_statement_token2] = ACTIONS(367), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), - [aux_sym_if_statement_token2] = ACTIONS(377), - [aux_sym_else_if_clause_token1] = ACTIONS(377), - [aux_sym_else_clause_token1] = ACTIONS(377), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token2] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token2] = ACTIONS(367), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -14467,103 +14714,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [9] = { [sym_text_interpolation] = STATE(9), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_attribute_list_repeat1] = STATE(989), + [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), + [aux_sym_visibility_modifier_token1] = ACTIONS(248), + [aux_sym_visibility_modifier_token2] = ACTIONS(248), + [aux_sym_visibility_modifier_token3] = ACTIONS(248), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), + [sym_float] = ACTIONS(264), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), + [sym_integer] = ACTIONS(264), + [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_while_statement_token1] = ACTIONS(278), + [aux_sym_while_statement_token2] = ACTIONS(369), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_foreach_statement_token2] = ACTIONS(369), + [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_if_statement_token2] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(288), + [aux_sym_switch_statement_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(338), + }, + [10] = { + [sym_text_interpolation] = STATE(10), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_attribute_list_repeat1] = STATE(989), + [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), + [aux_sym_visibility_modifier_token1] = ACTIONS(248), + [aux_sym_visibility_modifier_token2] = ACTIONS(248), + [aux_sym_visibility_modifier_token3] = ACTIONS(248), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(371), + [sym_float] = ACTIONS(264), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), + [sym_integer] = ACTIONS(264), + [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_while_statement_token1] = ACTIONS(373), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), + [aux_sym_if_statement_token2] = ACTIONS(369), + [aux_sym_else_if_clause_token1] = ACTIONS(369), + [aux_sym_else_clause_token1] = ACTIONS(369), + [aux_sym_match_expression_token1] = ACTIONS(288), + [aux_sym_switch_statement_token1] = ACTIONS(290), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(338), + }, + [11] = { + [sym_text_interpolation] = STATE(11), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -14591,7 +15192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -14600,14 +15201,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), - [aux_sym_if_statement_token2] = ACTIONS(379), - [aux_sym_else_if_clause_token1] = ACTIONS(379), - [aux_sym_else_clause_token1] = ACTIONS(379), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), + [aux_sym_if_statement_token2] = ACTIONS(367), + [aux_sym_else_if_clause_token1] = ACTIONS(367), + [aux_sym_else_clause_token1] = ACTIONS(367), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -14642,120 +15243,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [10] = { - [sym_text_interpolation] = STATE(10), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [12] = { + [sym_text_interpolation] = STATE(12), + [sym_empty_statement] = STATE(2071), + [sym_function_static_declaration] = STATE(2071), + [sym_global_declaration] = STATE(2071), + [sym_namespace_definition] = STATE(2071), + [sym_namespace_use_declaration] = STATE(2071), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2071), + [sym_interface_declaration] = STATE(2071), + [sym_enum_declaration] = STATE(2071), + [sym_class_declaration] = STATE(2071), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2071), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2071), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2071), + [sym_exit_statement] = STATE(2071), + [sym_unset_statement] = STATE(2071), + [sym_declare_statement] = STATE(2071), + [sym_try_statement] = STATE(2071), + [sym_goto_statement] = STATE(2071), + [sym_continue_statement] = STATE(2071), + [sym_break_statement] = STATE(2071), + [sym_return_statement] = STATE(2071), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2071), + [sym_do_statement] = STATE(2071), + [sym_for_statement] = STATE(2071), + [sym_foreach_statement] = STATE(2071), + [sym_if_statement] = STATE(2071), + [sym_colon_block] = STATE(2628), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2071), + [sym_compound_statement] = STATE(2071), + [sym_named_label_statement] = STATE(2071), + [sym_expression_statement] = STATE(2071), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(383), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(403), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -14765,28 +15367,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_while_statement_token2] = ACTIONS(379), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_foreach_statement_token2] = ACTIONS(379), - [aux_sym_if_statement_token1] = ACTIONS(286), - [aux_sym_if_statement_token2] = ACTIONS(379), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -14817,110 +15416,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(439), }, - [11] = { - [sym_text_interpolation] = STATE(11), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_attribute_list_repeat1] = STATE(978), + [13] = { + [sym_text_interpolation] = STATE(13), + [sym_empty_statement] = STATE(536), + [sym_function_static_declaration] = STATE(536), + [sym_global_declaration] = STATE(536), + [sym_namespace_definition] = STATE(536), + [sym_namespace_use_declaration] = STATE(536), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(536), + [sym_interface_declaration] = STATE(536), + [sym_enum_declaration] = STATE(536), + [sym_class_declaration] = STATE(536), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(536), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(536), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(536), + [sym_exit_statement] = STATE(536), + [sym_unset_statement] = STATE(536), + [sym_declare_statement] = STATE(536), + [sym_try_statement] = STATE(536), + [sym_goto_statement] = STATE(536), + [sym_continue_statement] = STATE(536), + [sym_break_statement] = STATE(536), + [sym_return_statement] = STATE(536), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(536), + [sym_do_statement] = STATE(536), + [sym_for_statement] = STATE(536), + [sym_foreach_statement] = STATE(536), + [sym_if_statement] = STATE(536), + [sym_colon_block] = STATE(2663), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(536), + [sym_compound_statement] = STATE(536), + [sym_named_label_statement] = STATE(536), + [sym_expression_statement] = STATE(536), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_SEMI] = ACTIONS(441), [aux_sym_function_static_declaration_token1] = ACTIONS(214), [aux_sym_global_declaration_token1] = ACTIONS(216), [aux_sym_namespace_definition_token1] = ACTIONS(218), @@ -14932,6 +15532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(403), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -14945,7 +15546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -14954,14 +15555,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_while_statement_token2] = ACTIONS(377), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_foreach_statement_token2] = ACTIONS(377), - [aux_sym_if_statement_token1] = ACTIONS(286), - [aux_sym_if_statement_token2] = ACTIONS(377), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -14995,122 +15593,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), + [sym__automatic_semicolon] = ACTIONS(443), }, - [12] = { - [sym_text_interpolation] = STATE(12), - [sym_empty_statement] = STATE(516), - [sym_function_static_declaration] = STATE(516), - [sym_global_declaration] = STATE(516), - [sym_namespace_definition] = STATE(516), - [sym_namespace_use_declaration] = STATE(516), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(516), - [sym_interface_declaration] = STATE(516), - [sym_enum_declaration] = STATE(516), - [sym_class_declaration] = STATE(516), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(516), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(516), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(516), - [sym_exit_statement] = STATE(516), - [sym_unset_statement] = STATE(516), - [sym_declare_statement] = STATE(516), - [sym_try_statement] = STATE(516), - [sym_goto_statement] = STATE(516), - [sym_continue_statement] = STATE(516), - [sym_break_statement] = STATE(516), - [sym_return_statement] = STATE(516), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(516), - [sym_do_statement] = STATE(516), - [sym_for_statement] = STATE(516), - [sym_foreach_statement] = STATE(516), - [sym_if_statement] = STATE(516), - [sym_colon_block] = STATE(2566), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(516), - [sym_compound_statement] = STATE(516), - [sym_named_label_statement] = STATE(516), - [sym_expression_statement] = STATE(516), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [14] = { + [sym_text_interpolation] = STATE(14), + [sym_empty_statement] = STATE(2071), + [sym_function_static_declaration] = STATE(2071), + [sym_global_declaration] = STATE(2071), + [sym_namespace_definition] = STATE(2071), + [sym_namespace_use_declaration] = STATE(2071), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2071), + [sym_interface_declaration] = STATE(2071), + [sym_enum_declaration] = STATE(2071), + [sym_class_declaration] = STATE(2071), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2071), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2071), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2071), + [sym_exit_statement] = STATE(2071), + [sym_unset_statement] = STATE(2071), + [sym_declare_statement] = STATE(2071), + [sym_try_statement] = STATE(2071), + [sym_goto_statement] = STATE(2071), + [sym_continue_statement] = STATE(2071), + [sym_break_statement] = STATE(2071), + [sym_return_statement] = STATE(2071), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2071), + [sym_do_statement] = STATE(2071), + [sym_for_statement] = STATE(2071), + [sym_foreach_statement] = STATE(2071), + [sym_if_statement] = STATE(2071), + [sym_colon_block] = STATE(2628), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2071), + [sym_compound_statement] = STATE(2071), + [sym_named_label_statement] = STATE(2071), + [sym_expression_statement] = STATE(2071), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(383), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(403), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -15120,25 +15719,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -15169,124 +15768,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(385), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(439), }, - [13] = { - [sym_text_interpolation] = STATE(13), - [sym_empty_statement] = STATE(2003), - [sym_function_static_declaration] = STATE(2003), - [sym_global_declaration] = STATE(2003), - [sym_namespace_definition] = STATE(2003), - [sym_namespace_use_declaration] = STATE(2003), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2003), - [sym_interface_declaration] = STATE(2003), - [sym_enum_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2003), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2003), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2003), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2003), - [sym_exit_statement] = STATE(2003), - [sym_unset_statement] = STATE(2003), - [sym_declare_statement] = STATE(2003), - [sym_try_statement] = STATE(2003), - [sym_goto_statement] = STATE(2003), - [sym_continue_statement] = STATE(2003), - [sym_break_statement] = STATE(2003), - [sym_return_statement] = STATE(2003), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2003), - [sym_do_statement] = STATE(2003), - [sym_for_statement] = STATE(2003), - [sym_foreach_statement] = STATE(2003), - [sym_if_statement] = STATE(2003), - [sym_colon_block] = STATE(2509), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2003), - [sym_compound_statement] = STATE(2003), - [sym_named_label_statement] = STATE(2003), - [sym_expression_statement] = STATE(2003), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [15] = { + [sym_text_interpolation] = STATE(15), + [sym_empty_statement] = STATE(536), + [sym_function_static_declaration] = STATE(536), + [sym_global_declaration] = STATE(536), + [sym_namespace_definition] = STATE(536), + [sym_namespace_use_declaration] = STATE(536), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(536), + [sym_interface_declaration] = STATE(536), + [sym_enum_declaration] = STATE(536), + [sym_class_declaration] = STATE(536), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(536), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(536), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(536), + [sym_exit_statement] = STATE(536), + [sym_unset_statement] = STATE(536), + [sym_declare_statement] = STATE(536), + [sym_try_statement] = STATE(536), + [sym_goto_statement] = STATE(536), + [sym_continue_statement] = STATE(536), + [sym_break_statement] = STATE(536), + [sym_return_statement] = STATE(536), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(536), + [sym_do_statement] = STATE(536), + [sym_for_statement] = STATE(536), + [sym_foreach_statement] = STATE(536), + [sym_if_statement] = STATE(536), + [sym_colon_block] = STATE(2663), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(536), + [sym_compound_statement] = STATE(536), + [sym_named_label_statement] = STATE(536), + [sym_expression_statement] = STATE(536), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(441), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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), + [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(403), + [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), @@ -15296,25 +15895,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(278), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -15346,110 +15945,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(441), + [sym__automatic_semicolon] = ACTIONS(443), }, - [14] = { - [sym_text_interpolation] = STATE(14), - [sym_empty_statement] = STATE(516), - [sym_function_static_declaration] = STATE(516), - [sym_global_declaration] = STATE(516), - [sym_namespace_definition] = STATE(516), - [sym_namespace_use_declaration] = STATE(516), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(516), - [sym_interface_declaration] = STATE(516), - [sym_enum_declaration] = STATE(516), - [sym_class_declaration] = STATE(516), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(516), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(516), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(516), - [sym_exit_statement] = STATE(516), - [sym_unset_statement] = STATE(516), - [sym_declare_statement] = STATE(516), - [sym_try_statement] = STATE(516), - [sym_goto_statement] = STATE(516), - [sym_continue_statement] = STATE(516), - [sym_break_statement] = STATE(516), - [sym_return_statement] = STATE(516), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(516), - [sym_do_statement] = STATE(516), - [sym_for_statement] = STATE(516), - [sym_foreach_statement] = STATE(516), - [sym_if_statement] = STATE(516), - [sym_colon_block] = STATE(2566), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(516), - [sym_compound_statement] = STATE(516), - [sym_named_label_statement] = STATE(516), - [sym_expression_statement] = STATE(516), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [16] = { + [sym_text_interpolation] = STATE(16), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), + [ts_builtin_sym_end] = ACTIONS(455), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(381), + [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), @@ -15461,7 +16061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -15522,123 +16121,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(385), }, - [15] = { - [sym_text_interpolation] = STATE(15), - [sym_empty_statement] = STATE(2003), - [sym_function_static_declaration] = STATE(2003), - [sym_global_declaration] = STATE(2003), - [sym_namespace_definition] = STATE(2003), - [sym_namespace_use_declaration] = STATE(2003), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2003), - [sym_interface_declaration] = STATE(2003), - [sym_enum_declaration] = STATE(2003), - [sym_class_declaration] = STATE(2003), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2003), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2003), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2003), - [sym_exit_statement] = STATE(2003), - [sym_unset_statement] = STATE(2003), - [sym_declare_statement] = STATE(2003), - [sym_try_statement] = STATE(2003), - [sym_goto_statement] = STATE(2003), - [sym_continue_statement] = STATE(2003), - [sym_break_statement] = STATE(2003), - [sym_return_statement] = STATE(2003), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2003), - [sym_do_statement] = STATE(2003), - [sym_for_statement] = STATE(2003), - [sym_foreach_statement] = STATE(2003), - [sym_if_statement] = STATE(2003), - [sym_colon_block] = STATE(2509), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2003), - [sym_compound_statement] = STATE(2003), - [sym_named_label_statement] = STATE(2003), - [sym_expression_statement] = STATE(2003), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [17] = { + [sym_text_interpolation] = STATE(17), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(43), + [aux_sym_attribute_list_repeat1] = STATE(989), + [ts_builtin_sym_end] = ACTIONS(455), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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), + [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), @@ -15648,25 +16246,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(278), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -15698,107 +16296,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(441), }, - [16] = { - [sym_text_interpolation] = STATE(16), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [18] = { + [sym_text_interpolation] = STATE(18), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -15810,7 +16407,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(453), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -15839,6 +16435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(457), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -15875,120 +16472,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [17] = { - [sym_text_interpolation] = STATE(17), - [sym_empty_statement] = STATE(1988), - [sym_function_static_declaration] = STATE(1988), - [sym_global_declaration] = STATE(1988), - [sym_namespace_definition] = STATE(1988), - [sym_namespace_use_declaration] = STATE(1988), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(1988), - [sym_interface_declaration] = STATE(1988), - [sym_enum_declaration] = STATE(1988), - [sym_class_declaration] = STATE(1988), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(1988), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(1988), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1988), - [sym_exit_statement] = STATE(1988), - [sym_unset_statement] = STATE(1988), - [sym_declare_statement] = STATE(1988), - [sym_try_statement] = STATE(1988), - [sym_goto_statement] = STATE(1988), - [sym_continue_statement] = STATE(1988), - [sym_break_statement] = STATE(1988), - [sym_return_statement] = STATE(1988), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1988), - [sym_do_statement] = STATE(1988), - [sym_for_statement] = STATE(1988), - [sym_foreach_statement] = STATE(1988), - [sym_if_statement] = STATE(1988), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(1988), - [sym_compound_statement] = STATE(1988), - [sym_named_label_statement] = STATE(1988), - [sym_expression_statement] = STATE(1988), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(455), - [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), + [19] = { + [sym_text_interpolation] = STATE(19), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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(457), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(459), + [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), @@ -15998,25 +16596,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(278), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -16048,122 +16646,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(459), }, - [18] = { - [sym_text_interpolation] = STATE(18), - [sym_empty_statement] = STATE(1988), - [sym_function_static_declaration] = STATE(1988), - [sym_global_declaration] = STATE(1988), - [sym_namespace_definition] = STATE(1988), - [sym_namespace_use_declaration] = STATE(1988), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(1988), - [sym_interface_declaration] = STATE(1988), - [sym_enum_declaration] = STATE(1988), - [sym_class_declaration] = STATE(1988), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(1988), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(1988), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1988), - [sym_exit_statement] = STATE(1988), - [sym_unset_statement] = STATE(1988), - [sym_declare_statement] = STATE(1988), - [sym_try_statement] = STATE(1988), - [sym_goto_statement] = STATE(1988), - [sym_continue_statement] = STATE(1988), - [sym_break_statement] = STATE(1988), - [sym_return_statement] = STATE(1988), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1988), - [sym_do_statement] = STATE(1988), - [sym_for_statement] = STATE(1988), - [sym_foreach_statement] = STATE(1988), - [sym_if_statement] = STATE(1988), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(1988), - [sym_compound_statement] = STATE(1988), - [sym_named_label_statement] = STATE(1988), - [sym_expression_statement] = STATE(1988), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(455), - [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), + [20] = { + [sym_text_interpolation] = STATE(20), + [sym_empty_statement] = STATE(543), + [sym_function_static_declaration] = STATE(543), + [sym_global_declaration] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_namespace_use_declaration] = STATE(543), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(543), + [sym_interface_declaration] = STATE(543), + [sym_enum_declaration] = STATE(543), + [sym_class_declaration] = STATE(543), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(543), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(543), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(543), + [sym_exit_statement] = STATE(543), + [sym_unset_statement] = STATE(543), + [sym_declare_statement] = STATE(543), + [sym_try_statement] = STATE(543), + [sym_goto_statement] = STATE(543), + [sym_continue_statement] = STATE(543), + [sym_break_statement] = STATE(543), + [sym_return_statement] = STATE(543), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_foreach_statement] = STATE(543), + [sym_if_statement] = STATE(543), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(543), + [sym_compound_statement] = STATE(543), + [sym_named_label_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(461), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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(457), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [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(463), + [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), @@ -16173,200 +16770,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(373), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(459), - }, - [19] = { - [sym_text_interpolation] = STATE(19), - [sym_empty_statement] = STATE(2105), - [sym_function_static_declaration] = STATE(2105), - [sym_global_declaration] = STATE(2105), - [sym_namespace_definition] = STATE(2105), - [sym_namespace_use_declaration] = STATE(2105), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2105), - [sym_interface_declaration] = STATE(2105), - [sym_enum_declaration] = STATE(2105), - [sym_class_declaration] = STATE(2105), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2105), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2105), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2105), - [sym_exit_statement] = STATE(2105), - [sym_unset_statement] = STATE(2105), - [sym_declare_statement] = STATE(2105), - [sym_try_statement] = STATE(2105), - [sym_goto_statement] = STATE(2105), - [sym_continue_statement] = STATE(2105), - [sym_break_statement] = STATE(2105), - [sym_return_statement] = STATE(2105), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2105), - [sym_do_statement] = STATE(2105), - [sym_for_statement] = STATE(2105), - [sym_foreach_statement] = STATE(2105), - [sym_if_statement] = STATE(2105), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2105), - [sym_compound_statement] = STATE(2105), - [sym_named_label_statement] = STATE(2105), - [sym_expression_statement] = STATE(2105), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(461), - [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(463), - [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), - [aux_sym_visibility_modifier_token1] = ACTIONS(248), - [aux_sym_visibility_modifier_token2] = ACTIONS(248), - [aux_sym_visibility_modifier_token3] = ACTIONS(248), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [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(264), - [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(264), - [aux_sym_return_statement_token1] = ACTIONS(427), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [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(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -16400,280 +16822,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_grit_metavariable] = ACTIONS(338), [sym__automatic_semicolon] = ACTIONS(465), }, - [20] = { - [sym_text_interpolation] = STATE(20), - [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(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2075), - [sym_interface_declaration] = STATE(2075), - [sym_enum_declaration] = STATE(2075), - [sym_class_declaration] = STATE(2075), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2075), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2075), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2075), - [sym_exit_statement] = STATE(2075), - [sym_unset_statement] = STATE(2075), - [sym_declare_statement] = STATE(2075), - [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(1105), - [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(1142), - [sym_switch_statement] = STATE(2075), - [sym_compound_statement] = STATE(2075), - [sym_named_label_statement] = STATE(2075), - [sym_expression_statement] = STATE(2075), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(467), - [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(469), - [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), - [aux_sym_visibility_modifier_token1] = ACTIONS(248), - [aux_sym_visibility_modifier_token2] = ACTIONS(248), - [aux_sym_visibility_modifier_token3] = ACTIONS(248), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [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(264), - [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(264), - [aux_sym_return_statement_token1] = ACTIONS(427), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [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(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(471), - }, [21] = { [sym_text_interpolation] = STATE(21), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -16685,7 +16932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(467), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -16748,107 +16995,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(469), }, [22] = { [sym_text_interpolation] = STATE(22), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_attribute_list_repeat1] = STATE(978), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -16860,7 +17107,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(475), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -16889,6 +17135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(471), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -16927,119 +17174,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [23] = { [sym_text_interpolation] = STATE(23), - [sym_empty_statement] = STATE(2162), - [sym_function_static_declaration] = STATE(2162), - [sym_global_declaration] = STATE(2162), - [sym_namespace_definition] = STATE(2162), - [sym_namespace_use_declaration] = STATE(2162), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2162), - [sym_interface_declaration] = STATE(2162), - [sym_enum_declaration] = STATE(2162), - [sym_class_declaration] = STATE(2162), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2162), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2162), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2162), - [sym_exit_statement] = STATE(2162), - [sym_unset_statement] = STATE(2162), - [sym_declare_statement] = STATE(2162), - [sym_try_statement] = STATE(2162), - [sym_goto_statement] = STATE(2162), - [sym_continue_statement] = STATE(2162), - [sym_break_statement] = STATE(2162), - [sym_return_statement] = STATE(2162), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2162), - [sym_do_statement] = STATE(2162), - [sym_for_statement] = STATE(2162), - [sym_foreach_statement] = STATE(2162), - [sym_if_statement] = STATE(2162), - [sym_colon_block] = STATE(2547), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2162), - [sym_compound_statement] = STATE(2162), - [sym_named_label_statement] = STATE(2162), - [sym_expression_statement] = STATE(2162), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(477), - [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), + [sym_empty_statement] = STATE(2173), + [sym_function_static_declaration] = STATE(2173), + [sym_global_declaration] = STATE(2173), + [sym_namespace_definition] = STATE(2173), + [sym_namespace_use_declaration] = STATE(2173), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2173), + [sym_interface_declaration] = STATE(2173), + [sym_enum_declaration] = STATE(2173), + [sym_class_declaration] = STATE(2173), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2173), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2173), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2173), + [sym_exit_statement] = STATE(2173), + [sym_unset_statement] = STATE(2173), + [sym_declare_statement] = STATE(2173), + [sym_try_statement] = STATE(2173), + [sym_goto_statement] = STATE(2173), + [sym_continue_statement] = STATE(2173), + [sym_break_statement] = STATE(2173), + [sym_return_statement] = STATE(2173), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2173), + [sym_do_statement] = STATE(2173), + [sym_for_statement] = STATE(2173), + [sym_foreach_statement] = STATE(2173), + [sym_if_statement] = STATE(2173), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2173), + [sym_compound_statement] = STATE(2173), + [sym_named_label_statement] = STATE(2173), + [sym_expression_statement] = STATE(2173), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(473), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(475), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -17049,25 +17295,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -17098,123 +17344,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(477), }, [24] = { [sym_text_interpolation] = STATE(24), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(74), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_empty_statement] = STATE(2009), + [sym_function_static_declaration] = STATE(2009), + [sym_global_declaration] = STATE(2009), + [sym_namespace_definition] = STATE(2009), + [sym_namespace_use_declaration] = STATE(2009), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2009), + [sym_interface_declaration] = STATE(2009), + [sym_enum_declaration] = STATE(2009), + [sym_class_declaration] = STATE(2009), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2009), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2009), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2009), + [sym_exit_statement] = STATE(2009), + [sym_unset_statement] = STATE(2009), + [sym_declare_statement] = STATE(2009), + [sym_try_statement] = STATE(2009), + [sym_goto_statement] = STATE(2009), + [sym_continue_statement] = STATE(2009), + [sym_break_statement] = STATE(2009), + [sym_return_statement] = STATE(2009), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2009), + [sym_do_statement] = STATE(2009), + [sym_for_statement] = STATE(2009), + [sym_foreach_statement] = STATE(2009), + [sym_if_statement] = STATE(2009), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2009), + [sym_compound_statement] = STATE(2009), + [sym_named_label_statement] = STATE(2009), + [sym_expression_statement] = STATE(2009), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(479), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(479), - [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(481), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -17224,25 +17470,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -17273,284 +17519,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(483), }, [25] = { [sym_text_interpolation] = STATE(25), - [sym_empty_statement] = STATE(2162), - [sym_function_static_declaration] = STATE(2162), - [sym_global_declaration] = STATE(2162), - [sym_namespace_definition] = STATE(2162), - [sym_namespace_use_declaration] = STATE(2162), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2162), - [sym_interface_declaration] = STATE(2162), - [sym_enum_declaration] = STATE(2162), - [sym_class_declaration] = STATE(2162), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2162), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2162), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2162), - [sym_exit_statement] = STATE(2162), - [sym_unset_statement] = STATE(2162), - [sym_declare_statement] = STATE(2162), - [sym_try_statement] = STATE(2162), - [sym_goto_statement] = STATE(2162), - [sym_continue_statement] = STATE(2162), - [sym_break_statement] = STATE(2162), - [sym_return_statement] = STATE(2162), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2162), - [sym_do_statement] = STATE(2162), - [sym_for_statement] = STATE(2162), - [sym_foreach_statement] = STATE(2162), - [sym_if_statement] = STATE(2162), - [sym_colon_block] = STATE(2547), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2162), - [sym_compound_statement] = STATE(2162), - [sym_named_label_statement] = STATE(2162), - [sym_expression_statement] = STATE(2162), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(477), - [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), - [aux_sym_visibility_modifier_token1] = ACTIONS(248), - [aux_sym_visibility_modifier_token2] = ACTIONS(248), - [aux_sym_visibility_modifier_token3] = ACTIONS(248), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [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(264), - [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(264), - [aux_sym_return_statement_token1] = ACTIONS(427), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [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(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [26] = { - [sym_text_interpolation] = STATE(26), - [sym_empty_statement] = STATE(496), - [sym_function_static_declaration] = STATE(496), - [sym_global_declaration] = STATE(496), - [sym_namespace_definition] = STATE(496), - [sym_namespace_use_declaration] = STATE(496), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(496), - [sym_interface_declaration] = STATE(496), - [sym_enum_declaration] = STATE(496), - [sym_class_declaration] = STATE(496), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(496), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(496), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(496), - [sym_exit_statement] = STATE(496), - [sym_unset_statement] = STATE(496), - [sym_declare_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_foreach_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(496), - [sym_compound_statement] = STATE(496), - [sym_named_label_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(481), + [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), @@ -17562,7 +17635,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(483), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -17588,6 +17660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(485), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -17623,107 +17696,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(485), }, - [27] = { - [sym_text_interpolation] = STATE(27), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(46), - [aux_sym_attribute_list_repeat1] = STATE(978), + [26] = { + [sym_text_interpolation] = STATE(26), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -17752,7 +17824,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), [aux_sym_declare_statement_token1] = ACTIONS(262), - [aux_sym_declare_statement_token2] = ACTIONS(487), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -17764,6 +17835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(487), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -17800,105 +17872,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [28] = { - [sym_text_interpolation] = STATE(28), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(63), - [aux_sym_attribute_list_repeat1] = STATE(978), + [27] = { + [sym_text_interpolation] = STATE(27), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_attribute_list_repeat1] = STATE(989), [ts_builtin_sym_end] = ACTIONS(489), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), @@ -17975,105 +18047,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [29] = { - [sym_text_interpolation] = STATE(29), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [28] = { + [sym_text_interpolation] = STATE(28), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -18150,120 +18222,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, + [29] = { + [sym_text_interpolation] = STATE(29), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2089), + [sym_interface_declaration] = STATE(2089), + [sym_enum_declaration] = STATE(2089), + [sym_class_declaration] = STATE(2089), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2089), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2089), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [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(1184), + [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(2651), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2089), + [sym_compound_statement] = STATE(2089), + [sym_named_label_statement] = STATE(2089), + [sym_expression_statement] = STATE(2089), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(403), + [aux_sym_class_declaration_token1] = ACTIONS(405), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [aux_sym_visibility_modifier_token1] = ACTIONS(248), + [aux_sym_visibility_modifier_token2] = ACTIONS(248), + [aux_sym_visibility_modifier_token3] = ACTIONS(248), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), + [sym_float] = ACTIONS(264), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), + [sym_integer] = ACTIONS(264), + [aux_sym_return_statement_token1] = ACTIONS(423), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), + [aux_sym_match_expression_token1] = ACTIONS(288), + [aux_sym_switch_statement_token1] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(437), + }, [30] = { [sym_text_interpolation] = STATE(30), - [sym_empty_statement] = STATE(2045), - [sym_function_static_declaration] = STATE(2045), - [sym_global_declaration] = STATE(2045), - [sym_namespace_definition] = STATE(2045), - [sym_namespace_use_declaration] = STATE(2045), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2045), - [sym_interface_declaration] = STATE(2045), - [sym_enum_declaration] = STATE(2045), - [sym_class_declaration] = STATE(2045), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2045), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2045), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2045), - [sym_exit_statement] = STATE(2045), - [sym_unset_statement] = STATE(2045), - [sym_declare_statement] = STATE(2045), - [sym_try_statement] = STATE(2045), - [sym_goto_statement] = STATE(2045), - [sym_continue_statement] = STATE(2045), - [sym_break_statement] = STATE(2045), - [sym_return_statement] = STATE(2045), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2045), - [sym_do_statement] = STATE(2045), - [sym_for_statement] = STATE(2045), - [sym_foreach_statement] = STATE(2045), - [sym_if_statement] = STATE(2045), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2045), - [sym_compound_statement] = STATE(2045), - [sym_named_label_statement] = STATE(2045), - [sym_expression_statement] = STATE(2045), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), + [sym_empty_statement] = STATE(567), + [sym_function_static_declaration] = STATE(567), + [sym_global_declaration] = STATE(567), + [sym_namespace_definition] = STATE(567), + [sym_namespace_use_declaration] = STATE(567), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(567), + [sym_interface_declaration] = STATE(567), + [sym_enum_declaration] = STATE(567), + [sym_class_declaration] = STATE(567), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(567), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(567), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(567), + [sym_exit_statement] = STATE(567), + [sym_unset_statement] = STATE(567), + [sym_declare_statement] = STATE(567), + [sym_try_statement] = STATE(567), + [sym_goto_statement] = STATE(567), + [sym_continue_statement] = STATE(567), + [sym_break_statement] = STATE(567), + [sym_return_statement] = STATE(567), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(567), + [sym_do_statement] = STATE(567), + [sym_for_statement] = STATE(567), + [sym_foreach_statement] = STATE(567), + [sym_if_statement] = STATE(567), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(567), + [sym_compound_statement] = STATE(567), + [sym_named_label_statement] = STATE(567), + [sym_expression_statement] = STATE(567), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(493), - [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), + [anon_sym_SEMI] = ACTIONS(495), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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(495), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [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(497), + [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), @@ -18273,25 +18520,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(278), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -18323,107 +18570,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(497), + [sym__automatic_semicolon] = ACTIONS(499), }, [31] = { [sym_text_interpolation] = STATE(31), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_attribute_list_repeat1] = STATE(978), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(36), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -18463,7 +18710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(499), + [aux_sym_for_statement_token2] = ACTIONS(501), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -18502,103 +18749,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [32] = { [sym_text_interpolation] = STATE(32), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -18610,6 +18857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(503), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -18638,7 +18886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(499), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -18677,104 +18924,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [33] = { [sym_text_interpolation] = STATE(33), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [sym_empty_statement] = STATE(1665), + [sym_function_static_declaration] = STATE(1665), + [sym_global_declaration] = STATE(1665), + [sym_namespace_definition] = STATE(1665), + [sym_namespace_use_declaration] = STATE(1665), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(1665), + [sym_interface_declaration] = STATE(1665), + [sym_enum_declaration] = STATE(1665), + [sym_class_declaration] = STATE(1665), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(1665), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(1665), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(1665), + [sym_exit_statement] = STATE(1665), + [sym_unset_statement] = STATE(1665), + [sym_declare_statement] = STATE(1665), + [sym_try_statement] = STATE(1665), + [sym_goto_statement] = STATE(1665), + [sym_continue_statement] = STATE(1665), + [sym_break_statement] = STATE(1665), + [sym_return_statement] = STATE(1665), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(1665), + [sym_do_statement] = STATE(1665), + [sym_for_statement] = STATE(1665), + [sym_foreach_statement] = STATE(1665), + [sym_if_statement] = STATE(1665), + [sym_colon_block] = STATE(1673), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(1665), + [sym_compound_statement] = STATE(1665), + [sym_named_label_statement] = STATE(1665), + [sym_expression_statement] = STATE(1665), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(505), + [aux_sym_class_declaration_token1] = ACTIONS(405), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [aux_sym_visibility_modifier_token1] = ACTIONS(248), + [aux_sym_visibility_modifier_token2] = ACTIONS(248), + [aux_sym_visibility_modifier_token3] = ACTIONS(248), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), + [sym_float] = ACTIONS(264), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), + [sym_integer] = ACTIONS(264), + [aux_sym_return_statement_token1] = ACTIONS(423), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), + [aux_sym_match_expression_token1] = ACTIONS(288), + [aux_sym_switch_statement_token1] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(437), + }, + [34] = { + [sym_text_interpolation] = STATE(34), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), - [ts_builtin_sym_end] = ACTIONS(489), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -18814,6 +19235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(507), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -18850,107 +19272,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [34] = { - [sym_text_interpolation] = STATE(34), - [sym_empty_statement] = STATE(535), - [sym_function_static_declaration] = STATE(535), - [sym_global_declaration] = STATE(535), - [sym_namespace_definition] = STATE(535), - [sym_namespace_use_declaration] = STATE(535), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(535), - [sym_interface_declaration] = STATE(535), - [sym_enum_declaration] = STATE(535), - [sym_class_declaration] = STATE(535), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(535), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(535), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(535), - [sym_exit_statement] = STATE(535), - [sym_unset_statement] = STATE(535), - [sym_declare_statement] = STATE(535), - [sym_try_statement] = STATE(535), - [sym_goto_statement] = STATE(535), - [sym_continue_statement] = STATE(535), - [sym_break_statement] = STATE(535), - [sym_return_statement] = STATE(535), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(535), - [sym_do_statement] = STATE(535), - [sym_for_statement] = STATE(535), - [sym_foreach_statement] = STATE(535), - [sym_if_statement] = STATE(535), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(535), - [sym_compound_statement] = STATE(535), - [sym_named_label_statement] = STATE(535), - [sym_expression_statement] = STATE(535), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [35] = { + [sym_text_interpolation] = STATE(35), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(62), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(501), + [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), @@ -18962,7 +19385,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(503), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -18976,7 +19398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token2] = ACTIONS(509), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -18985,11 +19408,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -19023,107 +19446,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(505), }, - [35] = { - [sym_text_interpolation] = STATE(35), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_attribute_list_repeat1] = STATE(978), + [36] = { + [sym_text_interpolation] = STATE(36), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -19163,7 +19585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(507), + [aux_sym_for_statement_token2] = ACTIONS(511), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -19200,105 +19622,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [36] = { - [sym_text_interpolation] = STATE(36), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [37] = { + [sym_text_interpolation] = STATE(37), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(49), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -19338,7 +19760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(507), + [aux_sym_for_statement_token2] = ACTIONS(513), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -19375,107 +19797,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [37] = { - [sym_text_interpolation] = STATE(37), - [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(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(529), - [sym_interface_declaration] = STATE(529), - [sym_enum_declaration] = STATE(529), - [sym_class_declaration] = STATE(529), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(529), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(529), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [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(1105), - [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(1142), - [sym_switch_statement] = STATE(529), - [sym_compound_statement] = STATE(529), - [sym_named_label_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [38] = { + [sym_text_interpolation] = STATE(38), + [sym_empty_statement] = STATE(567), + [sym_function_static_declaration] = STATE(567), + [sym_global_declaration] = STATE(567), + [sym_namespace_definition] = STATE(567), + [sym_namespace_use_declaration] = STATE(567), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(567), + [sym_interface_declaration] = STATE(567), + [sym_enum_declaration] = STATE(567), + [sym_class_declaration] = STATE(567), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(567), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(567), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(567), + [sym_exit_statement] = STATE(567), + [sym_unset_statement] = STATE(567), + [sym_declare_statement] = STATE(567), + [sym_try_statement] = STATE(567), + [sym_goto_statement] = STATE(567), + [sym_continue_statement] = STATE(567), + [sym_break_statement] = STATE(567), + [sym_return_statement] = STATE(567), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(567), + [sym_do_statement] = STATE(567), + [sym_for_statement] = STATE(567), + [sym_foreach_statement] = STATE(567), + [sym_if_statement] = STATE(567), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(567), + [sym_compound_statement] = STATE(567), + [sym_named_label_statement] = STATE(567), + [sym_expression_statement] = STATE(567), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(495), [aux_sym_function_static_declaration_token1] = ACTIONS(214), [aux_sym_global_declaration_token1] = ACTIONS(216), [aux_sym_namespace_definition_token1] = ACTIONS(218), @@ -19487,7 +19909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(511), + [anon_sym_COLON] = ACTIONS(497), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -19501,7 +19923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -19510,11 +19932,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -19548,122 +19970,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(513), + [sym__automatic_semicolon] = ACTIONS(499), }, - [38] = { - [sym_text_interpolation] = STATE(38), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(36), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [39] = { + [sym_text_interpolation] = STATE(39), + [sym_empty_statement] = STATE(2124), + [sym_function_static_declaration] = STATE(2124), + [sym_global_declaration] = STATE(2124), + [sym_namespace_definition] = STATE(2124), + [sym_namespace_use_declaration] = STATE(2124), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2124), + [sym_interface_declaration] = STATE(2124), + [sym_enum_declaration] = STATE(2124), + [sym_class_declaration] = STATE(2124), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2124), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2124), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2124), + [sym_exit_statement] = STATE(2124), + [sym_unset_statement] = STATE(2124), + [sym_declare_statement] = STATE(2124), + [sym_try_statement] = STATE(2124), + [sym_goto_statement] = STATE(2124), + [sym_continue_statement] = STATE(2124), + [sym_break_statement] = STATE(2124), + [sym_return_statement] = STATE(2124), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2124), + [sym_do_statement] = STATE(2124), + [sym_for_statement] = STATE(2124), + [sym_foreach_statement] = STATE(2124), + [sym_if_statement] = STATE(2124), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2124), + [sym_compound_statement] = STATE(2124), + [sym_named_label_statement] = STATE(2124), + [sym_expression_statement] = STATE(2124), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(515), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(517), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -19673,26 +20095,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(515), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -19723,123 +20144,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(519), }, - [39] = { - [sym_text_interpolation] = STATE(39), - [sym_empty_statement] = STATE(1611), - [sym_function_static_declaration] = STATE(1611), - [sym_global_declaration] = STATE(1611), - [sym_namespace_definition] = STATE(1611), - [sym_namespace_use_declaration] = STATE(1611), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(1611), - [sym_interface_declaration] = STATE(1611), - [sym_enum_declaration] = STATE(1611), - [sym_class_declaration] = STATE(1611), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(1611), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(1611), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1611), - [sym_exit_statement] = STATE(1611), - [sym_unset_statement] = STATE(1611), - [sym_declare_statement] = STATE(1611), - [sym_try_statement] = STATE(1611), - [sym_goto_statement] = STATE(1611), - [sym_continue_statement] = STATE(1611), - [sym_break_statement] = STATE(1611), - [sym_return_statement] = STATE(1611), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1611), - [sym_do_statement] = STATE(1611), - [sym_for_statement] = STATE(1611), - [sym_foreach_statement] = STATE(1611), - [sym_if_statement] = STATE(1611), - [sym_colon_block] = STATE(1633), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(1611), - [sym_compound_statement] = STATE(1611), - [sym_named_label_statement] = STATE(1611), - [sym_expression_statement] = STATE(1611), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(477), - [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), + [40] = { + [sym_text_interpolation] = STATE(40), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(53), + [aux_sym_attribute_list_repeat1] = STATE(989), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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(517), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [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), @@ -19849,25 +20270,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(278), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(521), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -19900,105 +20322,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [40] = { - [sym_text_interpolation] = STATE(40), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [41] = { + [sym_text_interpolation] = STATE(41), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -20038,7 +20460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(515), + [aux_sym_for_statement_token2] = ACTIONS(523), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -20075,107 +20497,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [41] = { - [sym_text_interpolation] = STATE(41), - [sym_empty_statement] = STATE(555), - [sym_function_static_declaration] = STATE(555), - [sym_global_declaration] = STATE(555), - [sym_namespace_definition] = STATE(555), - [sym_namespace_use_declaration] = STATE(555), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(555), - [sym_interface_declaration] = STATE(555), - [sym_enum_declaration] = STATE(555), - [sym_class_declaration] = STATE(555), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(555), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(555), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(555), - [sym_exit_statement] = STATE(555), - [sym_unset_statement] = STATE(555), - [sym_declare_statement] = STATE(555), - [sym_try_statement] = STATE(555), - [sym_goto_statement] = STATE(555), - [sym_continue_statement] = STATE(555), - [sym_break_statement] = STATE(555), - [sym_return_statement] = STATE(555), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(555), - [sym_do_statement] = STATE(555), - [sym_for_statement] = STATE(555), - [sym_foreach_statement] = STATE(555), - [sym_if_statement] = STATE(555), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(555), - [sym_compound_statement] = STATE(555), - [sym_named_label_statement] = STATE(555), - [sym_expression_statement] = STATE(555), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [42] = { + [sym_text_interpolation] = STATE(42), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(495), + [sym_interface_declaration] = STATE(495), + [sym_enum_declaration] = STATE(495), + [sym_class_declaration] = STATE(495), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(495), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(495), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [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(1184), + [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_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(495), + [sym_compound_statement] = STATE(495), + [sym_named_label_statement] = STATE(495), + [sym_expression_statement] = STATE(495), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(525), [aux_sym_function_static_declaration_token1] = ACTIONS(214), [aux_sym_global_declaration_token1] = ACTIONS(216), [aux_sym_namespace_definition_token1] = ACTIONS(218), @@ -20187,7 +20609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(521), + [anon_sym_COLON] = ACTIONS(527), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -20201,7 +20623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -20210,11 +20632,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -20248,107 +20670,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(523), + [sym__automatic_semicolon] = ACTIONS(529), }, - [42] = { - [sym_text_interpolation] = STATE(42), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(40), - [aux_sym_attribute_list_repeat1] = STATE(978), + [43] = { + [sym_text_interpolation] = STATE(43), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), + [ts_builtin_sym_end] = ACTIONS(531), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -20388,7 +20811,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(525), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -20425,105 +20847,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [43] = { - [sym_text_interpolation] = STATE(43), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [44] = { + [sym_text_interpolation] = STATE(44), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -20535,6 +20957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(533), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -20552,7 +20975,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), [aux_sym_declare_statement_token1] = ACTIONS(262), - [aux_sym_declare_statement_token2] = ACTIONS(527), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -20600,107 +21022,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [44] = { - [sym_text_interpolation] = STATE(44), - [sym_empty_statement] = STATE(555), - [sym_function_static_declaration] = STATE(555), - [sym_global_declaration] = STATE(555), - [sym_namespace_definition] = STATE(555), - [sym_namespace_use_declaration] = STATE(555), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(555), - [sym_interface_declaration] = STATE(555), - [sym_enum_declaration] = STATE(555), - [sym_class_declaration] = STATE(555), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(555), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(555), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(555), - [sym_exit_statement] = STATE(555), - [sym_unset_statement] = STATE(555), - [sym_declare_statement] = STATE(555), - [sym_try_statement] = STATE(555), - [sym_goto_statement] = STATE(555), - [sym_continue_statement] = STATE(555), - [sym_break_statement] = STATE(555), - [sym_return_statement] = STATE(555), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(555), - [sym_do_statement] = STATE(555), - [sym_for_statement] = STATE(555), - [sym_foreach_statement] = STATE(555), - [sym_if_statement] = STATE(555), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(555), - [sym_compound_statement] = STATE(555), - [sym_named_label_statement] = STATE(555), - [sym_expression_statement] = STATE(555), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [45] = { + [sym_text_interpolation] = STATE(45), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2089), + [sym_interface_declaration] = STATE(2089), + [sym_enum_declaration] = STATE(2089), + [sym_class_declaration] = STATE(2089), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2089), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2089), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [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(1184), + [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(2651), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2089), + [sym_compound_statement] = STATE(2089), + [sym_named_label_statement] = STATE(2089), + [sym_expression_statement] = STATE(2089), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(403), + [aux_sym_class_declaration_token1] = ACTIONS(405), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [aux_sym_visibility_modifier_token1] = ACTIONS(248), + [aux_sym_visibility_modifier_token2] = ACTIONS(248), + [aux_sym_visibility_modifier_token3] = ACTIONS(248), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), + [sym_float] = ACTIONS(264), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), + [sym_integer] = ACTIONS(264), + [aux_sym_return_statement_token1] = ACTIONS(423), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), + [aux_sym_match_expression_token1] = ACTIONS(288), + [aux_sym_switch_statement_token1] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(437), + }, + [46] = { + [sym_text_interpolation] = STATE(46), + [sym_empty_statement] = STATE(543), + [sym_function_static_declaration] = STATE(543), + [sym_global_declaration] = STATE(543), + [sym_namespace_definition] = STATE(543), + [sym_namespace_use_declaration] = STATE(543), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(543), + [sym_interface_declaration] = STATE(543), + [sym_enum_declaration] = STATE(543), + [sym_class_declaration] = STATE(543), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(543), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(543), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(543), + [sym_exit_statement] = STATE(543), + [sym_unset_statement] = STATE(543), + [sym_declare_statement] = STATE(543), + [sym_try_statement] = STATE(543), + [sym_goto_statement] = STATE(543), + [sym_continue_statement] = STATE(543), + [sym_break_statement] = STATE(543), + [sym_return_statement] = STATE(543), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(543), + [sym_do_statement] = STATE(543), + [sym_for_statement] = STATE(543), + [sym_foreach_statement] = STATE(543), + [sym_if_statement] = STATE(543), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(543), + [sym_compound_statement] = STATE(543), + [sym_named_label_statement] = STATE(543), + [sym_expression_statement] = STATE(543), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(461), [aux_sym_function_static_declaration_token1] = ACTIONS(214), [aux_sym_global_declaration_token1] = ACTIONS(216), [aux_sym_namespace_definition_token1] = ACTIONS(218), @@ -20712,7 +21309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(521), + [anon_sym_COLON] = ACTIONS(463), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -20773,122 +21370,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(523), + [sym__automatic_semicolon] = ACTIONS(465), }, - [45] = { - [sym_text_interpolation] = STATE(45), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(210), + [47] = { + [sym_text_interpolation] = STATE(47), + [sym_empty_statement] = STATE(1677), + [sym_function_static_declaration] = STATE(1677), + [sym_global_declaration] = STATE(1677), + [sym_namespace_definition] = STATE(1677), + [sym_namespace_use_declaration] = STATE(1677), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(1677), + [sym_interface_declaration] = STATE(1677), + [sym_enum_declaration] = STATE(1677), + [sym_class_declaration] = STATE(1677), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(1677), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(1677), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(1677), + [sym_exit_statement] = STATE(1677), + [sym_unset_statement] = STATE(1677), + [sym_declare_statement] = STATE(1677), + [sym_try_statement] = STATE(1677), + [sym_goto_statement] = STATE(1677), + [sym_continue_statement] = STATE(1677), + [sym_break_statement] = STATE(1677), + [sym_return_statement] = STATE(1677), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(1677), + [sym_do_statement] = STATE(1677), + [sym_for_statement] = STATE(1677), + [sym_foreach_statement] = STATE(1677), + [sym_if_statement] = STATE(1677), + [sym_colon_block] = STATE(1673), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(1677), + [sym_compound_statement] = STATE(1677), + [sym_named_label_statement] = STATE(1677), + [sym_expression_statement] = STATE(1677), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), [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), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(505), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -20898,26 +21496,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(529), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -20948,107 +21545,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), }, - [46] = { - [sym_text_interpolation] = STATE(46), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [48] = { + [sym_text_interpolation] = STATE(48), + [sym_empty_statement] = STATE(2098), + [sym_function_static_declaration] = STATE(2098), + [sym_global_declaration] = STATE(2098), + [sym_namespace_definition] = STATE(2098), + [sym_namespace_use_declaration] = STATE(2098), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2098), + [sym_interface_declaration] = STATE(2098), + [sym_enum_declaration] = STATE(2098), + [sym_class_declaration] = STATE(2098), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2098), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2098), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2098), + [sym_exit_statement] = STATE(2098), + [sym_unset_statement] = STATE(2098), + [sym_declare_statement] = STATE(2098), + [sym_try_statement] = STATE(2098), + [sym_goto_statement] = STATE(2098), + [sym_continue_statement] = STATE(2098), + [sym_break_statement] = STATE(2098), + [sym_return_statement] = STATE(2098), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2098), + [sym_do_statement] = STATE(2098), + [sym_for_statement] = STATE(2098), + [sym_foreach_statement] = STATE(2098), + [sym_if_statement] = STATE(2098), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2098), + [sym_compound_statement] = STATE(2098), + [sym_named_label_statement] = STATE(2098), + [sym_expression_statement] = STATE(2098), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), + [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(537), + [aux_sym_class_declaration_token1] = ACTIONS(405), + [aux_sym_final_modifier_token1] = ACTIONS(242), + [aux_sym_abstract_modifier_token1] = ACTIONS(244), + [aux_sym_readonly_modifier_token1] = ACTIONS(246), + [aux_sym_visibility_modifier_token1] = ACTIONS(248), + [aux_sym_visibility_modifier_token2] = ACTIONS(248), + [aux_sym_visibility_modifier_token3] = ACTIONS(248), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), + [sym_float] = ACTIONS(264), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), + [sym_integer] = ACTIONS(264), + [aux_sym_return_statement_token1] = ACTIONS(423), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), + [aux_sym_match_expression_token1] = ACTIONS(288), + [aux_sym_switch_statement_token1] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(539), + }, + [49] = { + [sym_text_interpolation] = STATE(49), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -21077,7 +21849,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), [aux_sym_declare_statement_token1] = ACTIONS(262), - [aux_sym_declare_statement_token2] = ACTIONS(531), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -21089,6 +21860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(541), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -21125,105 +21897,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [47] = { - [sym_text_interpolation] = STATE(47), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [50] = { + [sym_text_interpolation] = STATE(50), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(64), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -21235,6 +22007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(543), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -21263,7 +22036,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(533), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -21298,109 +22070,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(545), }, - [48] = { - [sym_text_interpolation] = STATE(48), - [sym_empty_statement] = STATE(496), - [sym_function_static_declaration] = STATE(496), - [sym_global_declaration] = STATE(496), - [sym_namespace_definition] = STATE(496), - [sym_namespace_use_declaration] = STATE(496), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(496), - [sym_interface_declaration] = STATE(496), - [sym_enum_declaration] = STATE(496), - [sym_class_declaration] = STATE(496), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(496), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(496), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(496), - [sym_exit_statement] = STATE(496), - [sym_unset_statement] = STATE(496), - [sym_declare_statement] = STATE(496), - [sym_try_statement] = STATE(496), - [sym_goto_statement] = STATE(496), - [sym_continue_statement] = STATE(496), - [sym_break_statement] = STATE(496), - [sym_return_statement] = STATE(496), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(496), - [sym_do_statement] = STATE(496), - [sym_for_statement] = STATE(496), - [sym_foreach_statement] = STATE(496), - [sym_if_statement] = STATE(496), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(496), - [sym_compound_statement] = STATE(496), - [sym_named_label_statement] = STATE(496), - [sym_expression_statement] = STATE(496), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [51] = { + [sym_text_interpolation] = STATE(51), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(44), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(481), + [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), @@ -21409,10 +22182,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(547), [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(483), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -21426,7 +22199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -21435,11 +22208,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -21472,111 +22245,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(485), + [sym_grit_metavariable] = ACTIONS(549), }, - [49] = { - [sym_text_interpolation] = STATE(49), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_attribute_list_repeat1] = STATE(978), + [52] = { + [sym_text_interpolation] = STATE(52), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [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(1184), + [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(1128), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_SEMI] = ACTIONS(551), [aux_sym_function_static_declaration_token1] = ACTIONS(214), [aux_sym_global_declaration_token1] = ACTIONS(216), [aux_sym_namespace_definition_token1] = ACTIONS(218), @@ -21588,6 +22359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(553), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -21601,8 +22373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), - [aux_sym_declare_statement_token2] = ACTIONS(535), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -21611,11 +22382,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -21649,108 +22420,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), + [sym__automatic_semicolon] = ACTIONS(555), }, - [50] = { - [sym_text_interpolation] = STATE(50), - [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(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(484), - [sym_interface_declaration] = STATE(484), - [sym_enum_declaration] = STATE(484), - [sym_class_declaration] = STATE(484), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(484), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(484), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [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(1105), - [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(1142), - [sym_switch_statement] = STATE(484), - [sym_compound_statement] = STATE(484), - [sym_named_label_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [53] = { + [sym_text_interpolation] = STATE(53), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(537), + [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), @@ -21762,7 +22535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(539), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -21788,6 +22560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(557), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -21823,107 +22596,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(541), }, - [51] = { - [sym_text_interpolation] = STATE(51), - [sym_empty_statement] = STATE(426), - [sym_function_static_declaration] = STATE(426), - [sym_global_declaration] = STATE(426), - [sym_namespace_definition] = STATE(426), - [sym_namespace_use_declaration] = STATE(426), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(426), - [sym_interface_declaration] = STATE(426), - [sym_enum_declaration] = STATE(426), - [sym_class_declaration] = STATE(426), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(426), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(426), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(426), - [sym_exit_statement] = STATE(426), - [sym_unset_statement] = STATE(426), - [sym_declare_statement] = STATE(426), - [sym_try_statement] = STATE(426), - [sym_goto_statement] = STATE(426), - [sym_continue_statement] = STATE(426), - [sym_break_statement] = STATE(426), - [sym_return_statement] = STATE(426), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(426), - [sym_do_statement] = STATE(426), - [sym_for_statement] = STATE(426), - [sym_foreach_statement] = STATE(426), - [sym_if_statement] = STATE(426), - [sym_colon_block] = STATE(1639), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(426), - [sym_compound_statement] = STATE(426), - [sym_named_label_statement] = STATE(426), - [sym_expression_statement] = STATE(426), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [54] = { + [sym_text_interpolation] = STATE(54), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(511), + [sym_interface_declaration] = STATE(511), + [sym_enum_declaration] = STATE(511), + [sym_class_declaration] = STATE(511), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(511), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(511), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [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(1184), + [sym_while_statement] = STATE(511), + [sym_do_statement] = STATE(511), + [sym_for_statement] = STATE(511), + [sym_foreach_statement] = STATE(511), + [sym_if_statement] = STATE(511), + [sym_colon_block] = STATE(2599), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(511), + [sym_compound_statement] = STATE(511), + [sym_named_label_statement] = STATE(511), + [sym_expression_statement] = STATE(511), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -21938,7 +22710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(517), + [anon_sym_COLON] = ACTIONS(403), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -21952,7 +22724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -21961,11 +22733,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -22000,105 +22772,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [52] = { - [sym_text_interpolation] = STATE(52), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(59), - [aux_sym_attribute_list_repeat1] = STATE(978), + [55] = { + [sym_text_interpolation] = STATE(55), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -22110,7 +22882,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(543), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -22139,6 +22910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(559), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -22175,108 +22947,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [53] = { - [sym_text_interpolation] = STATE(53), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_attribute_list_repeat1] = STATE(978), + [56] = { + [sym_text_interpolation] = STATE(56), + [sym_empty_statement] = STATE(526), + [sym_function_static_declaration] = STATE(526), + [sym_global_declaration] = STATE(526), + [sym_namespace_definition] = STATE(526), + [sym_namespace_use_declaration] = STATE(526), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(526), + [sym_interface_declaration] = STATE(526), + [sym_enum_declaration] = STATE(526), + [sym_class_declaration] = STATE(526), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(526), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(526), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(526), + [sym_exit_statement] = STATE(526), + [sym_unset_statement] = STATE(526), + [sym_declare_statement] = STATE(526), + [sym_try_statement] = STATE(526), + [sym_goto_statement] = STATE(526), + [sym_continue_statement] = STATE(526), + [sym_break_statement] = STATE(526), + [sym_return_statement] = STATE(526), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(526), + [sym_do_statement] = STATE(526), + [sym_for_statement] = STATE(526), + [sym_foreach_statement] = STATE(526), + [sym_if_statement] = STATE(526), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(526), + [sym_compound_statement] = STATE(526), + [sym_named_label_statement] = STATE(526), + [sym_expression_statement] = STATE(526), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_SEMI] = ACTIONS(561), [aux_sym_function_static_declaration_token1] = ACTIONS(214), [aux_sym_global_declaration_token1] = ACTIONS(216), [aux_sym_namespace_definition_token1] = ACTIONS(218), @@ -22285,10 +23056,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_COLON] = ACTIONS(563), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -22302,7 +23073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -22311,11 +23082,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -22349,106 +23120,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), + [sym__automatic_semicolon] = ACTIONS(565), }, - [54] = { - [sym_text_interpolation] = STATE(54), - [sym_empty_statement] = STATE(482), - [sym_function_static_declaration] = STATE(482), - [sym_global_declaration] = STATE(482), - [sym_namespace_definition] = STATE(482), - [sym_namespace_use_declaration] = STATE(482), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(482), - [sym_interface_declaration] = STATE(482), - [sym_enum_declaration] = STATE(482), - [sym_class_declaration] = STATE(482), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(482), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(482), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(482), - [sym_exit_statement] = STATE(482), - [sym_unset_statement] = STATE(482), - [sym_declare_statement] = STATE(482), - [sym_try_statement] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_continue_statement] = STATE(482), - [sym_break_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_foreach_statement] = STATE(482), - [sym_if_statement] = STATE(482), - [sym_colon_block] = STATE(2559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(482), - [sym_compound_statement] = STATE(482), - [sym_named_label_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [57] = { + [sym_text_interpolation] = STATE(57), + [sym_empty_statement] = STATE(427), + [sym_function_static_declaration] = STATE(427), + [sym_global_declaration] = STATE(427), + [sym_namespace_definition] = STATE(427), + [sym_namespace_use_declaration] = STATE(427), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(427), + [sym_interface_declaration] = STATE(427), + [sym_enum_declaration] = STATE(427), + [sym_class_declaration] = STATE(427), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(427), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(427), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(427), + [sym_exit_statement] = STATE(427), + [sym_unset_statement] = STATE(427), + [sym_declare_statement] = STATE(427), + [sym_try_statement] = STATE(427), + [sym_goto_statement] = STATE(427), + [sym_continue_statement] = STATE(427), + [sym_break_statement] = STATE(427), + [sym_return_statement] = STATE(427), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(427), + [sym_do_statement] = STATE(427), + [sym_for_statement] = STATE(427), + [sym_foreach_statement] = STATE(427), + [sym_if_statement] = STATE(427), + [sym_colon_block] = STATE(1718), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(427), + [sym_compound_statement] = STATE(427), + [sym_named_label_statement] = STATE(427), + [sym_expression_statement] = STATE(427), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -22463,7 +23235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_COLON] = ACTIONS(505), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -22477,7 +23249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -22486,11 +23258,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -22525,121 +23297,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [55] = { - [sym_text_interpolation] = STATE(55), - [sym_empty_statement] = STATE(1630), - [sym_function_static_declaration] = STATE(1630), - [sym_global_declaration] = STATE(1630), - [sym_namespace_definition] = STATE(1630), - [sym_namespace_use_declaration] = STATE(1630), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(1630), - [sym_interface_declaration] = STATE(1630), - [sym_enum_declaration] = STATE(1630), - [sym_class_declaration] = STATE(1630), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(1630), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(1630), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1630), - [sym_exit_statement] = STATE(1630), - [sym_unset_statement] = STATE(1630), - [sym_declare_statement] = STATE(1630), - [sym_try_statement] = STATE(1630), - [sym_goto_statement] = STATE(1630), - [sym_continue_statement] = STATE(1630), - [sym_break_statement] = STATE(1630), - [sym_return_statement] = STATE(1630), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1630), - [sym_do_statement] = STATE(1630), - [sym_for_statement] = STATE(1630), - [sym_foreach_statement] = STATE(1630), - [sym_if_statement] = STATE(1630), - [sym_colon_block] = STATE(1633), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(1630), - [sym_compound_statement] = STATE(1630), - [sym_named_label_statement] = STATE(1630), - [sym_expression_statement] = STATE(1630), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(477), - [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), + [58] = { + [sym_text_interpolation] = STATE(58), + [sym_empty_statement] = STATE(526), + [sym_function_static_declaration] = STATE(526), + [sym_global_declaration] = STATE(526), + [sym_namespace_definition] = STATE(526), + [sym_namespace_use_declaration] = STATE(526), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(526), + [sym_interface_declaration] = STATE(526), + [sym_enum_declaration] = STATE(526), + [sym_class_declaration] = STATE(526), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(526), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(526), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(526), + [sym_exit_statement] = STATE(526), + [sym_unset_statement] = STATE(526), + [sym_declare_statement] = STATE(526), + [sym_try_statement] = STATE(526), + [sym_goto_statement] = STATE(526), + [sym_continue_statement] = STATE(526), + [sym_break_statement] = STATE(526), + [sym_return_statement] = STATE(526), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(526), + [sym_do_statement] = STATE(526), + [sym_for_statement] = STATE(526), + [sym_foreach_statement] = STATE(526), + [sym_if_statement] = STATE(526), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(526), + [sym_compound_statement] = STATE(526), + [sym_named_label_statement] = STATE(526), + [sym_expression_statement] = STATE(526), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(561), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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(517), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [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(563), + [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), @@ -22649,25 +23420,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(278), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -22699,121 +23470,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), + [sym__automatic_semicolon] = ACTIONS(565), }, - [56] = { - [sym_text_interpolation] = STATE(56), - [sym_empty_statement] = STATE(2045), - [sym_function_static_declaration] = STATE(2045), - [sym_global_declaration] = STATE(2045), - [sym_namespace_definition] = STATE(2045), - [sym_namespace_use_declaration] = STATE(2045), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2045), - [sym_interface_declaration] = STATE(2045), - [sym_enum_declaration] = STATE(2045), - [sym_class_declaration] = STATE(2045), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2045), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2045), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2045), - [sym_exit_statement] = STATE(2045), - [sym_unset_statement] = STATE(2045), - [sym_declare_statement] = STATE(2045), - [sym_try_statement] = STATE(2045), - [sym_goto_statement] = STATE(2045), - [sym_continue_statement] = STATE(2045), - [sym_break_statement] = STATE(2045), - [sym_return_statement] = STATE(2045), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2045), - [sym_do_statement] = STATE(2045), - [sym_for_statement] = STATE(2045), - [sym_foreach_statement] = STATE(2045), - [sym_if_statement] = STATE(2045), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2045), - [sym_compound_statement] = STATE(2045), - [sym_named_label_statement] = STATE(2045), - [sym_expression_statement] = STATE(2045), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(493), - [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), + [59] = { + [sym_text_interpolation] = STATE(59), + [sym_empty_statement] = STATE(2009), + [sym_function_static_declaration] = STATE(2009), + [sym_global_declaration] = STATE(2009), + [sym_namespace_definition] = STATE(2009), + [sym_namespace_use_declaration] = STATE(2009), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2009), + [sym_interface_declaration] = STATE(2009), + [sym_enum_declaration] = STATE(2009), + [sym_class_declaration] = STATE(2009), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2009), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2009), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2009), + [sym_exit_statement] = STATE(2009), + [sym_unset_statement] = STATE(2009), + [sym_declare_statement] = STATE(2009), + [sym_try_statement] = STATE(2009), + [sym_goto_statement] = STATE(2009), + [sym_continue_statement] = STATE(2009), + [sym_break_statement] = STATE(2009), + [sym_return_statement] = STATE(2009), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2009), + [sym_do_statement] = STATE(2009), + [sym_for_statement] = STATE(2009), + [sym_foreach_statement] = STATE(2009), + [sym_if_statement] = STATE(2009), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2009), + [sym_compound_statement] = STATE(2009), + [sym_named_label_statement] = STATE(2009), + [sym_expression_statement] = STATE(2009), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(479), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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(495), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(481), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -22823,25 +23595,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -22872,110 +23644,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(497), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(483), }, - [57] = { - [sym_text_interpolation] = STATE(57), - [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(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(529), - [sym_interface_declaration] = STATE(529), - [sym_enum_declaration] = STATE(529), - [sym_class_declaration] = STATE(529), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(529), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(529), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [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(1105), - [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(1142), - [sym_switch_statement] = STATE(529), - [sym_compound_statement] = STATE(529), - [sym_named_label_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [60] = { + [sym_text_interpolation] = STATE(60), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(509), + [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), @@ -22987,7 +23760,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(511), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -23013,6 +23785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(567), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -23048,122 +23821,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(513), }, - [58] = { - [sym_text_interpolation] = STATE(58), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(69), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(210), + [61] = { + [sym_text_interpolation] = STATE(61), + [sym_empty_statement] = STATE(2033), + [sym_function_static_declaration] = STATE(2033), + [sym_global_declaration] = STATE(2033), + [sym_namespace_definition] = STATE(2033), + [sym_namespace_use_declaration] = STATE(2033), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2033), + [sym_interface_declaration] = STATE(2033), + [sym_enum_declaration] = STATE(2033), + [sym_class_declaration] = STATE(2033), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2033), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2033), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2033), + [sym_exit_statement] = STATE(2033), + [sym_unset_statement] = STATE(2033), + [sym_declare_statement] = STATE(2033), + [sym_try_statement] = STATE(2033), + [sym_goto_statement] = STATE(2033), + [sym_continue_statement] = STATE(2033), + [sym_break_statement] = STATE(2033), + [sym_return_statement] = STATE(2033), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2033), + [sym_do_statement] = STATE(2033), + [sym_for_statement] = STATE(2033), + [sym_foreach_statement] = STATE(2033), + [sym_if_statement] = STATE(2033), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2033), + [sym_compound_statement] = STATE(2033), + [sym_named_label_statement] = STATE(2033), + [sym_expression_statement] = STATE(2033), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), [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), + [anon_sym_SEMI] = ACTIONS(569), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(571), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -23173,26 +23945,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(547), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -23223,107 +23994,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(573), }, - [59] = { - [sym_text_interpolation] = STATE(59), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [62] = { + [sym_text_interpolation] = STATE(62), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -23335,7 +24107,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(549), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -23353,6 +24124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token2] = ACTIONS(575), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -23400,106 +24172,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [60] = { - [sym_text_interpolation] = STATE(60), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(33), - [aux_sym_attribute_list_repeat1] = STATE(978), - [ts_builtin_sym_end] = ACTIONS(551), + [63] = { + [sym_text_interpolation] = STATE(63), + [sym_empty_statement] = STATE(426), + [sym_function_static_declaration] = STATE(426), + [sym_global_declaration] = STATE(426), + [sym_namespace_definition] = STATE(426), + [sym_namespace_use_declaration] = STATE(426), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(426), + [sym_interface_declaration] = STATE(426), + [sym_enum_declaration] = STATE(426), + [sym_class_declaration] = STATE(426), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(426), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(426), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(426), + [sym_exit_statement] = STATE(426), + [sym_unset_statement] = STATE(426), + [sym_declare_statement] = STATE(426), + [sym_try_statement] = STATE(426), + [sym_goto_statement] = STATE(426), + [sym_continue_statement] = STATE(426), + [sym_break_statement] = STATE(426), + [sym_return_statement] = STATE(426), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(426), + [sym_do_statement] = STATE(426), + [sym_for_statement] = STATE(426), + [sym_foreach_statement] = STATE(426), + [sym_if_statement] = STATE(426), + [sym_colon_block] = STATE(1718), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(426), + [sym_compound_statement] = STATE(426), + [sym_named_label_statement] = STATE(426), + [sym_expression_statement] = STATE(426), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -23514,6 +24285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(505), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -23527,7 +24299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -23536,11 +24308,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -23575,107 +24347,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [61] = { - [sym_text_interpolation] = STATE(61), - [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(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(484), - [sym_interface_declaration] = STATE(484), - [sym_enum_declaration] = STATE(484), - [sym_class_declaration] = STATE(484), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(484), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(484), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [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(1105), - [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(1142), - [sym_switch_statement] = STATE(484), - [sym_compound_statement] = STATE(484), - [sym_named_label_statement] = STATE(484), - [sym_expression_statement] = STATE(484), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [64] = { + [sym_text_interpolation] = STATE(64), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(537), + [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), @@ -23684,10 +24457,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(577), [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(539), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -23701,7 +24474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -23710,11 +24483,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -23748,122 +24521,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(541), }, - [62] = { - [sym_text_interpolation] = STATE(62), - [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(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2075), - [sym_interface_declaration] = STATE(2075), - [sym_enum_declaration] = STATE(2075), - [sym_class_declaration] = STATE(2075), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2075), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2075), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2075), - [sym_exit_statement] = STATE(2075), - [sym_unset_statement] = STATE(2075), - [sym_declare_statement] = STATE(2075), - [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(1105), - [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(1142), - [sym_switch_statement] = STATE(2075), - [sym_compound_statement] = STATE(2075), - [sym_named_label_statement] = STATE(2075), - [sym_expression_statement] = STATE(2075), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(467), - [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), + [65] = { + [sym_text_interpolation] = STATE(65), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(485), + [sym_interface_declaration] = STATE(485), + [sym_enum_declaration] = STATE(485), + [sym_class_declaration] = STATE(485), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(485), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(485), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_unset_statement] = STATE(485), + [sym_declare_statement] = STATE(485), + [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(1184), + [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(1128), + [sym_switch_statement] = STATE(485), + [sym_compound_statement] = STATE(485), + [sym_named_label_statement] = STATE(485), + [sym_expression_statement] = STATE(485), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(210), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(551), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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(469), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [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(553), + [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), @@ -23873,25 +24645,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(278), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -23923,108 +24695,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(471), + [sym__automatic_semicolon] = ACTIONS(555), }, - [63] = { - [sym_text_interpolation] = STATE(63), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), + [66] = { + [sym_text_interpolation] = STATE(66), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), - [ts_builtin_sym_end] = ACTIONS(553), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -24053,6 +24824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token2] = ACTIONS(579), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -24100,105 +24872,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [64] = { - [sym_text_interpolation] = STATE(64), - [sym_empty_statement] = STATE(482), - [sym_function_static_declaration] = STATE(482), - [sym_global_declaration] = STATE(482), - [sym_namespace_definition] = STATE(482), - [sym_namespace_use_declaration] = STATE(482), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(482), - [sym_interface_declaration] = STATE(482), - [sym_enum_declaration] = STATE(482), - [sym_class_declaration] = STATE(482), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(482), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(482), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(482), - [sym_exit_statement] = STATE(482), - [sym_unset_statement] = STATE(482), - [sym_declare_statement] = STATE(482), - [sym_try_statement] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym_continue_statement] = STATE(482), - [sym_break_statement] = STATE(482), - [sym_return_statement] = STATE(482), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(482), - [sym_do_statement] = STATE(482), - [sym_for_statement] = STATE(482), - [sym_foreach_statement] = STATE(482), - [sym_if_statement] = STATE(482), - [sym_colon_block] = STATE(2559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(482), - [sym_compound_statement] = STATE(482), - [sym_named_label_statement] = STATE(482), - [sym_expression_statement] = STATE(482), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [67] = { + [sym_text_interpolation] = STATE(67), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(511), + [sym_interface_declaration] = STATE(511), + [sym_enum_declaration] = STATE(511), + [sym_class_declaration] = STATE(511), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(511), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(511), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [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(1184), + [sym_while_statement] = STATE(511), + [sym_do_statement] = STATE(511), + [sym_for_statement] = STATE(511), + [sym_foreach_statement] = STATE(511), + [sym_if_statement] = STATE(511), + [sym_colon_block] = STATE(2599), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(511), + [sym_compound_statement] = STATE(511), + [sym_named_label_statement] = STATE(511), + [sym_expression_statement] = STATE(511), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -24213,7 +24985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_COLON] = ACTIONS(403), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -24227,7 +24999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -24236,11 +25008,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -24275,120 +25047,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [65] = { - [sym_text_interpolation] = STATE(65), - [sym_empty_statement] = STATE(1953), - [sym_function_static_declaration] = STATE(1953), - [sym_global_declaration] = STATE(1953), - [sym_namespace_definition] = STATE(1953), - [sym_namespace_use_declaration] = STATE(1953), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(1953), - [sym_interface_declaration] = STATE(1953), - [sym_enum_declaration] = STATE(1953), - [sym_class_declaration] = STATE(1953), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(1953), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(1953), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1953), - [sym_exit_statement] = STATE(1953), - [sym_unset_statement] = STATE(1953), - [sym_declare_statement] = STATE(1953), - [sym_try_statement] = STATE(1953), - [sym_goto_statement] = STATE(1953), - [sym_continue_statement] = STATE(1953), - [sym_break_statement] = STATE(1953), - [sym_return_statement] = STATE(1953), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1953), - [sym_do_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_foreach_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_named_label_statement] = STATE(1953), - [sym_expression_statement] = STATE(1953), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(555), - [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), + [68] = { + [sym_text_interpolation] = STATE(68), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_attribute_list_repeat1] = STATE(989), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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(557), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [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), @@ -24398,25 +25170,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(278), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_for_statement_token2] = ACTIONS(581), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -24448,107 +25221,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(559), }, - [66] = { - [sym_text_interpolation] = STATE(66), - [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(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(425), - [sym_interface_declaration] = STATE(425), - [sym_enum_declaration] = STATE(425), - [sym_class_declaration] = STATE(425), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(425), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(425), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [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(1105), - [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(1639), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(425), - [sym_compound_statement] = STATE(425), - [sym_named_label_statement] = STATE(425), - [sym_expression_statement] = STATE(425), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [69] = { + [sym_text_interpolation] = STATE(69), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(66), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -24563,7 +25335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(517), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -24577,7 +25348,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token2] = ACTIONS(583), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -24586,11 +25358,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), + [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -24625,120 +25397,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [67] = { - [sym_text_interpolation] = STATE(67), - [sym_empty_statement] = STATE(1953), - [sym_function_static_declaration] = STATE(1953), - [sym_global_declaration] = STATE(1953), - [sym_namespace_definition] = STATE(1953), - [sym_namespace_use_declaration] = STATE(1953), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(1953), - [sym_interface_declaration] = STATE(1953), - [sym_enum_declaration] = STATE(1953), - [sym_class_declaration] = STATE(1953), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(1953), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(1953), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1953), - [sym_exit_statement] = STATE(1953), - [sym_unset_statement] = STATE(1953), - [sym_declare_statement] = STATE(1953), - [sym_try_statement] = STATE(1953), - [sym_goto_statement] = STATE(1953), - [sym_continue_statement] = STATE(1953), - [sym_break_statement] = STATE(1953), - [sym_return_statement] = STATE(1953), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1953), - [sym_do_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_foreach_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_named_label_statement] = STATE(1953), - [sym_expression_statement] = STATE(1953), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(555), - [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), + [70] = { + [sym_text_interpolation] = STATE(70), + [sym_empty_statement] = STATE(2033), + [sym_function_static_declaration] = STATE(2033), + [sym_global_declaration] = STATE(2033), + [sym_namespace_definition] = STATE(2033), + [sym_namespace_use_declaration] = STATE(2033), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2033), + [sym_interface_declaration] = STATE(2033), + [sym_enum_declaration] = STATE(2033), + [sym_class_declaration] = STATE(2033), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2033), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2033), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2033), + [sym_exit_statement] = STATE(2033), + [sym_unset_statement] = STATE(2033), + [sym_declare_statement] = STATE(2033), + [sym_try_statement] = STATE(2033), + [sym_goto_statement] = STATE(2033), + [sym_continue_statement] = STATE(2033), + [sym_break_statement] = STATE(2033), + [sym_return_statement] = STATE(2033), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2033), + [sym_do_statement] = STATE(2033), + [sym_for_statement] = STATE(2033), + [sym_foreach_statement] = STATE(2033), + [sym_if_statement] = STATE(2033), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2033), + [sym_compound_statement] = STATE(2033), + [sym_named_label_statement] = STATE(2033), + [sym_expression_statement] = STATE(2033), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(569), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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(557), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(571), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -24748,25 +25520,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -24797,123 +25569,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(559), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(573), }, - [68] = { - [sym_text_interpolation] = STATE(68), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [71] = { + [sym_text_interpolation] = STATE(71), + [sym_empty_statement] = STATE(2098), + [sym_function_static_declaration] = STATE(2098), + [sym_global_declaration] = STATE(2098), + [sym_namespace_definition] = STATE(2098), + [sym_namespace_use_declaration] = STATE(2098), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2098), + [sym_interface_declaration] = STATE(2098), + [sym_enum_declaration] = STATE(2098), + [sym_class_declaration] = STATE(2098), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2098), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2098), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2098), + [sym_exit_statement] = STATE(2098), + [sym_unset_statement] = STATE(2098), + [sym_declare_statement] = STATE(2098), + [sym_try_statement] = STATE(2098), + [sym_goto_statement] = STATE(2098), + [sym_continue_statement] = STATE(2098), + [sym_break_statement] = STATE(2098), + [sym_return_statement] = STATE(2098), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2098), + [sym_do_statement] = STATE(2098), + [sym_for_statement] = STATE(2098), + [sym_foreach_statement] = STATE(2098), + [sym_if_statement] = STATE(2098), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2098), + [sym_compound_statement] = STATE(2098), + [sym_named_label_statement] = STATE(2098), + [sym_expression_statement] = STATE(2098), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(535), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(537), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -24923,26 +25695,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(547), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -24973,107 +25744,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(539), }, - [69] = { - [sym_text_interpolation] = STATE(69), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [72] = { + [sym_text_interpolation] = STATE(72), + [sym_empty_statement] = STATE(471), + [sym_function_static_declaration] = STATE(471), + [sym_global_declaration] = STATE(471), + [sym_namespace_definition] = STATE(471), + [sym_namespace_use_declaration] = STATE(471), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(471), + [sym_interface_declaration] = STATE(471), + [sym_enum_declaration] = STATE(471), + [sym_class_declaration] = STATE(471), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(471), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(471), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(471), + [sym_exit_statement] = STATE(471), + [sym_unset_statement] = STATE(471), + [sym_declare_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_goto_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_foreach_statement] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(471), + [sym_compound_statement] = STATE(471), + [sym_named_label_statement] = STATE(471), + [sym_expression_statement] = STATE(471), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -25085,6 +25857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(585), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -25113,7 +25886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_while_statement_token1] = ACTIONS(278), [aux_sym_do_statement_token1] = ACTIONS(280), [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(561), [aux_sym_foreach_statement_token1] = ACTIONS(284), [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), @@ -25148,122 +25920,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(587), }, - [70] = { - [sym_text_interpolation] = STATE(70), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(73), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [73] = { + [sym_text_interpolation] = STATE(73), + [sym_empty_statement] = STATE(2173), + [sym_function_static_declaration] = STATE(2173), + [sym_global_declaration] = STATE(2173), + [sym_namespace_definition] = STATE(2173), + [sym_namespace_use_declaration] = STATE(2173), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2173), + [sym_interface_declaration] = STATE(2173), + [sym_enum_declaration] = STATE(2173), + [sym_class_declaration] = STATE(2173), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2173), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2173), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2173), + [sym_exit_statement] = STATE(2173), + [sym_unset_statement] = STATE(2173), + [sym_declare_statement] = STATE(2173), + [sym_try_statement] = STATE(2173), + [sym_goto_statement] = STATE(2173), + [sym_continue_statement] = STATE(2173), + [sym_break_statement] = STATE(2173), + [sym_return_statement] = STATE(2173), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2173), + [sym_do_statement] = STATE(2173), + [sym_for_statement] = STATE(2173), + [sym_foreach_statement] = STATE(2173), + [sym_if_statement] = STATE(2173), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2173), + [sym_compound_statement] = STATE(2173), + [sym_named_label_statement] = STATE(2173), + [sym_expression_statement] = STATE(2173), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(473), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(475), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -25273,26 +26045,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(561), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -25323,122 +26094,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(477), }, - [71] = { - [sym_text_interpolation] = STATE(71), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(47), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [74] = { + [sym_text_interpolation] = STATE(74), + [sym_empty_statement] = STATE(2124), + [sym_function_static_declaration] = STATE(2124), + [sym_global_declaration] = STATE(2124), + [sym_namespace_definition] = STATE(2124), + [sym_namespace_use_declaration] = STATE(2124), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2124), + [sym_interface_declaration] = STATE(2124), + [sym_enum_declaration] = STATE(2124), + [sym_class_declaration] = STATE(2124), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2124), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2124), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2124), + [sym_exit_statement] = STATE(2124), + [sym_unset_statement] = STATE(2124), + [sym_declare_statement] = STATE(2124), + [sym_try_statement] = STATE(2124), + [sym_goto_statement] = STATE(2124), + [sym_continue_statement] = STATE(2124), + [sym_break_statement] = STATE(2124), + [sym_return_statement] = STATE(2124), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2124), + [sym_do_statement] = STATE(2124), + [sym_for_statement] = STATE(2124), + [sym_foreach_statement] = STATE(2124), + [sym_if_statement] = STATE(2124), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2124), + [sym_compound_statement] = STATE(2124), + [sym_named_label_statement] = STATE(2124), + [sym_expression_statement] = STATE(2124), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(515), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(517), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -25448,26 +26220,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(563), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -25498,109 +26269,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), + [sym__automatic_semicolon] = ACTIONS(519), }, - [72] = { - [sym_text_interpolation] = STATE(72), - [sym_empty_statement] = STATE(535), - [sym_function_static_declaration] = STATE(535), - [sym_global_declaration] = STATE(535), - [sym_namespace_definition] = STATE(535), - [sym_namespace_use_declaration] = STATE(535), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(535), - [sym_interface_declaration] = STATE(535), - [sym_enum_declaration] = STATE(535), - [sym_class_declaration] = STATE(535), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(535), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(535), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(535), - [sym_exit_statement] = STATE(535), - [sym_unset_statement] = STATE(535), - [sym_declare_statement] = STATE(535), - [sym_try_statement] = STATE(535), - [sym_goto_statement] = STATE(535), - [sym_continue_statement] = STATE(535), - [sym_break_statement] = STATE(535), - [sym_return_statement] = STATE(535), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(535), - [sym_do_statement] = STATE(535), - [sym_for_statement] = STATE(535), - [sym_foreach_statement] = STATE(535), - [sym_if_statement] = STATE(535), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(535), - [sym_compound_statement] = STATE(535), - [sym_named_label_statement] = STATE(535), - [sym_expression_statement] = STATE(535), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), + [75] = { + [sym_text_interpolation] = STATE(75), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(495), + [sym_interface_declaration] = STATE(495), + [sym_enum_declaration] = STATE(495), + [sym_class_declaration] = STATE(495), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(495), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(495), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [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(1184), + [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_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(495), + [sym_compound_statement] = STATE(495), + [sym_named_label_statement] = STATE(495), + [sym_expression_statement] = STATE(495), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(525), [aux_sym_function_static_declaration_token1] = ACTIONS(214), [aux_sym_global_declaration_token1] = ACTIONS(216), [aux_sym_namespace_definition_token1] = ACTIONS(218), @@ -25612,7 +26384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(503), + [anon_sym_COLON] = ACTIONS(527), [aux_sym_class_declaration_token1] = ACTIONS(240), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), @@ -25626,7 +26398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -25635,11 +26407,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -25673,107 +26445,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(505), + [sym__automatic_semicolon] = ACTIONS(529), }, - [73] = { - [sym_text_interpolation] = STATE(73), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [76] = { + [sym_text_interpolation] = STATE(76), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(491), + [sym_interface_declaration] = STATE(491), + [sym_enum_declaration] = STATE(491), + [sym_class_declaration] = STATE(491), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(491), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(491), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [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(1184), + [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_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(491), + [sym_compound_statement] = STATE(491), + [sym_named_label_statement] = STATE(491), + [sym_expression_statement] = STATE(491), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -25801,7 +26572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -25810,12 +26581,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_for_statement_token2] = ACTIONS(563), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -25850,105 +26620,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [74] = { - [sym_text_interpolation] = STATE(74), - [sym_empty_statement] = STATE(559), - [sym_function_static_declaration] = STATE(559), - [sym_global_declaration] = STATE(559), - [sym_namespace_definition] = STATE(559), - [sym_namespace_use_declaration] = STATE(559), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(559), - [sym_interface_declaration] = STATE(559), - [sym_enum_declaration] = STATE(559), - [sym_class_declaration] = STATE(559), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(559), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(559), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(559), - [sym_exit_statement] = STATE(559), - [sym_unset_statement] = STATE(559), - [sym_declare_statement] = STATE(559), - [sym_try_statement] = STATE(559), - [sym_goto_statement] = STATE(559), - [sym_continue_statement] = STATE(559), - [sym_break_statement] = STATE(559), - [sym_return_statement] = STATE(559), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(559), - [sym_do_statement] = STATE(559), - [sym_for_statement] = STATE(559), - [sym_foreach_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(559), - [sym_compound_statement] = STATE(559), - [sym_named_label_statement] = STATE(559), - [sym_expression_statement] = STATE(559), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_program_repeat1] = STATE(2), - [aux_sym_attribute_list_repeat1] = STATE(978), + [77] = { + [sym_text_interpolation] = STATE(77), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(508), + [sym_interface_declaration] = STATE(508), + [sym_enum_declaration] = STATE(508), + [sym_class_declaration] = STATE(508), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(508), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(508), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [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(1184), + [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(1128), + [sym_switch_statement] = STATE(508), + [sym_compound_statement] = STATE(508), + [sym_named_label_statement] = STATE(508), + [sym_expression_statement] = STATE(508), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), [sym_name] = ACTIONS(210), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(212), @@ -25960,7 +26729,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [anon_sym_BSLASH] = ACTIONS(226), [anon_sym_LBRACE] = ACTIONS(228), - [anon_sym_RBRACE] = ACTIONS(565), [aux_sym_trait_declaration_token1] = ACTIONS(232), [aux_sym_interface_declaration_token1] = ACTIONS(234), [aux_sym_enum_declaration_token1] = ACTIONS(236), @@ -25977,7 +26745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_echo_statement_token1] = ACTIONS(256), [aux_sym_exit_statement_token1] = ACTIONS(258), [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), + [aux_sym_declare_statement_token1] = ACTIONS(371), [sym_float] = ACTIONS(264), [aux_sym_try_statement_token1] = ACTIONS(266), [aux_sym_goto_statement_token1] = ACTIONS(268), @@ -25986,11 +26754,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(264), [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), + [aux_sym_while_statement_token1] = ACTIONS(373), [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), + [aux_sym_for_statement_token1] = ACTIONS(375), + [aux_sym_foreach_statement_token1] = ACTIONS(377), + [aux_sym_if_statement_token1] = ACTIONS(379), [aux_sym_match_expression_token1] = ACTIONS(288), [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), @@ -26025,120 +26793,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(338), }, - [75] = { - [sym_text_interpolation] = STATE(75), - [sym_empty_statement] = STATE(2105), - [sym_function_static_declaration] = STATE(2105), - [sym_global_declaration] = STATE(2105), - [sym_namespace_definition] = STATE(2105), - [sym_namespace_use_declaration] = STATE(2105), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2105), - [sym_interface_declaration] = STATE(2105), - [sym_enum_declaration] = STATE(2105), - [sym_class_declaration] = STATE(2105), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2105), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2105), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2105), - [sym_exit_statement] = STATE(2105), - [sym_unset_statement] = STATE(2105), - [sym_declare_statement] = STATE(2105), - [sym_try_statement] = STATE(2105), - [sym_goto_statement] = STATE(2105), - [sym_continue_statement] = STATE(2105), - [sym_break_statement] = STATE(2105), - [sym_return_statement] = STATE(2105), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2105), - [sym_do_statement] = STATE(2105), - [sym_for_statement] = STATE(2105), - [sym_foreach_statement] = STATE(2105), - [sym_if_statement] = STATE(2105), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2105), - [sym_compound_statement] = STATE(2105), - [sym_named_label_statement] = STATE(2105), - [sym_expression_statement] = STATE(2105), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), + [78] = { + [sym_text_interpolation] = STATE(78), + [sym_empty_statement] = STATE(2591), + [sym_function_static_declaration] = STATE(2591), + [sym_global_declaration] = STATE(2591), + [sym_namespace_definition] = STATE(2591), + [sym_namespace_use_declaration] = STATE(2591), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2591), + [sym_interface_declaration] = STATE(2591), + [sym_enum_declaration] = STATE(2591), + [sym_class_declaration] = STATE(2591), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2591), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2591), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2591), + [sym_exit_statement] = STATE(2591), + [sym_unset_statement] = STATE(2591), + [sym_declare_statement] = STATE(2591), + [sym_try_statement] = STATE(2591), + [sym_goto_statement] = STATE(2591), + [sym_continue_statement] = STATE(2591), + [sym_break_statement] = STATE(2591), + [sym_return_statement] = STATE(2591), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2591), + [sym_do_statement] = STATE(2591), + [sym_for_statement] = STATE(2591), + [sym_foreach_statement] = STATE(2591), + [sym_if_statement] = STATE(2591), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2591), + [sym_compound_statement] = STATE(2591), + [sym_named_label_statement] = STATE(2591), + [sym_expression_statement] = STATE(2591), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(461), - [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), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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(463), - [aux_sym_class_declaration_token1] = ACTIONS(409), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -26148,25 +26915,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -26197,122 +26964,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(465), + [sym_grit_metavariable] = ACTIONS(437), }, - [76] = { - [sym_text_interpolation] = STATE(76), - [sym_empty_statement] = STATE(490), - [sym_function_static_declaration] = STATE(490), - [sym_global_declaration] = STATE(490), - [sym_namespace_definition] = STATE(490), - [sym_namespace_use_declaration] = STATE(490), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(490), - [sym_interface_declaration] = STATE(490), - [sym_enum_declaration] = STATE(490), - [sym_class_declaration] = STATE(490), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(490), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(490), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(490), - [sym_exit_statement] = STATE(490), - [sym_unset_statement] = STATE(490), - [sym_declare_statement] = STATE(490), - [sym_try_statement] = STATE(490), - [sym_goto_statement] = STATE(490), - [sym_continue_statement] = STATE(490), - [sym_break_statement] = STATE(490), - [sym_return_statement] = STATE(490), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(490), - [sym_do_statement] = STATE(490), - [sym_for_statement] = STATE(490), - [sym_foreach_statement] = STATE(490), - [sym_if_statement] = STATE(490), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(490), - [sym_compound_statement] = STATE(490), - [sym_named_label_statement] = STATE(490), - [sym_expression_statement] = STATE(490), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(210), + [79] = { + [sym_text_interpolation] = STATE(79), + [sym_empty_statement] = STATE(2611), + [sym_function_static_declaration] = STATE(2611), + [sym_global_declaration] = STATE(2611), + [sym_namespace_definition] = STATE(2611), + [sym_namespace_use_declaration] = STATE(2611), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2611), + [sym_interface_declaration] = STATE(2611), + [sym_enum_declaration] = STATE(2611), + [sym_class_declaration] = STATE(2611), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2611), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2611), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2611), + [sym_exit_statement] = STATE(2611), + [sym_unset_statement] = STATE(2611), + [sym_declare_statement] = STATE(2611), + [sym_try_statement] = STATE(2611), + [sym_goto_statement] = STATE(2611), + [sym_continue_statement] = STATE(2611), + [sym_break_statement] = STATE(2611), + [sym_return_statement] = STATE(2611), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2611), + [sym_do_statement] = STATE(2611), + [sym_for_statement] = STATE(2611), + [sym_foreach_statement] = STATE(2611), + [sym_if_statement] = STATE(2611), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2611), + [sym_compound_statement] = STATE(2611), + [sym_named_label_statement] = STATE(2611), + [sym_expression_statement] = STATE(2611), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), [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), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -26322,25 +27088,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -26371,640 +27137,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [77] = { - [sym_text_interpolation] = STATE(77), - [sym_empty_statement] = STATE(467), - [sym_function_static_declaration] = STATE(467), - [sym_global_declaration] = STATE(467), - [sym_namespace_definition] = STATE(467), - [sym_namespace_use_declaration] = STATE(467), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(467), - [sym_interface_declaration] = STATE(467), - [sym_enum_declaration] = STATE(467), - [sym_class_declaration] = STATE(467), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(467), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(467), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(467), - [sym_exit_statement] = STATE(467), - [sym_unset_statement] = STATE(467), - [sym_declare_statement] = STATE(467), - [sym_try_statement] = STATE(467), - [sym_goto_statement] = STATE(467), - [sym_continue_statement] = STATE(467), - [sym_break_statement] = STATE(467), - [sym_return_statement] = STATE(467), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(467), - [sym_do_statement] = STATE(467), - [sym_for_statement] = STATE(467), - [sym_foreach_statement] = STATE(467), - [sym_if_statement] = STATE(467), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(467), - [sym_compound_statement] = STATE(467), - [sym_named_label_statement] = STATE(467), - [sym_expression_statement] = STATE(467), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), - [aux_sym_visibility_modifier_token1] = ACTIONS(248), - [aux_sym_visibility_modifier_token2] = ACTIONS(248), - [aux_sym_visibility_modifier_token3] = ACTIONS(248), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(262), - [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), - [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(278), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(282), - [aux_sym_foreach_statement_token1] = ACTIONS(284), - [aux_sym_if_statement_token1] = ACTIONS(286), - [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [78] = { - [sym_text_interpolation] = STATE(78), - [sym_empty_statement] = STATE(2584), - [sym_function_static_declaration] = STATE(2584), - [sym_global_declaration] = STATE(2584), - [sym_namespace_definition] = STATE(2584), - [sym_namespace_use_declaration] = STATE(2584), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2584), - [sym_interface_declaration] = STATE(2584), - [sym_enum_declaration] = STATE(2584), - [sym_class_declaration] = STATE(2584), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2584), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2584), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2584), - [sym_exit_statement] = STATE(2584), - [sym_unset_statement] = STATE(2584), - [sym_declare_statement] = STATE(2584), - [sym_try_statement] = STATE(2584), - [sym_goto_statement] = STATE(2584), - [sym_continue_statement] = STATE(2584), - [sym_break_statement] = STATE(2584), - [sym_return_statement] = STATE(2584), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2584), - [sym_do_statement] = STATE(2584), - [sym_for_statement] = STATE(2584), - [sym_foreach_statement] = STATE(2584), - [sym_if_statement] = STATE(2584), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2584), - [sym_compound_statement] = STATE(2584), - [sym_named_label_statement] = STATE(2584), - [sym_expression_statement] = STATE(2584), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(477), - [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), - [aux_sym_visibility_modifier_token1] = ACTIONS(248), - [aux_sym_visibility_modifier_token2] = ACTIONS(248), - [aux_sym_visibility_modifier_token3] = ACTIONS(248), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [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(264), - [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(264), - [aux_sym_return_statement_token1] = ACTIONS(427), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [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(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [79] = { - [sym_text_interpolation] = STATE(79), - [sym_empty_statement] = STATE(2497), - [sym_function_static_declaration] = STATE(2497), - [sym_global_declaration] = STATE(2497), - [sym_namespace_definition] = STATE(2497), - [sym_namespace_use_declaration] = STATE(2497), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2497), - [sym_interface_declaration] = STATE(2497), - [sym_enum_declaration] = STATE(2497), - [sym_class_declaration] = STATE(2497), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2497), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2497), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2497), - [sym_exit_statement] = STATE(2497), - [sym_unset_statement] = STATE(2497), - [sym_declare_statement] = STATE(2497), - [sym_try_statement] = STATE(2497), - [sym_goto_statement] = STATE(2497), - [sym_continue_statement] = STATE(2497), - [sym_break_statement] = STATE(2497), - [sym_return_statement] = STATE(2497), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2497), - [sym_do_statement] = STATE(2497), - [sym_for_statement] = STATE(2497), - [sym_foreach_statement] = STATE(2497), - [sym_if_statement] = STATE(2497), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2497), - [sym_compound_statement] = STATE(2497), - [sym_named_label_statement] = STATE(2497), - [sym_expression_statement] = STATE(2497), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(477), - [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), - [aux_sym_visibility_modifier_token1] = ACTIONS(248), - [aux_sym_visibility_modifier_token2] = ACTIONS(248), - [aux_sym_visibility_modifier_token3] = ACTIONS(248), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [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(264), - [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(264), - [aux_sym_return_statement_token1] = ACTIONS(427), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [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(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), }, [80] = { [sym_text_interpolation] = STATE(80), - [sym_empty_statement] = STATE(2081), - [sym_function_static_declaration] = STATE(2081), - [sym_global_declaration] = STATE(2081), - [sym_namespace_definition] = STATE(2081), - [sym_namespace_use_declaration] = STATE(2081), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2081), - [sym_interface_declaration] = STATE(2081), - [sym_enum_declaration] = STATE(2081), - [sym_class_declaration] = STATE(2081), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2081), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2081), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2081), - [sym_exit_statement] = STATE(2081), - [sym_unset_statement] = STATE(2081), - [sym_declare_statement] = STATE(2081), - [sym_try_statement] = STATE(2081), - [sym_goto_statement] = STATE(2081), - [sym_continue_statement] = STATE(2081), - [sym_break_statement] = STATE(2081), - [sym_return_statement] = STATE(2081), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2081), - [sym_do_statement] = STATE(2081), - [sym_for_statement] = STATE(2081), - [sym_foreach_statement] = STATE(2081), - [sym_if_statement] = STATE(2081), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2081), - [sym_compound_statement] = STATE(2081), - [sym_named_label_statement] = STATE(2081), - [sym_expression_statement] = STATE(2081), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(477), - [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), + [sym_empty_statement] = STATE(2242), + [sym_function_static_declaration] = STATE(2242), + [sym_global_declaration] = STATE(2242), + [sym_namespace_definition] = STATE(2242), + [sym_namespace_use_declaration] = STATE(2242), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2242), + [sym_interface_declaration] = STATE(2242), + [sym_enum_declaration] = STATE(2242), + [sym_class_declaration] = STATE(2242), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2242), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2242), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2242), + [sym_exit_statement] = STATE(2242), + [sym_unset_statement] = STATE(2242), + [sym_declare_statement] = STATE(2242), + [sym_try_statement] = STATE(2242), + [sym_goto_statement] = STATE(2242), + [sym_continue_statement] = STATE(2242), + [sym_break_statement] = STATE(2242), + [sym_return_statement] = STATE(2242), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2242), + [sym_do_statement] = STATE(2242), + [sym_for_statement] = STATE(2242), + [sym_foreach_statement] = STATE(2242), + [sym_if_statement] = STATE(2242), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2242), + [sym_compound_statement] = STATE(2242), + [sym_named_label_statement] = STATE(2242), + [sym_expression_statement] = STATE(2242), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -27014,25 +27261,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(413), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(425), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(429), + [aux_sym_foreach_statement_token1] = ACTIONS(431), + [aux_sym_if_statement_token1] = ACTIONS(433), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -27063,121 +27310,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), }, [81] = { [sym_text_interpolation] = STATE(81), - [sym_empty_statement] = STATE(1958), - [sym_function_static_declaration] = STATE(1958), - [sym_global_declaration] = STATE(1958), - [sym_namespace_definition] = STATE(1958), - [sym_namespace_use_declaration] = STATE(1958), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(1958), - [sym_interface_declaration] = STATE(1958), - [sym_enum_declaration] = STATE(1958), - [sym_class_declaration] = STATE(1958), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(1958), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(1958), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(1958), - [sym_exit_statement] = STATE(1958), - [sym_unset_statement] = STATE(1958), - [sym_declare_statement] = STATE(1958), - [sym_try_statement] = STATE(1958), - [sym_goto_statement] = STATE(1958), - [sym_continue_statement] = STATE(1958), - [sym_break_statement] = STATE(1958), - [sym_return_statement] = STATE(1958), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(1958), - [sym_do_statement] = STATE(1958), - [sym_for_statement] = STATE(1958), - [sym_foreach_statement] = STATE(1958), - [sym_if_statement] = STATE(1958), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(1958), - [sym_compound_statement] = STATE(1958), - [sym_named_label_statement] = STATE(1958), - [sym_expression_statement] = STATE(1958), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(477), - [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), + [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(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(508), + [sym_interface_declaration] = STATE(508), + [sym_enum_declaration] = STATE(508), + [sym_class_declaration] = STATE(508), + [sym_final_modifier] = STATE(2156), + [sym_abstract_modifier] = STATE(2156), + [sym_readonly_modifier] = STATE(2695), + [sym_const_declaration] = STATE(508), + [sym__const_declaration] = STATE(473), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2693), + [sym_function_definition] = STATE(508), + [sym__function_definition_header] = STATE(2317), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [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(1184), + [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(1128), + [sym_switch_statement] = STATE(508), + [sym_compound_statement] = STATE(508), + [sym_named_label_statement] = STATE(508), + [sym_expression_statement] = STATE(508), + [sym__expression] = STATE(1266), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1442), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [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(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), [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), + [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), @@ -27187,25 +27434,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(256), + [aux_sym_exit_statement_token1] = ACTIONS(258), + [anon_sym_unset] = ACTIONS(260), + [aux_sym_declare_statement_token1] = ACTIONS(262), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(266), + [aux_sym_goto_statement_token1] = ACTIONS(268), + [aux_sym_continue_statement_token1] = ACTIONS(270), + [aux_sym_break_statement_token1] = ACTIONS(272), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(274), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(278), + [aux_sym_do_statement_token1] = ACTIONS(280), + [aux_sym_for_statement_token1] = ACTIONS(282), + [aux_sym_foreach_statement_token1] = ACTIONS(284), + [aux_sym_if_statement_token1] = ACTIONS(286), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(290), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -27240,117 +27487,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [82] = { [sym_text_interpolation] = STATE(82), - [sym_empty_statement] = STATE(2081), - [sym_function_static_declaration] = STATE(2081), - [sym_global_declaration] = STATE(2081), - [sym_namespace_definition] = STATE(2081), - [sym_namespace_use_declaration] = STATE(2081), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(2081), - [sym_interface_declaration] = STATE(2081), - [sym_enum_declaration] = STATE(2081), - [sym_class_declaration] = STATE(2081), - [sym_final_modifier] = STATE(1959), - [sym_abstract_modifier] = STATE(1959), - [sym_readonly_modifier] = STATE(2578), - [sym_const_declaration] = STATE(2081), - [sym__const_declaration] = STATE(2056), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2579), - [sym_function_definition] = STATE(2081), - [sym__function_definition_header] = STATE(2430), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(2081), - [sym_exit_statement] = STATE(2081), - [sym_unset_statement] = STATE(2081), - [sym_declare_statement] = STATE(2081), - [sym_try_statement] = STATE(2081), - [sym_goto_statement] = STATE(2081), - [sym_continue_statement] = STATE(2081), - [sym_break_statement] = STATE(2081), - [sym_return_statement] = STATE(2081), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(2081), - [sym_do_statement] = STATE(2081), - [sym_for_statement] = STATE(2081), - [sym_foreach_statement] = STATE(2081), - [sym_if_statement] = STATE(2081), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(2081), - [sym_compound_statement] = STATE(2081), - [sym_named_label_statement] = STATE(2081), - [sym_expression_statement] = STATE(2081), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1395), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(387), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(477), - [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), + [sym_empty_statement] = STATE(2242), + [sym_function_static_declaration] = STATE(2242), + [sym_global_declaration] = STATE(2242), + [sym_namespace_definition] = STATE(2242), + [sym_namespace_use_declaration] = STATE(2242), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2242), + [sym_interface_declaration] = STATE(2242), + [sym_enum_declaration] = STATE(2242), + [sym_class_declaration] = STATE(2242), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2242), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2242), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2242), + [sym_exit_statement] = STATE(2242), + [sym_unset_statement] = STATE(2242), + [sym_declare_statement] = STATE(2242), + [sym_try_statement] = STATE(2242), + [sym_goto_statement] = STATE(2242), + [sym_continue_statement] = STATE(2242), + [sym_break_statement] = STATE(2242), + [sym_return_statement] = STATE(2242), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2242), + [sym_do_statement] = STATE(2242), + [sym_for_statement] = STATE(2242), + [sym_foreach_statement] = STATE(2242), + [sym_if_statement] = STATE(2242), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2242), + [sym_compound_statement] = STATE(2242), + [sym_named_label_statement] = STATE(2242), + [sym_expression_statement] = STATE(2242), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(399), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -27360,25 +27607,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [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), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), [sym_float] = ACTIONS(264), - [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), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(427), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [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_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(439), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -27409,121 +27656,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), }, [83] = { [sym_text_interpolation] = STATE(83), - [sym_empty_statement] = STATE(467), - [sym_function_static_declaration] = STATE(467), - [sym_global_declaration] = STATE(467), - [sym_namespace_definition] = STATE(467), - [sym_namespace_use_declaration] = STATE(467), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_trait_declaration] = STATE(467), - [sym_interface_declaration] = STATE(467), - [sym_enum_declaration] = STATE(467), - [sym_class_declaration] = STATE(467), - [sym_final_modifier] = STATE(1950), - [sym_abstract_modifier] = STATE(1950), - [sym_readonly_modifier] = STATE(2597), - [sym_const_declaration] = STATE(467), - [sym__const_declaration] = STATE(553), - [sym_static_modifier] = STATE(2596), - [sym_visibility_modifier] = STATE(2582), - [sym_function_definition] = STATE(467), - [sym__function_definition_header] = STATE(2281), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_echo_statement] = STATE(467), - [sym_exit_statement] = STATE(467), - [sym_unset_statement] = STATE(467), - [sym_declare_statement] = STATE(467), - [sym_try_statement] = STATE(467), - [sym_goto_statement] = STATE(467), - [sym_continue_statement] = STATE(467), - [sym_break_statement] = STATE(467), - [sym_return_statement] = STATE(467), - [sym_throw_expression] = STATE(1105), - [sym_while_statement] = STATE(467), - [sym_do_statement] = STATE(467), - [sym_for_statement] = STATE(467), - [sym_foreach_statement] = STATE(467), - [sym_if_statement] = STATE(467), - [sym_match_expression] = STATE(1142), - [sym_switch_statement] = STATE(467), - [sym_compound_statement] = STATE(467), - [sym_named_label_statement] = STATE(467), - [sym_expression_statement] = STATE(467), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1393), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(210), + [sym_empty_statement] = STATE(2166), + [sym_function_static_declaration] = STATE(2166), + [sym_global_declaration] = STATE(2166), + [sym_namespace_definition] = STATE(2166), + [sym_namespace_use_declaration] = STATE(2166), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_trait_declaration] = STATE(2166), + [sym_interface_declaration] = STATE(2166), + [sym_enum_declaration] = STATE(2166), + [sym_class_declaration] = STATE(2166), + [sym_final_modifier] = STATE(2130), + [sym_abstract_modifier] = STATE(2130), + [sym_readonly_modifier] = STATE(2646), + [sym_const_declaration] = STATE(2166), + [sym__const_declaration] = STATE(2182), + [sym_static_modifier] = STATE(2694), + [sym_visibility_modifier] = STATE(2647), + [sym_function_definition] = STATE(2166), + [sym__function_definition_header] = STATE(2505), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_echo_statement] = STATE(2166), + [sym_exit_statement] = STATE(2166), + [sym_unset_statement] = STATE(2166), + [sym_declare_statement] = STATE(2166), + [sym_try_statement] = STATE(2166), + [sym_goto_statement] = STATE(2166), + [sym_continue_statement] = STATE(2166), + [sym_break_statement] = STATE(2166), + [sym_return_statement] = STATE(2166), + [sym_throw_expression] = STATE(1184), + [sym_while_statement] = STATE(2166), + [sym_do_statement] = STATE(2166), + [sym_for_statement] = STATE(2166), + [sym_foreach_statement] = STATE(2166), + [sym_if_statement] = STATE(2166), + [sym_match_expression] = STATE(1128), + [sym_switch_statement] = STATE(2166), + [sym_compound_statement] = STATE(2166), + [sym_named_label_statement] = STATE(2166), + [sym_expression_statement] = STATE(2166), + [sym__expression] = STATE(1264), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1436), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(381), [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), + [anon_sym_SEMI] = ACTIONS(493), + [aux_sym_function_static_declaration_token1] = ACTIONS(385), + [aux_sym_global_declaration_token1] = ACTIONS(387), + [aux_sym_namespace_definition_token1] = ACTIONS(389), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(391), [aux_sym_namespace_use_declaration_token2] = ACTIONS(222), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(393), [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), + [anon_sym_LBRACE] = ACTIONS(395), + [aux_sym_trait_declaration_token1] = ACTIONS(397), + [aux_sym_interface_declaration_token1] = ACTIONS(399), + [aux_sym_enum_declaration_token1] = ACTIONS(401), + [aux_sym_class_declaration_token1] = ACTIONS(405), [aux_sym_final_modifier_token1] = ACTIONS(242), [aux_sym_abstract_modifier_token1] = ACTIONS(244), [aux_sym_readonly_modifier_token1] = ACTIONS(246), @@ -27533,25 +27780,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), [aux_sym_cast_type_token1] = ACTIONS(254), - [aux_sym_echo_statement_token1] = ACTIONS(256), - [aux_sym_exit_statement_token1] = ACTIONS(258), - [anon_sym_unset] = ACTIONS(260), - [aux_sym_declare_statement_token1] = ACTIONS(367), + [aux_sym_echo_statement_token1] = ACTIONS(407), + [aux_sym_exit_statement_token1] = ACTIONS(409), + [anon_sym_unset] = ACTIONS(411), + [aux_sym_declare_statement_token1] = ACTIONS(445), [sym_float] = ACTIONS(264), - [aux_sym_try_statement_token1] = ACTIONS(266), - [aux_sym_goto_statement_token1] = ACTIONS(268), - [aux_sym_continue_statement_token1] = ACTIONS(270), - [aux_sym_break_statement_token1] = ACTIONS(272), + [aux_sym_try_statement_token1] = ACTIONS(415), + [aux_sym_goto_statement_token1] = ACTIONS(417), + [aux_sym_continue_statement_token1] = ACTIONS(419), + [aux_sym_break_statement_token1] = ACTIONS(421), [sym_integer] = ACTIONS(264), - [aux_sym_return_statement_token1] = ACTIONS(274), + [aux_sym_return_statement_token1] = ACTIONS(423), [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_while_statement_token1] = ACTIONS(369), - [aux_sym_do_statement_token1] = ACTIONS(280), - [aux_sym_for_statement_token1] = ACTIONS(371), - [aux_sym_foreach_statement_token1] = ACTIONS(373), - [aux_sym_if_statement_token1] = ACTIONS(375), + [aux_sym_while_statement_token1] = ACTIONS(447), + [aux_sym_do_statement_token1] = ACTIONS(427), + [aux_sym_for_statement_token1] = ACTIONS(449), + [aux_sym_foreach_statement_token1] = ACTIONS(451), + [aux_sym_if_statement_token1] = ACTIONS(453), [aux_sym_match_expression_token1] = ACTIONS(288), - [aux_sym_switch_statement_token1] = ACTIONS(290), + [aux_sym_switch_statement_token1] = ACTIONS(435), [anon_sym_PLUS] = ACTIONS(292), [anon_sym_DASH] = ACTIONS(292), [anon_sym_TILDE] = ACTIONS(294), @@ -27582,382 +27829,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(437), }, [84] = { [sym_text_interpolation] = STATE(84), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(916), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1031), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(988), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_AMP] = ACTIONS(593), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [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_namespace_aliasing_clause_token1] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_COLON] = ACTIONS(591), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_EQ_GT] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_yield_expression_token2] = ACTIONS(647), + [aux_sym_binary_expression_token1] = ACTIONS(601), + [anon_sym_QMARK_QMARK] = ACTIONS(591), + [anon_sym_STAR_STAR] = ACTIONS(591), + [aux_sym_binary_expression_token2] = ACTIONS(601), + [aux_sym_binary_expression_token3] = ACTIONS(601), + [aux_sym_binary_expression_token4] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_LT_EQ_GT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(591), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [85] = { [sym_text_interpolation] = STATE(85), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1042), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(916), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1061), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(988), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_AMP] = ACTIONS(593), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(591), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(591), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [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(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_EQ_GT] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(591), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_yield_expression_token2] = ACTIONS(657), - [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(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_yield_expression_token2] = ACTIONS(679), + [aux_sym_binary_expression_token1] = ACTIONS(601), + [anon_sym_QMARK_QMARK] = ACTIONS(591), + [anon_sym_STAR_STAR] = ACTIONS(591), + [aux_sym_binary_expression_token2] = ACTIONS(601), + [aux_sym_binary_expression_token3] = ACTIONS(601), + [aux_sym_binary_expression_token4] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_LT_EQ_GT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(591), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [86] = { [sym_text_interpolation] = STATE(86), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1119), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_variadic_unpacking] = STATE(1085), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_by_ref] = STATE(1085), - [sym_yield_expression] = STATE(1142), - [sym_array_element_initializer] = STATE(1118), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(669), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [anon_sym_COMMA] = ACTIONS(569), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_variadic_unpacking] = STATE(1109), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(1109), + [sym_yield_expression] = STATE(1128), + [sym_array_element_initializer] = STATE(1175), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_AMP] = ACTIONS(693), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(591), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(569), + [anon_sym_EQ_GT] = ACTIONS(591), [anon_sym_LPAREN] = ACTIONS(252), - [anon_sym_DOT_DOT_DOT] = ACTIONS(675), - [anon_sym_QMARK] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(699), + [anon_sym_QMARK] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), [aux_sym_cast_type_token1] = ACTIONS(254), [sym_float] = ACTIONS(264), [sym_integer] = ACTIONS(264), @@ -27988,11222 +28235,11223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(324), [anon_sym_DOLLAR] = ACTIONS(326), [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_yield_expression_token2] = ACTIONS(677), - [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_yield_expression_token2] = ACTIONS(701), + [aux_sym_binary_expression_token1] = ACTIONS(601), + [anon_sym_QMARK_QMARK] = ACTIONS(591), + [anon_sym_STAR_STAR] = ACTIONS(591), + [aux_sym_binary_expression_token2] = ACTIONS(601), + [aux_sym_binary_expression_token3] = ACTIONS(601), + [aux_sym_binary_expression_token4] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_LT_EQ_GT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(591), [aux_sym_include_expression_token1] = ACTIONS(330), [aux_sym_include_once_expression_token1] = ACTIONS(332), [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(569), + [sym_grit_metavariable] = ACTIONS(703), + [sym__automatic_semicolon] = ACTIONS(591), }, [87] = { [sym_text_interpolation] = STATE(87), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(916), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1225), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(988), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(593), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(591), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [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(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_EQ_GT] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_yield_expression_token2] = ACTIONS(699), - [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(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_yield_expression_token2] = ACTIONS(725), + [aux_sym_binary_expression_token1] = ACTIONS(601), + [anon_sym_QMARK_QMARK] = ACTIONS(591), + [anon_sym_STAR_STAR] = ACTIONS(591), + [aux_sym_binary_expression_token2] = ACTIONS(601), + [aux_sym_binary_expression_token3] = ACTIONS(601), + [aux_sym_binary_expression_token4] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_LT_EQ_GT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(591), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [88] = { [sym_text_interpolation] = STATE(88), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2545), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2583), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [89] = { [sym_text_interpolation] = STATE(89), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2548), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2620), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [90] = { [sym_text_interpolation] = STATE(90), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2593), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2605), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [91] = { [sym_text_interpolation] = STATE(91), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2470), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2608), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [92] = { [sym_text_interpolation] = STATE(92), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2553), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2612), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [93] = { [sym_text_interpolation] = STATE(93), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2506), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2621), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1321), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [94] = { [sym_text_interpolation] = STATE(94), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2510), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2707), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [95] = { [sym_text_interpolation] = STATE(95), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2548), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2608), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1321), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [96] = { [sym_text_interpolation] = STATE(96), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2461), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2577), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [97] = { [sym_text_interpolation] = STATE(97), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2538), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2650), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [98] = { [sym_text_interpolation] = STATE(98), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_cast_type] = STATE(2544), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_cast_type] = STATE(2585), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [aux_sym_cast_type_token1] = ACTIONS(709), - [aux_sym_cast_type_token2] = ACTIONS(711), - [aux_sym_cast_type_token3] = ACTIONS(711), - [aux_sym_cast_type_token4] = ACTIONS(711), - [aux_sym_cast_type_token5] = ACTIONS(711), - [aux_sym_cast_type_token6] = ACTIONS(711), - [aux_sym_cast_type_token7] = ACTIONS(711), - [aux_sym_cast_type_token8] = ACTIONS(711), - [aux_sym_cast_type_token9] = ACTIONS(711), - [aux_sym_cast_type_token10] = ACTIONS(711), - [aux_sym_cast_type_token11] = ACTIONS(711), - [aux_sym_cast_type_token12] = ACTIONS(711), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(737), + [aux_sym_cast_type_token2] = ACTIONS(739), + [aux_sym_cast_type_token3] = ACTIONS(739), + [aux_sym_cast_type_token4] = ACTIONS(739), + [aux_sym_cast_type_token5] = ACTIONS(739), + [aux_sym_cast_type_token6] = ACTIONS(739), + [aux_sym_cast_type_token7] = ACTIONS(739), + [aux_sym_cast_type_token8] = ACTIONS(739), + [aux_sym_cast_type_token9] = ACTIONS(739), + [aux_sym_cast_type_token10] = ACTIONS(739), + [aux_sym_cast_type_token11] = ACTIONS(739), + [aux_sym_cast_type_token12] = ACTIONS(739), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [99] = { [sym_text_interpolation] = STATE(99), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2005), - [sym__array_destructing_element] = STATE(2006), - [sym_function_call_expression] = STATE(628), - [sym_scoped_call_expression] = STATE(628), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(628), - [sym_nullsafe_member_call_expression] = STATE(628), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(628), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(628), - [sym_variable_name] = STATE(628), - [sym_by_ref] = STATE(2425), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(1920), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym__array_destructing_repeat1] = STATE(2008), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_variadic_placeholder] = STATE(2711), + [sym_argument] = STATE(2192), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(747), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(717), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [100] = { [sym_text_interpolation] = STATE(100), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_variadic_placeholder] = STATE(2622), - [sym_argument] = STATE(2131), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(725), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_variadic_placeholder] = STATE(2737), + [sym_argument] = STATE(2233), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(769), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_DOT_DOT_DOT] = ACTIONS(735), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [101] = { [sym_text_interpolation] = STATE(101), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2005), - [sym__array_destructing_element] = STATE(2006), - [sym_function_call_expression] = STATE(628), - [sym_scoped_call_expression] = STATE(628), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(628), - [sym_nullsafe_member_call_expression] = STATE(628), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(628), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(628), - [sym_variable_name] = STATE(628), - [sym_by_ref] = STATE(2425), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(1920), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym__array_destructing_repeat1] = STATE(2008), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_variadic_placeholder] = STATE(2744), + [sym_argument] = STATE(2241), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(773), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [102] = { [sym_text_interpolation] = STATE(102), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_variadic_placeholder] = STATE(2630), - [sym_argument] = STATE(2134), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(749), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_variadic_placeholder] = STATE(2700), + [sym_argument] = STATE(2111), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(777), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(735), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [103] = { [sym_text_interpolation] = STATE(103), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_variadic_placeholder] = STATE(2662), - [sym_argument] = STATE(2179), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(753), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(661), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(661), + [sym_nullsafe_member_access_expression] = STATE(661), + [sym_scoped_property_access_expression] = STATE(661), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2066), + [sym__array_destructing_element] = STATE(2062), + [sym_function_call_expression] = STATE(640), + [sym_scoped_call_expression] = STATE(640), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(640), + [sym_nullsafe_member_call_expression] = STATE(640), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(640), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(640), + [sym_variable_name] = STATE(640), + [sym_by_ref] = STATE(2507), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(1990), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym__array_destructing_repeat1] = STATE(2060), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(783), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(735), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(785), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(787), }, [104] = { [sym_text_interpolation] = STATE(104), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_variadic_placeholder] = STATE(2646), - [sym_argument] = STATE(2160), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(757), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_variadic_placeholder] = STATE(2607), + [sym_argument] = STATE(2004), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(789), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(735), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [105] = { [sym_text_interpolation] = STATE(105), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_variadic_placeholder] = STATE(2647), - [sym_argument] = STATE(2167), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(761), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(661), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(661), + [sym_nullsafe_member_access_expression] = STATE(661), + [sym_scoped_property_access_expression] = STATE(661), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2066), + [sym__array_destructing_element] = STATE(2062), + [sym_function_call_expression] = STATE(640), + [sym_scoped_call_expression] = STATE(640), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(640), + [sym_nullsafe_member_call_expression] = STATE(640), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(640), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(640), + [sym_variable_name] = STATE(640), + [sym_by_ref] = STATE(2507), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(1990), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym__array_destructing_repeat1] = STATE(2060), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(783), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(735), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(793), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(787), }, [106] = { [sym_text_interpolation] = STATE(106), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_variadic_placeholder] = STATE(2619), - [sym_argument] = STATE(2127), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(765), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(661), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(661), + [sym_nullsafe_member_access_expression] = STATE(661), + [sym_scoped_property_access_expression] = STATE(661), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2066), + [sym__array_destructing_element] = STATE(2062), + [sym_function_call_expression] = STATE(640), + [sym_scoped_call_expression] = STATE(640), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(640), + [sym_nullsafe_member_call_expression] = STATE(640), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(640), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(640), + [sym_variable_name] = STATE(640), + [sym_by_ref] = STATE(2507), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(1990), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym__array_destructing_repeat1] = STATE(2060), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(783), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(735), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(795), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(787), }, [107] = { [sym_text_interpolation] = STATE(107), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2005), - [sym__array_destructing_element] = STATE(2006), - [sym_function_call_expression] = STATE(628), - [sym_scoped_call_expression] = STATE(628), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(628), - [sym_nullsafe_member_call_expression] = STATE(628), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(628), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(628), - [sym_variable_name] = STATE(628), - [sym_by_ref] = STATE(2425), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(1920), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym__array_destructing_repeat1] = STATE(2008), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(661), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(661), + [sym_nullsafe_member_access_expression] = STATE(661), + [sym_scoped_property_access_expression] = STATE(661), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2066), + [sym__array_destructing_element] = STATE(2062), + [sym_function_call_expression] = STATE(640), + [sym_scoped_call_expression] = STATE(640), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(640), + [sym_nullsafe_member_call_expression] = STATE(640), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(640), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(640), + [sym_variable_name] = STATE(640), + [sym_by_ref] = STATE(2507), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(1990), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym__array_destructing_repeat1] = STATE(2060), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(783), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(797), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(787), }, [108] = { [sym_text_interpolation] = STATE(108), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_variadic_placeholder] = STATE(2594), - [sym_argument] = STATE(1954), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(771), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(661), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(661), + [sym_nullsafe_member_access_expression] = STATE(661), + [sym_scoped_property_access_expression] = STATE(661), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2066), + [sym__array_destructing_element] = STATE(2062), + [sym_function_call_expression] = STATE(640), + [sym_scoped_call_expression] = STATE(640), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(640), + [sym_nullsafe_member_call_expression] = STATE(640), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(640), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(640), + [sym_variable_name] = STATE(640), + [sym_by_ref] = STATE(2507), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2061), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym__array_destructing_repeat1] = STATE(2060), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(799), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(735), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(801), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(787), }, [109] = { [sym_text_interpolation] = STATE(109), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2005), - [sym__array_destructing_element] = STATE(2006), - [sym_function_call_expression] = STATE(628), - [sym_scoped_call_expression] = STATE(628), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(628), - [sym_nullsafe_member_call_expression] = STATE(628), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(628), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(628), - [sym_variable_name] = STATE(628), - [sym_by_ref] = STATE(2425), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2007), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym__array_destructing_repeat1] = STATE(2008), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(775), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_variadic_placeholder] = STATE(2713), + [sym_argument] = STATE(2189), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(803), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(777), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [110] = { [sym_text_interpolation] = STATE(110), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_variadic_placeholder] = STATE(2634), - [sym_argument] = STATE(2149), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [anon_sym_COMMA] = ACTIONS(779), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_variadic_placeholder] = STATE(2724), + [sym_argument] = STATE(2215), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(807), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(735), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [111] = { [sym_text_interpolation] = STATE(111), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(641), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(641), - [sym_nullsafe_member_access_expression] = STATE(641), - [sym_scoped_property_access_expression] = STATE(641), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2005), - [sym__array_destructing_element] = STATE(2006), - [sym_function_call_expression] = STATE(628), - [sym_scoped_call_expression] = STATE(628), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(628), - [sym_nullsafe_member_call_expression] = STATE(628), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(628), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(628), - [sym_variable_name] = STATE(628), - [sym_by_ref] = STATE(2425), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(1920), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym__array_destructing_repeat1] = STATE(2008), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(715), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_variadic_placeholder] = STATE(2616), + [sym_argument] = STATE(2042), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [anon_sym_COMMA] = ACTIONS(811), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(757), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_RBRACK] = ACTIONS(783), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [112] = { [sym_text_interpolation] = STATE(112), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [113] = { [sym_text_interpolation] = STATE(113), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [114] = { [sym_text_interpolation] = STATE(114), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [115] = { [sym_text_interpolation] = STATE(115), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [116] = { [sym_text_interpolation] = STATE(116), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2007), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2061), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(823), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(825), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [117] = { [sym_text_interpolation] = STATE(117), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(1985), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(827), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [118] = { [sym_text_interpolation] = STATE(118), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(1940), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(799), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(1996), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(831), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [119] = { [sym_text_interpolation] = STATE(119), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(1920), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(803), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(805), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [120] = { [sym_text_interpolation] = STATE(120), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [121] = { [sym_text_interpolation] = STATE(121), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [122] = { [sym_text_interpolation] = STATE(122), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [123] = { [sym_text_interpolation] = STATE(123), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [124] = { [sym_text_interpolation] = STATE(124), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [125] = { [sym_text_interpolation] = STATE(125), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(1990), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(847), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [126] = { [sym_text_interpolation] = STATE(126), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [127] = { [sym_text_interpolation] = STATE(127), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2064), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(821), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [128] = { [sym_text_interpolation] = STATE(128), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [129] = { [sym_text_interpolation] = STATE(129), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [130] = { [sym_text_interpolation] = STATE(130), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [131] = { [sym_text_interpolation] = STATE(131), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [132] = { [sym_text_interpolation] = STATE(132), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym_match_condition_list] = STATE(2667), - [sym_match_conditional_expression] = STATE(2178), - [sym_match_default_expression] = STATE(2178), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(833), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(835), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [aux_sym_match_default_expression_token1] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [133] = { [sym_text_interpolation] = STATE(133), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym_match_condition_list] = STATE(2667), - [sym_match_conditional_expression] = STATE(1979), - [sym_match_default_expression] = STATE(1979), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(839), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_reference_modifier] = STATE(186), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1253), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_argument] = STATE(2357), + [sym__argument_name] = STATE(153), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2469), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1539), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(741), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(745), + [aux_sym_namespace_definition_token1] = ACTIONS(749), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(751), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(841), - [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [aux_sym_match_default_expression_token1] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(759), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(763), + [anon_sym_parent] = ACTIONS(763), + [aux_sym__argument_name_token1] = ACTIONS(765), + [aux_sym__argument_name_token2] = ACTIONS(767), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [134] = { [sym_text_interpolation] = STATE(134), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [135] = { [sym_text_interpolation] = STATE(135), - [sym_reference_modifier] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_argument] = STATE(2261), - [sym__argument_name] = STATE(155), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2246), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1504), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(719), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(723), - [aux_sym_namespace_definition_token1] = ACTIONS(727), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(729), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [aux_sym__arrow_function_header_token1] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(737), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(741), - [anon_sym_parent] = ACTIONS(741), - [aux_sym__argument_name_token1] = ACTIONS(743), - [aux_sym__argument_name_token2] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [136] = { [sym_text_interpolation] = STATE(136), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [137] = { [sym_text_interpolation] = STATE(137), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym_match_condition_list] = STATE(2692), + [sym_match_conditional_expression] = STATE(2167), + [sym_match_default_expression] = STATE(2167), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(871), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(873), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [aux_sym_match_default_expression_token1] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [138] = { [sym_text_interpolation] = STATE(138), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [139] = { [sym_text_interpolation] = STATE(139), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(879), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [140] = { [sym_text_interpolation] = STATE(140), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym_match_condition_list] = STATE(2692), + [sym_match_conditional_expression] = STATE(2039), + [sym_match_default_expression] = STATE(2039), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(881), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(883), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [aux_sym_match_default_expression_token1] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [141] = { [sym_text_interpolation] = STATE(141), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(885), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [142] = { [sym_text_interpolation] = STATE(142), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(887), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [143] = { [sym_text_interpolation] = STATE(143), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym_match_condition_list] = STATE(2667), - [sym_match_conditional_expression] = STATE(2320), - [sym_match_default_expression] = STATE(2320), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym_match_condition_list] = STATE(2692), + [sym_match_conditional_expression] = STATE(2509), + [sym_match_default_expression] = STATE(2509), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(889), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [aux_sym_match_default_expression_token1] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [aux_sym_match_default_expression_token1] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [144] = { [sym_text_interpolation] = STATE(144), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1314), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(635), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(635), - [sym_nullsafe_member_access_expression] = STATE(635), - [sym_scoped_property_access_expression] = STATE(635), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(1800), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(612), - [sym_scoped_call_expression] = STATE(612), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(612), - [sym_nullsafe_member_call_expression] = STATE(612), - [sym_subscript_expression] = STATE(612), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(612), - [sym_variable_name] = STATE(612), - [sym_by_ref] = STATE(2101), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym__list_destructing_repeat1] = STATE(2111), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(861), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1238), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(863), - [anon_sym_RPAREN] = ACTIONS(865), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(661), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [145] = { [sym_text_interpolation] = STATE(145), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(642), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(642), - [sym_nullsafe_member_access_expression] = STATE(642), - [sym_scoped_property_access_expression] = STATE(642), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2005), - [sym__array_destructing_element] = STATE(2251), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(2247), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(867), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym_match_condition_list] = STATE(2692), + [sym_match_conditional_expression] = STATE(2509), + [sym_match_default_expression] = STATE(2509), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(891), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(863), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [aux_sym_match_default_expression_token1] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(871), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [146] = { [sym_text_interpolation] = STATE(146), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym_match_condition_list] = STATE(2667), - [sym_match_conditional_expression] = STATE(2320), - [sym_match_default_expression] = STATE(2320), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym_match_condition_list] = STATE(2692), + [sym_match_conditional_expression] = STATE(2509), + [sym_match_default_expression] = STATE(2509), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(893), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [aux_sym_match_default_expression_token1] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [aux_sym_match_default_expression_token1] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [147] = { [sym_text_interpolation] = STATE(147), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1358), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(664), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(664), + [sym_nullsafe_member_access_expression] = STATE(664), + [sym_scoped_property_access_expression] = STATE(664), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2066), + [sym__array_destructing_element] = STATE(2492), + [sym_function_call_expression] = STATE(635), + [sym_scoped_call_expression] = STATE(635), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(635), + [sym_nullsafe_member_call_expression] = STATE(635), + [sym_subscript_expression] = STATE(635), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(635), + [sym_variable_name] = STATE(635), + [sym_by_ref] = STATE(2491), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(895), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(897), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(901), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(904), }, [148] = { [sym_text_interpolation] = STATE(148), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym_match_condition_list] = STATE(2667), - [sym_match_conditional_expression] = STATE(2320), - [sym_match_default_expression] = STATE(2320), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1327), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(656), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(656), + [sym_nullsafe_member_access_expression] = STATE(656), + [sym_scoped_property_access_expression] = STATE(656), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(1933), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(619), + [sym_scoped_call_expression] = STATE(619), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(619), + [sym_nullsafe_member_call_expression] = STATE(619), + [sym_subscript_expression] = STATE(619), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(619), + [sym_variable_name] = STATE(619), + [sym_by_ref] = STATE(2056), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym__list_destructing_repeat1] = STATE(2019), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(906), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(876), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [aux_sym_match_default_expression_token1] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(908), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(910), }, [149] = { [sym_text_interpolation] = STATE(149), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(642), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(642), - [sym_nullsafe_member_access_expression] = STATE(642), - [sym_scoped_property_access_expression] = STATE(642), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2005), - [sym__array_destructing_element] = STATE(2251), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(2247), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(867), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1358), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(664), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(664), + [sym_nullsafe_member_access_expression] = STATE(664), + [sym_scoped_property_access_expression] = STATE(664), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2066), + [sym__array_destructing_element] = STATE(2492), + [sym_function_call_expression] = STATE(635), + [sym_scoped_call_expression] = STATE(635), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(635), + [sym_nullsafe_member_call_expression] = STATE(635), + [sym_subscript_expression] = STATE(635), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(635), + [sym_variable_name] = STATE(635), + [sym_by_ref] = STATE(2491), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(895), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(863), - [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), + [anon_sym_LPAREN] = ACTIONS(897), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(895), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(904), }, [150] = { [sym_text_interpolation] = STATE(150), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_variadic_unpacking] = STATE(965), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(965), - [sym_yield_expression] = STATE(912), - [sym_array_element_initializer] = STATE(2123), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(957), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(957), + [sym_yield_expression] = STATE(958), + [sym_array_element_initializer] = STATE(2212), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [151] = { [sym_text_interpolation] = STATE(151), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym_match_condition_list] = STATE(2667), - [sym_match_conditional_expression] = STATE(2320), - [sym_match_default_expression] = STATE(2320), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1358), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(664), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(664), + [sym_nullsafe_member_access_expression] = STATE(664), + [sym_scoped_property_access_expression] = STATE(664), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2066), + [sym__array_destructing_element] = STATE(2492), + [sym_function_call_expression] = STATE(635), + [sym_scoped_call_expression] = STATE(635), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(635), + [sym_nullsafe_member_call_expression] = STATE(635), + [sym_subscript_expression] = STATE(635), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(635), + [sym_variable_name] = STATE(635), + [sym_by_ref] = STATE(2491), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(895), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(878), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [aux_sym_match_default_expression_token1] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(897), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(912), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(904), }, [152] = { [sym_text_interpolation] = STATE(152), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(642), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(642), - [sym_nullsafe_member_access_expression] = STATE(642), - [sym_scoped_property_access_expression] = STATE(642), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2005), - [sym__array_destructing_element] = STATE(2251), - [sym_function_call_expression] = STATE(623), - [sym_scoped_call_expression] = STATE(623), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(623), - [sym_nullsafe_member_call_expression] = STATE(623), - [sym_subscript_expression] = STATE(623), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(623), - [sym_variable_name] = STATE(623), - [sym_by_ref] = STATE(2247), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(867), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym_match_condition_list] = STATE(2692), + [sym_match_conditional_expression] = STATE(2509), + [sym_match_default_expression] = STATE(2509), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(915), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(863), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [aux_sym_match_default_expression_token1] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [153] = { [sym_text_interpolation] = STATE(153), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym_match_condition_list] = STATE(2667), - [sym_match_conditional_expression] = STATE(2320), - [sym_match_default_expression] = STATE(2320), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_reference_modifier] = STATE(189), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1247), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2266), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1543), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(743), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [aux_sym_match_default_expression_token1] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [154] = { [sym_text_interpolation] = STATE(154), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1308), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(643), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(643), - [sym_nullsafe_member_access_expression] = STATE(643), - [sym_scoped_property_access_expression] = STATE(643), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2151), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(618), - [sym_scoped_call_expression] = STATE(618), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(618), - [sym_nullsafe_member_call_expression] = STATE(618), - [sym_subscript_expression] = STATE(618), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(618), - [sym_variable_name] = STATE(618), - [sym_by_ref] = STATE(2238), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [anon_sym_COMMA] = ACTIONS(883), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym_match_condition_list] = STATE(2692), + [sym_match_conditional_expression] = STATE(2509), + [sym_match_default_expression] = STATE(2509), + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(863), - [anon_sym_RPAREN] = ACTIONS(883), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [aux_sym_match_default_expression_token1] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [155] = { [sym_text_interpolation] = STATE(155), - [sym_reference_modifier] = STATE(193), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2326), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1491), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(721), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1289), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(663), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(663), + [sym_nullsafe_member_access_expression] = STATE(663), + [sym_scoped_property_access_expression] = STATE(663), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2185), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(639), + [sym_scoped_call_expression] = STATE(639), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(639), + [sym_nullsafe_member_call_expression] = STATE(639), + [sym_subscript_expression] = STATE(639), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(639), + [sym_variable_name] = STATE(639), + [sym_by_ref] = STATE(2296), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(917), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(917), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(919), }, [156] = { [sym_text_interpolation] = STATE(156), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2546), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2600), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(921), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [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(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [157] = { [sym_text_interpolation] = STATE(157), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2609), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2702), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(923), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(887), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [158] = { [sym_text_interpolation] = STATE(158), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2472), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2679), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(925), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(889), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [159] = { [sym_text_interpolation] = STATE(159), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2474), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_foreach_pair] = STATE(2636), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1279), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2427), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2636), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [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(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [160] = { [sym_text_interpolation] = STATE(160), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2607), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2683), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [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(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(927), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [161] = { [sym_text_interpolation] = STATE(161), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2673), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2629), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(929), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [162] = { [sym_text_interpolation] = STATE(162), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2666), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(897), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2672), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(931), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [163] = { [sym_text_interpolation] = STATE(163), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_foreach_pair] = STATE(2612), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1209), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2260), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2612), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2686), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(933), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [164] = { [sym_text_interpolation] = STATE(164), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2611), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(899), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2743), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(935), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [165] = { [sym_text_interpolation] = STATE(165), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_foreach_pair] = STATE(2519), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2360), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2519), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2701), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(937), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [166] = { [sym_text_interpolation] = STATE(166), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2663), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2557), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(939), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [167] = { [sym_text_interpolation] = STATE(167), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2467), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2736), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(941), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(903), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [168] = { [sym_text_interpolation] = STATE(168), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2660), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(905), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_foreach_pair] = STATE(2680), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1267), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2321), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2680), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [169] = { [sym_text_interpolation] = STATE(169), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2571), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2733), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(943), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [170] = { [sym_text_interpolation] = STATE(170), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2615), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2630), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(909), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(945), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [171] = { [sym_text_interpolation] = STATE(171), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2523), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2730), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(947), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(911), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [172] = { [sym_text_interpolation] = STATE(172), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2617), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2728), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(949), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [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(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [173] = { [sym_text_interpolation] = STATE(173), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2658), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(915), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2574), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(951), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [174] = { [sym_text_interpolation] = STATE(174), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2528), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2678), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(953), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [175] = { [sym_text_interpolation] = STATE(175), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2564), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2569), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [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(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(955), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [176] = { [sym_text_interpolation] = STATE(176), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2604), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(921), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2703), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(957), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [177] = { [sym_text_interpolation] = STATE(177), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_foreach_pair] = STATE(2469), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1235), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2448), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2469), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2566), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(959), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [178] = { [sym_text_interpolation] = STATE(178), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2636), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_foreach_pair] = STATE(2641), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1263), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2316), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2641), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [179] = { [sym_text_interpolation] = STATE(179), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2533), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(925), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2662), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(961), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [180] = { [sym_text_interpolation] = STATE(180), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2515), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2673), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(963), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(927), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [181] = { [sym_text_interpolation] = STATE(181), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_foreach_pair] = STATE(2532), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1207), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2365), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2532), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2706), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1270), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(965), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [182] = { [sym_text_interpolation] = STATE(182), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2632), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(929), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_foreach_pair] = STATE(2571), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1249), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2538), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2571), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [183] = { [sym_text_interpolation] = STATE(183), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__expressions] = STATE(2512), - [sym_sequence_expression] = STATE(2312), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__expressions] = STATE(2637), + [sym_sequence_expression] = STATE(2259), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(931), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(967), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [184] = { [sym_text_interpolation] = STATE(184), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(933), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1151), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_by_ref] = STATE(1090), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(969), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -39242,298 +39490,628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(933), + [sym_grit_metavariable] = ACTIONS(703), }, [185] = { [sym_text_interpolation] = STATE(185), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(935), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1348), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2348), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(2670), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(935), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [186] = { [sym_text_interpolation] = STATE(186), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1013), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(942), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1246), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2268), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1541), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [187] = { [sym_text_interpolation] = STATE(187), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1238), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(937), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1083), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(665), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(665), + [sym_nullsafe_member_access_expression] = STATE(665), + [sym_scoped_property_access_expression] = STATE(665), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2207), + [sym_function_call_expression] = STATE(660), + [sym_scoped_call_expression] = STATE(660), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(660), + [sym_nullsafe_member_call_expression] = STATE(660), + [sym_subscript_expression] = STATE(660), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(660), + [sym_variable_name] = STATE(660), + [sym_by_ref] = STATE(2287), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(971), + }, + [188] = { + [sym_text_interpolation] = STATE(188), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1041), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_by_ref] = STATE(1009), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(973), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [189] = { + [sym_text_interpolation] = STATE(189), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1283), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_variadic_unpacking] = STATE(2376), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1556), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(707), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), + }, + [190] = { + [sym_text_interpolation] = STATE(190), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym__expressions] = STATE(2532), + [sym_sequence_expression] = STATE(2476), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1239), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -39572,79 +40150,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(937), + [sym_grit_metavariable] = ACTIONS(703), }, - [188] = { - [sym_text_interpolation] = STATE(188), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym__expressions] = STATE(2361), - [sym_sequence_expression] = STATE(2378), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1192), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [191] = { + [sym_text_interpolation] = STATE(191), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1083), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(1009), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(973), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), + }, + [192] = { + [sym_text_interpolation] = STATE(192), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym__expressions] = STATE(2474), + [sym_sequence_expression] = STATE(2476), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1239), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -39683,187 +40370,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [189] = { - [sym_text_interpolation] = STATE(189), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1173), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(942), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(939), - [aux_sym_function_static_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(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(703), }, - [190] = { - [sym_text_interpolation] = STATE(190), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(941), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [193] = { + [sym_text_interpolation] = STATE(193), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1248), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(975), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -39902,79 +40479,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(941), + [sym_grit_metavariable] = ACTIONS(703), + [sym__automatic_semicolon] = ACTIONS(975), }, - [191] = { - [sym_text_interpolation] = STATE(191), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1131), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_by_ref] = STATE(1092), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(943), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [194] = { + [sym_text_interpolation] = STATE(194), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(1009), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(973), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), + }, + [195] = { + [sym_text_interpolation] = STATE(195), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1254), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(977), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -40013,408 +40699,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), + [sym__automatic_semicolon] = ACTIONS(977), }, - [192] = { - [sym_text_interpolation] = STATE(192), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1173), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_by_ref] = STATE(942), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_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(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), - }, - [193] = { - [sym_text_interpolation] = STATE(193), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2257), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1463), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), - }, - [194] = { - [sym_text_interpolation] = STATE(194), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1013), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(644), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(644), - [sym_nullsafe_member_access_expression] = STATE(644), - [sym_scoped_property_access_expression] = STATE(644), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2124), - [sym_function_call_expression] = STATE(637), - [sym_scoped_call_expression] = STATE(637), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(637), - [sym_nullsafe_member_call_expression] = STATE(637), - [sym_subscript_expression] = STATE(637), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(637), - [sym_variable_name] = STATE(637), - [sym_by_ref] = STATE(2255), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [196] = { + [sym_text_interpolation] = STATE(196), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1083), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_by_ref] = STATE(1009), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, - [195] = { - [sym_text_interpolation] = STATE(195), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym__expressions] = STATE(2375), - [sym_sequence_expression] = STATE(2378), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1192), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [197] = { + [sym_text_interpolation] = STATE(197), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1252), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(979), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -40453,187 +40919,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [196] = { - [sym_text_interpolation] = STATE(196), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2315), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(2674), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(713), - [aux_sym_function_static_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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(703), + [sym__automatic_semicolon] = ACTIONS(979), }, - [197] = { - [sym_text_interpolation] = STATE(197), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(945), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [198] = { + [sym_text_interpolation] = STATE(198), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1250), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(981), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -40672,78 +41029,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(945), + [sym_grit_metavariable] = ACTIONS(703), + [sym__automatic_semicolon] = ACTIONS(981), }, - [198] = { - [sym_text_interpolation] = STATE(198), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(947), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [199] = { + [sym_text_interpolation] = STATE(199), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1260), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(983), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -40782,1825 +41139,1715 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - [sym__automatic_semicolon] = ACTIONS(947), - }, - [199] = { - [sym_text_interpolation] = STATE(199), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1013), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_by_ref] = STATE(942), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(939), - [aux_sym_function_static_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(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(703), + [sym__automatic_semicolon] = ACTIONS(983), }, [200] = { [sym_text_interpolation] = STATE(200), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1201), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_variadic_unpacking] = STATE(2317), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1497), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1269), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(985), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(681), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), + [sym__automatic_semicolon] = ACTIONS(985), }, [201] = { [sym_text_interpolation] = STATE(201), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(998), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_by_ref] = STATE(942), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(939), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_by_ref] = STATE(1009), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(781), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [202] = { [sym_text_interpolation] = STATE(202), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1252), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1063), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(987), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [203] = { [sym_text_interpolation] = STATE(203), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1315), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(989), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [204] = { [sym_text_interpolation] = STATE(204), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1024), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(953), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(991), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [205] = { [sym_text_interpolation] = STATE(205), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_sequence_expression] = STATE(2434), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_EQ_GT] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [206] = { [sym_text_interpolation] = STATE(206), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1278), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1345), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(995), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [207] = { [sym_text_interpolation] = STATE(207), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_sequence_expression] = STATE(2434), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1353), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(997), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [208] = { [sym_text_interpolation] = STATE(208), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1287), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1361), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_COLON] = ACTIONS(957), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(999), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [209] = { [sym_text_interpolation] = STATE(209), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(959), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1001), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [210] = { [sym_text_interpolation] = STATE(210), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1279), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1032), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1003), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_COLON] = ACTIONS(961), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [211] = { [sym_text_interpolation] = STATE(211), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1258), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1328), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(1005), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [212] = { [sym_text_interpolation] = STATE(212), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1271), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1342), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(1007), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [213] = { [sym_text_interpolation] = STATE(213), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1281), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1364), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), + [anon_sym_COLON] = ACTIONS(1009), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [214] = { [sym_text_interpolation] = STATE(214), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1172), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_sequence_expression] = STATE(2400), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1268), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(969), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [215] = { [sym_text_interpolation] = STATE(215), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1068), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(971), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_sequence_expression] = STATE(2354), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -42639,404 +42886,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, [216] = { [sym_text_interpolation] = STATE(216), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1269), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1320), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_COLON] = ACTIONS(973), + [anon_sym_COLON] = ACTIONS(1011), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [217] = { [sym_text_interpolation] = STATE(217), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1300), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1013), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [218] = { [sym_text_interpolation] = STATE(218), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_sequence_expression] = STATE(2400), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_RPAREN] = ACTIONS(977), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [219] = { [sym_text_interpolation] = STATE(219), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_sequence_expression] = STATE(2219), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1116), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(1015), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -43075,2348 +43322,2564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, [220] = { [sym_text_interpolation] = STATE(220), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1246), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1299), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), - [anon_sym_COLON] = ACTIONS(979), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(1017), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [221] = { [sym_text_interpolation] = STATE(221), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1340), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_RPAREN] = ACTIONS(981), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(1019), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [222] = { [sym_text_interpolation] = STATE(222), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1291), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1334), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_RBRACK] = ACTIONS(1021), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [223] = { [sym_text_interpolation] = STATE(223), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1148), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(567), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_AMP] = ACTIONS(985), - [aux_sym_function_static_declaration_token1] = ACTIONS(573), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(577), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_EQ_GT] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [224] = { [sym_text_interpolation] = STATE(224), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [225] = { [sym_text_interpolation] = STATE(225), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [226] = { [sym_text_interpolation] = STATE(226), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1261), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [227] = { [sym_text_interpolation] = STATE(227), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(914), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1262), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [228] = { [sym_text_interpolation] = STATE(228), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(913), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1288), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [229] = { [sym_text_interpolation] = STATE(229), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1174), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1337), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [230] = { [sym_text_interpolation] = STATE(230), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [231] = { [sym_text_interpolation] = STATE(231), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1260), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1038), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [232] = { [sym_text_interpolation] = STATE(232), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1058), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [233] = { [sym_text_interpolation] = STATE(233), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1315), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [234] = { [sym_text_interpolation] = STATE(234), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1282), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1033), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [235] = { [sym_text_interpolation] = STATE(235), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1220), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [236] = { [sym_text_interpolation] = STATE(236), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1248), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [237] = { [sym_text_interpolation] = STATE(237), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [238] = { [sym_text_interpolation] = STATE(238), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1264), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [239] = { [sym_text_interpolation] = STATE(239), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1198), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1037), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [240] = { [sym_text_interpolation] = STATE(240), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(982), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1078), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [241] = { [sym_text_interpolation] = STATE(241), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1061), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1079), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), + }, + [242] = { + [sym_text_interpolation] = STATE(242), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1359), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [243] = { + [sym_text_interpolation] = STATE(243), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1095), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -45455,1480 +45918,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [242] = { - [sym_text_interpolation] = STATE(242), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(992), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), - }, - [243] = { - [sym_text_interpolation] = STATE(243), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(703), }, [244] = { [sym_text_interpolation] = STATE(244), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1009), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1329), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [245] = { [sym_text_interpolation] = STATE(245), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(983), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1080), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [246] = { [sym_text_interpolation] = STATE(246), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(913), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1054), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [247] = { [sym_text_interpolation] = STATE(247), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(914), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1349), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [248] = { [sym_text_interpolation] = STATE(248), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1172), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1355), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [249] = { [sym_text_interpolation] = STATE(249), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), - }, - [250] = { - [sym_text_interpolation] = STATE(250), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1257), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), - }, - [251] = { - [sym_text_interpolation] = STATE(251), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), - }, - [252] = { - [sym_text_interpolation] = STATE(252), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1008), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), - }, - [253] = { - [sym_text_interpolation] = STATE(253), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(997), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), - }, - [254] = { - [sym_text_interpolation] = STATE(254), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), - }, - [255] = { - [sym_text_interpolation] = STATE(255), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1059), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1120), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -46967,184 +46566,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [256] = { - [sym_text_interpolation] = STATE(256), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [250] = { + [sym_text_interpolation] = STATE(250), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1304), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, - [257] = { - [sym_text_interpolation] = STATE(257), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1058), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [251] = { + [sym_text_interpolation] = STATE(251), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1182), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -47183,76 +46782,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [258] = { - [sym_text_interpolation] = STATE(258), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1057), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [252] = { + [sym_text_interpolation] = STATE(252), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1303), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [253] = { + [sym_text_interpolation] = STATE(253), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1273), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), + }, + [254] = { + [sym_text_interpolation] = STATE(254), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1301), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [255] = { + [sym_text_interpolation] = STATE(255), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), + }, + [256] = { + [sym_text_interpolation] = STATE(256), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), + }, + [257] = { + [sym_text_interpolation] = STATE(257), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1115), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -47291,76 +47430,724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), + }, + [258] = { + [sym_text_interpolation] = STATE(258), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1331), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [259] = { [sym_text_interpolation] = STATE(259), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1079), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1044), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [260] = { + [sym_text_interpolation] = STATE(260), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1043), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [261] = { + [sym_text_interpolation] = STATE(261), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1069), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), + }, + [262] = { + [sym_text_interpolation] = STATE(262), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1343), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [263] = { + [sym_text_interpolation] = STATE(263), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1302), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [264] = { + [sym_text_interpolation] = STATE(264), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1114), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -47399,76 +48186,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [260] = { - [sym_text_interpolation] = STATE(260), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1056), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [265] = { + [sym_text_interpolation] = STATE(265), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1360), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [266] = { + [sym_text_interpolation] = STATE(266), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1113), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -47507,76 +48402,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [261] = { - [sym_text_interpolation] = STATE(261), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1055), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [267] = { + [sym_text_interpolation] = STATE(267), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1294), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [268] = { + [sym_text_interpolation] = STATE(268), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1111), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -47615,76 +48618,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [262] = { - [sym_text_interpolation] = STATE(262), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1054), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [269] = { + [sym_text_interpolation] = STATE(269), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1110), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -47723,76 +48726,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [263] = { - [sym_text_interpolation] = STATE(263), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1053), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [270] = { + [sym_text_interpolation] = STATE(270), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1108), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -47831,76 +48834,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [264] = { - [sym_text_interpolation] = STATE(264), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1052), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [271] = { + [sym_text_interpolation] = STATE(271), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1107), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -47939,76 +48942,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [265] = { - [sym_text_interpolation] = STATE(265), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1051), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [272] = { + [sym_text_interpolation] = STATE(272), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1106), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -48047,76 +49050,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [266] = { - [sym_text_interpolation] = STATE(266), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1050), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [273] = { + [sym_text_interpolation] = STATE(273), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1103), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -48155,76 +49158,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [267] = { - [sym_text_interpolation] = STATE(267), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1060), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [274] = { + [sym_text_interpolation] = STATE(274), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1101), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -48263,76 +49266,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [268] = { - [sym_text_interpolation] = STATE(268), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1047), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [275] = { + [sym_text_interpolation] = STATE(275), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1100), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -48371,76 +49374,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [269] = { - [sym_text_interpolation] = STATE(269), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1116), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [276] = { + [sym_text_interpolation] = STATE(276), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1099), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -48479,76 +49482,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [270] = { - [sym_text_interpolation] = STATE(270), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1067), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [277] = { + [sym_text_interpolation] = STATE(277), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1098), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -48587,76 +49590,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [271] = { - [sym_text_interpolation] = STATE(271), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1049), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [278] = { + [sym_text_interpolation] = STATE(278), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1097), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -48695,76 +49698,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, - [272] = { - [sym_text_interpolation] = STATE(272), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1074), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [279] = { + [sym_text_interpolation] = STATE(279), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1096), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -48803,400 +49806,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [273] = { - [sym_text_interpolation] = STATE(273), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), - }, - [274] = { - [sym_text_interpolation] = STATE(274), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1300), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), - }, - [275] = { - [sym_text_interpolation] = STATE(275), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(703), }, - [276] = { - [sym_text_interpolation] = STATE(276), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1078), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [280] = { + [sym_text_interpolation] = STATE(280), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1094), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -49235,2452 +49914,2020 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [277] = { - [sym_text_interpolation] = STATE(277), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1232), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), - }, - [278] = { - [sym_text_interpolation] = STATE(278), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), - }, - [279] = { - [sym_text_interpolation] = STATE(279), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1033), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), - }, - [280] = { - [sym_text_interpolation] = STATE(280), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(703), }, [281] = { [sym_text_interpolation] = STATE(281), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1093), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [282] = { [sym_text_interpolation] = STATE(282), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1092), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [283] = { [sym_text_interpolation] = STATE(283), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1121), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [284] = { [sym_text_interpolation] = STATE(284), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1222), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1180), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [285] = { [sym_text_interpolation] = STATE(285), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1357), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [286] = { [sym_text_interpolation] = STATE(286), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(980), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1362), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [287] = { [sym_text_interpolation] = STATE(287), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(993), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1339), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [288] = { [sym_text_interpolation] = STATE(288), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1236), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1333), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [289] = { [sym_text_interpolation] = STATE(289), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(979), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [290] = { [sym_text_interpolation] = STATE(290), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1181), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1280), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [291] = { [sym_text_interpolation] = STATE(291), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1182), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1278), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [292] = { [sym_text_interpolation] = STATE(292), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1332), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [293] = { [sym_text_interpolation] = STATE(293), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1183), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1306), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [294] = { [sym_text_interpolation] = STATE(294), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1122), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [295] = { [sym_text_interpolation] = STATE(295), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1200), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [296] = { [sym_text_interpolation] = STATE(296), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1243), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1212), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [297] = { [sym_text_interpolation] = STATE(297), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1211), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [298] = { [sym_text_interpolation] = STATE(298), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1305), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [299] = { [sym_text_interpolation] = STATE(299), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1123), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -51719,616 +51966,724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, [300] = { [sym_text_interpolation] = STATE(300), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(989), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1297), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [301] = { [sym_text_interpolation] = STATE(301), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(988), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1209), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [302] = { [sym_text_interpolation] = STATE(302), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [303] = { [sym_text_interpolation] = STATE(303), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1296), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [304] = { [sym_text_interpolation] = STATE(304), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(987), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [305] = { [sym_text_interpolation] = STATE(305), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1134), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), + }, + [306] = { + [sym_text_interpolation] = STATE(306), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -52367,4396 +52722,4288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [306] = { - [sym_text_interpolation] = STATE(306), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1244), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(703), }, [307] = { [sym_text_interpolation] = STATE(307), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1295), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [308] = { [sym_text_interpolation] = STATE(308), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [309] = { [sym_text_interpolation] = STATE(309), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1029), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1216), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [310] = { [sym_text_interpolation] = STATE(310), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1128), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [311] = { [sym_text_interpolation] = STATE(311), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(985), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1356), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [312] = { [sym_text_interpolation] = STATE(312), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1193), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [313] = { [sym_text_interpolation] = STATE(313), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1354), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [314] = { [sym_text_interpolation] = STATE(314), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1195), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [315] = { [sym_text_interpolation] = STATE(315), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1169), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [316] = { [sym_text_interpolation] = STATE(316), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1127), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1198), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [317] = { [sym_text_interpolation] = STATE(317), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1018), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [318] = { [sym_text_interpolation] = STATE(318), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1168), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1215), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [319] = { [sym_text_interpolation] = STATE(319), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1030), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [320] = { [sym_text_interpolation] = STATE(320), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1352), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [321] = { [sym_text_interpolation] = STATE(321), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1133), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [322] = { [sym_text_interpolation] = STATE(322), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1015), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1205), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [323] = { [sym_text_interpolation] = STATE(323), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1351), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [324] = { [sym_text_interpolation] = STATE(324), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1020), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1346), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [325] = { [sym_text_interpolation] = STATE(325), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1125), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [326] = { [sym_text_interpolation] = STATE(326), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1028), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1204), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [327] = { [sym_text_interpolation] = STATE(327), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1344), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [328] = { [sym_text_interpolation] = STATE(328), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1277), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [329] = { [sym_text_interpolation] = STATE(329), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1210), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [330] = { [sym_text_interpolation] = STATE(330), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1023), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1335), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [331] = { [sym_text_interpolation] = STATE(331), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1025), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [332] = { [sym_text_interpolation] = STATE(332), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1026), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [333] = { [sym_text_interpolation] = STATE(333), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1123), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1084), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [334] = { [sym_text_interpolation] = STATE(334), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), [sym__expression] = STATE(1027), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [335] = { [sym_text_interpolation] = STATE(335), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1035), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [336] = { [sym_text_interpolation] = STATE(336), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1036), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1316), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [337] = { [sym_text_interpolation] = STATE(337), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [338] = { [sym_text_interpolation] = STATE(338), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [339] = { [sym_text_interpolation] = STATE(339), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1038), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1053), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [340] = { [sym_text_interpolation] = STATE(340), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1190), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [341] = { [sym_text_interpolation] = STATE(341), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1060), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [342] = { [sym_text_interpolation] = STATE(342), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1046), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1312), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [343] = { [sym_text_interpolation] = STATE(343), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1045), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [344] = { [sym_text_interpolation] = STATE(344), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1043), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1292), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [345] = { [sym_text_interpolation] = STATE(345), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1136), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1326), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [346] = { [sym_text_interpolation] = STATE(346), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1190), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1243), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -56795,3856 +57042,4072 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [sym_grit_metavariable] = ACTIONS(703), }, [347] = { [sym_text_interpolation] = STATE(347), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1026), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [348] = { [sym_text_interpolation] = STATE(348), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1025), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [349] = { [sym_text_interpolation] = STATE(349), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1117), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1265), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [350] = { [sym_text_interpolation] = STATE(350), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1311), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [351] = { [sym_text_interpolation] = STATE(351), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(914), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1057), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [352] = { [sym_text_interpolation] = STATE(352), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(913), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1019), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [353] = { [sym_text_interpolation] = STATE(353), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1048), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1275), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [354] = { [sym_text_interpolation] = STATE(354), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1039), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1341), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [355] = { [sym_text_interpolation] = STATE(355), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1041), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(633), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(633), - [sym_nullsafe_member_access_expression] = STATE(633), - [sym_scoped_property_access_expression] = STATE(633), - [sym_list_literal] = STATE(2473), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(602), - [sym_scoped_call_expression] = STATE(602), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(602), - [sym_nullsafe_member_call_expression] = STATE(602), - [sym_subscript_expression] = STATE(602), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(602), - [sym_variable_name] = STATE(602), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1338), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(647), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(655), - [aux_sym_include_expression_token1] = ACTIONS(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [aux_sym_require_expression_token1] = ACTIONS(663), - [aux_sym_require_once_expression_token1] = ACTIONS(665), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [356] = { [sym_text_interpolation] = STATE(356), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1115), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1070), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [357] = { [sym_text_interpolation] = STATE(357), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1112), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1064), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [358] = { [sym_text_interpolation] = STATE(358), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1298), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1062), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [359] = { [sym_text_interpolation] = STATE(359), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1316), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1059), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [360] = { [sym_text_interpolation] = STATE(360), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1313), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1336), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [361] = { [sym_text_interpolation] = STATE(361), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1056), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [362] = { [sym_text_interpolation] = STATE(362), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1165), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1293), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [363] = { [sym_text_interpolation] = STATE(363), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1312), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1082), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [364] = { [sym_text_interpolation] = STATE(364), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1309), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [365] = { [sym_text_interpolation] = STATE(365), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1307), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1286), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [366] = { [sym_text_interpolation] = STATE(366), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1306), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1324), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [367] = { [sym_text_interpolation] = STATE(367), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1171), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1323), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [368] = { [sym_text_interpolation] = STATE(368), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1085), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [369] = { [sym_text_interpolation] = STATE(369), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1305), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1322), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [370] = { [sym_text_interpolation] = STATE(370), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1261), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [371] = { [sym_text_interpolation] = STATE(371), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1052), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [372] = { [sym_text_interpolation] = STATE(372), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1291), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [373] = { [sym_text_interpolation] = STATE(373), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1162), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1244), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [374] = { [sym_text_interpolation] = STATE(374), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1095), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1290), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(252), - [aux_sym_cast_type_token1] = ACTIONS(254), - [sym_float] = ACTIONS(264), - [sym_integer] = ACTIONS(264), - [aux_sym_throw_expression_token1] = ACTIONS(276), - [aux_sym_match_expression_token1] = ACTIONS(288), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(296), - [aux_sym_clone_expression_token1] = ACTIONS(298), - [aux_sym_print_intrinsic_token1] = ACTIONS(300), - [aux_sym_object_creation_expression_token1] = ACTIONS(302), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(312), - [aux_sym__argument_name_token2] = ACTIONS(314), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(318), - [aux_sym_string_token1] = ACTIONS(320), - [anon_sym_SQUOTE] = ACTIONS(320), - [anon_sym_LT_LT_LT] = ACTIONS(322), - [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(326), - [aux_sym_yield_expression_token1] = ACTIONS(328), - [aux_sym_include_expression_token1] = ACTIONS(330), - [aux_sym_include_once_expression_token1] = ACTIONS(332), - [aux_sym_require_expression_token1] = ACTIONS(334), - [aux_sym_require_once_expression_token1] = ACTIONS(336), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [375] = { [sym_text_interpolation] = STATE(375), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1303), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1309), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [376] = { [sym_text_interpolation] = STATE(376), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1242), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1330), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [377] = { [sym_text_interpolation] = STATE(377), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1302), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1308), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [378] = { [sym_text_interpolation] = STATE(378), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1301), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1035), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [379] = { [sym_text_interpolation] = STATE(379), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1161), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1287), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [380] = { [sym_text_interpolation] = STATE(380), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1160), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1319), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [381] = { [sym_text_interpolation] = STATE(381), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1296), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1029), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [382] = { [sym_text_interpolation] = STATE(382), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym_match_expression] = STATE(1142), - [sym__expression] = STATE(1094), - [sym__unary_expression] = STATE(1143), - [sym_unary_op_expression] = STATE(1144), - [sym_error_suppression_expression] = STATE(1142), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(636), - [sym_assignment_expression] = STATE(1142), - [sym_reference_assignment_expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_augmented_assignment_expression] = STATE(1142), - [sym_member_access_expression] = STATE(636), - [sym_nullsafe_member_access_expression] = STATE(636), - [sym_scoped_property_access_expression] = STATE(636), - [sym_list_literal] = STATE(2572), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(608), - [sym_scoped_call_expression] = STATE(608), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(608), - [sym_nullsafe_member_call_expression] = STATE(608), - [sym_subscript_expression] = STATE(608), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(608), - [sym_variable_name] = STATE(608), - [sym_yield_expression] = STATE(1142), - [sym_binary_expression] = STATE(1142), - [sym_include_expression] = STATE(1142), - [sym_include_once_expression] = STATE(1142), - [sym_require_expression] = STATE(1142), - [sym_require_once_expression] = STATE(1142), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1307), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), + }, + [383] = { + [sym_text_interpolation] = STATE(383), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1285), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), + }, + [384] = { + [sym_text_interpolation] = STATE(384), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1088), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -60683,5887 +61146,4856 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_expression_token1] = ACTIONS(334), [aux_sym_require_once_expression_token1] = ACTIONS(336), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [383] = { - [sym_text_interpolation] = STATE(383), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1293), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), - }, - [384] = { - [sym_text_interpolation] = STATE(384), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1292), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(703), }, [385] = { [sym_text_interpolation] = STATE(385), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1290), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1066), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [386] = { [sym_text_interpolation] = STATE(386), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1289), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1086), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [387] = { [sym_text_interpolation] = STATE(387), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1283), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1282), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [388] = { [sym_text_interpolation] = STATE(388), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1245), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1018), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [389] = { [sym_text_interpolation] = STATE(389), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1030), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [390] = { [sym_text_interpolation] = STATE(390), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1081), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [391] = { [sym_text_interpolation] = STATE(391), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1270), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1172), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [392] = { [sym_text_interpolation] = STATE(392), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1284), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [393] = { [sym_text_interpolation] = STATE(393), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1314), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [394] = { [sym_text_interpolation] = STATE(394), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1277), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1020), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [395] = { [sym_text_interpolation] = STATE(395), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1042), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [396] = { [sym_text_interpolation] = STATE(396), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1276), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1050), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [397] = { [sym_text_interpolation] = STATE(397), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1240), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [398] = { [sym_text_interpolation] = STATE(398), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1266), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1049), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [399] = { [sym_text_interpolation] = STATE(399), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1275), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1048), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [400] = { [sym_text_interpolation] = STATE(400), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1273), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1047), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [401] = { [sym_text_interpolation] = STATE(401), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1156), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1046), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [402] = { [sym_text_interpolation] = STATE(402), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1274), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1321), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [403] = { [sym_text_interpolation] = STATE(403), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1272), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [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(306), - [anon_sym_LBRACK] = ACTIONS(607), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), + [aux_sym__list_destructing_token1] = ACTIONS(306), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [404] = { [sym_text_interpolation] = STATE(404), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1045), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [405] = { [sym_text_interpolation] = STATE(405), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1267), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1271), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [406] = { [sym_text_interpolation] = STATE(406), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1284), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1071), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [407] = { [sym_text_interpolation] = STATE(407), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1285), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym_match_expression] = STATE(1128), + [sym__expression] = STATE(1102), + [sym__unary_expression] = STATE(1134), + [sym_unary_op_expression] = STATE(1135), + [sym_error_suppression_expression] = STATE(1128), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(655), + [sym_assignment_expression] = STATE(1128), + [sym_reference_assignment_expression] = STATE(1128), + [sym_conditional_expression] = STATE(1128), + [sym_augmented_assignment_expression] = STATE(1128), + [sym_member_access_expression] = STATE(655), + [sym_nullsafe_member_access_expression] = STATE(655), + [sym_scoped_property_access_expression] = STATE(655), + [sym_list_literal] = STATE(2690), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(618), + [sym_scoped_call_expression] = STATE(618), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(618), + [sym_nullsafe_member_call_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(618), + [sym_variable_name] = STATE(618), + [sym_yield_expression] = STATE(1128), + [sym_binary_expression] = STATE(1128), + [sym_include_expression] = STATE(1128), + [sym_include_once_expression] = STATE(1128), + [sym_require_expression] = STATE(1128), + [sym_require_once_expression] = STATE(1128), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(252), + [aux_sym_cast_type_token1] = ACTIONS(254), + [sym_float] = ACTIONS(264), + [sym_integer] = ACTIONS(264), + [aux_sym_throw_expression_token1] = ACTIONS(276), + [aux_sym_match_expression_token1] = ACTIONS(288), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_TILDE] = ACTIONS(294), + [anon_sym_BANG] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [aux_sym_clone_expression_token1] = ACTIONS(298), + [aux_sym_print_intrinsic_token1] = ACTIONS(300), + [aux_sym_object_creation_expression_token1] = ACTIONS(302), + [anon_sym_DASH_DASH] = ACTIONS(304), + [anon_sym_PLUS_PLUS] = ACTIONS(304), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(308), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(312), + [aux_sym__argument_name_token2] = ACTIONS(314), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(318), + [aux_sym_string_token1] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(320), + [anon_sym_LT_LT_LT] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_DOLLAR] = ACTIONS(326), + [aux_sym_yield_expression_token1] = ACTIONS(328), + [aux_sym_include_expression_token1] = ACTIONS(330), + [aux_sym_include_once_expression_token1] = ACTIONS(332), + [aux_sym_require_expression_token1] = ACTIONS(334), + [aux_sym_require_once_expression_token1] = ACTIONS(336), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(703), }, [408] = { [sym_text_interpolation] = STATE(408), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1152), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1259), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [409] = { [sym_text_interpolation] = STATE(409), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1251), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [410] = { [sym_text_interpolation] = STATE(410), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1072), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [411] = { [sym_text_interpolation] = STATE(411), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1155), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1258), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [412] = { [sym_text_interpolation] = STATE(412), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1257), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [413] = { [sym_text_interpolation] = STATE(413), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1304), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(611), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(611), - [sym_nullsafe_member_access_expression] = STATE(611), - [sym_scoped_property_access_expression] = STATE(611), - [sym_list_literal] = STATE(2482), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(600), - [sym_scoped_call_expression] = STATE(600), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(600), - [sym_nullsafe_member_call_expression] = STATE(600), - [sym_subscript_expression] = STATE(600), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(600), - [sym_variable_name] = STATE(600), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [414] = { [sym_text_interpolation] = STATE(414), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1154), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1256), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(662), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(662), + [sym_nullsafe_member_access_expression] = STATE(662), + [sym_scoped_property_access_expression] = STATE(662), + [sym_list_literal] = STATE(2603), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(653), + [sym_scoped_call_expression] = STATE(653), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(653), + [sym_nullsafe_member_call_expression] = STATE(653), + [sym_subscript_expression] = STATE(653), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(653), + [sym_variable_name] = STATE(653), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(715), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(721), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(723), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [aux_sym_require_expression_token1] = ACTIONS(731), + [aux_sym_require_once_expression_token1] = ACTIONS(733), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(735), }, [415] = { [sym_text_interpolation] = STATE(415), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1077), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [416] = { [sym_text_interpolation] = STATE(416), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1153), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1068), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [417] = { [sym_text_interpolation] = STATE(417), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1076), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [418] = { [sym_text_interpolation] = STATE(418), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1055), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [419] = { [sym_text_interpolation] = STATE(419), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1024), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(623), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(623), + [sym_nullsafe_member_access_expression] = STATE(623), + [sym_scoped_property_access_expression] = STATE(623), + [sym_list_literal] = STATE(2596), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(607), + [sym_scoped_call_expression] = STATE(607), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(607), + [sym_nullsafe_member_call_expression] = STATE(607), + [sym_subscript_expression] = STATE(607), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(607), + [sym_variable_name] = STATE(607), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(629), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(645), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [aux_sym_require_expression_token1] = ACTIONS(653), + [aux_sym_require_once_expression_token1] = ACTIONS(655), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(657), }, [420] = { [sym_text_interpolation] = STATE(420), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1150), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1075), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [421] = { [sym_text_interpolation] = STATE(421), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1147), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1074), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [422] = { [sym_text_interpolation] = STATE(422), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym_match_expression] = STATE(912), - [sym__expression] = STATE(1149), - [sym__unary_expression] = STATE(911), - [sym_unary_op_expression] = STATE(957), - [sym_error_suppression_expression] = STATE(912), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(640), - [sym_assignment_expression] = STATE(912), - [sym_reference_assignment_expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_augmented_assignment_expression] = STATE(912), - [sym_member_access_expression] = STATE(640), - [sym_nullsafe_member_access_expression] = STATE(640), - [sym_scoped_property_access_expression] = STATE(640), - [sym_list_literal] = STATE(2536), - [sym__list_destructing] = STATE(2283), - [sym__array_destructing] = STATE(2283), - [sym_function_call_expression] = STATE(630), - [sym_scoped_call_expression] = STATE(630), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(630), - [sym_nullsafe_member_call_expression] = STATE(630), - [sym_subscript_expression] = STATE(630), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(630), - [sym_variable_name] = STATE(630), - [sym_yield_expression] = STATE(912), - [sym_binary_expression] = STATE(912), - [sym_include_expression] = STATE(912), - [sym_include_once_expression] = STATE(912), - [sym_require_expression] = STATE(912), - [sym_require_once_expression] = STATE(912), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym_match_expression] = STATE(958), + [sym__expression] = STATE(1073), + [sym__unary_expression] = STATE(959), + [sym_unary_op_expression] = STATE(961), + [sym_error_suppression_expression] = STATE(958), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(650), + [sym_assignment_expression] = STATE(958), + [sym_reference_assignment_expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_augmented_assignment_expression] = STATE(958), + [sym_member_access_expression] = STATE(650), + [sym_nullsafe_member_access_expression] = STATE(650), + [sym_scoped_property_access_expression] = STATE(650), + [sym_list_literal] = STATE(2589), + [sym__list_destructing] = STATE(2318), + [sym__array_destructing] = STATE(2318), + [sym_function_call_expression] = STATE(613), + [sym_scoped_call_expression] = STATE(613), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(613), + [sym_nullsafe_member_call_expression] = STATE(613), + [sym_subscript_expression] = STATE(613), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(613), + [sym_variable_name] = STATE(613), + [sym_yield_expression] = STATE(958), + [sym_binary_expression] = STATE(958), + [sym_include_expression] = STATE(958), + [sym_include_once_expression] = STATE(958), + [sym_require_expression] = STATE(958), + [sym_require_once_expression] = STATE(958), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_match_expression_token1] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(689), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_match_expression_token1] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(669), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), [aux_sym__list_destructing_token1] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(675), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(621), - [aux_sym_yield_expression_token1] = ACTIONS(697), - [aux_sym_include_expression_token1] = ACTIONS(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [aux_sym_require_expression_token1] = ACTIONS(705), - [aux_sym_require_once_expression_token1] = ACTIONS(707), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_yield_expression_token1] = ACTIONS(677), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [aux_sym_require_expression_token1] = ACTIONS(685), + [aux_sym_require_once_expression_token1] = ACTIONS(687), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(689), }, [423] = { [sym_text_interpolation] = STATE(423), - [sym_catch_clause] = STATE(430), - [sym_finally_clause] = STATE(430), + [sym_catch_clause] = STATE(434), + [sym_finally_clause] = STATE(434), [aux_sym_try_statement_repeat1] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(987), - [sym_name] = ACTIONS(989), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(987), - [aux_sym_function_static_declaration_token1] = ACTIONS(989), - [aux_sym_global_declaration_token1] = ACTIONS(989), - [aux_sym_namespace_definition_token1] = ACTIONS(989), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(989), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(989), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(989), - [anon_sym_BSLASH] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [aux_sym_trait_declaration_token1] = ACTIONS(989), - [aux_sym_interface_declaration_token1] = ACTIONS(989), - [aux_sym_enum_declaration_token1] = ACTIONS(989), - [aux_sym_enum_case_token1] = ACTIONS(989), - [aux_sym_class_declaration_token1] = ACTIONS(989), - [aux_sym_final_modifier_token1] = ACTIONS(989), - [aux_sym_abstract_modifier_token1] = ACTIONS(989), - [aux_sym_readonly_modifier_token1] = ACTIONS(989), - [aux_sym_visibility_modifier_token1] = ACTIONS(989), - [aux_sym_visibility_modifier_token2] = ACTIONS(989), - [aux_sym_visibility_modifier_token3] = ACTIONS(989), - [aux_sym__arrow_function_header_token1] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(987), - [aux_sym_cast_type_token1] = ACTIONS(989), - [aux_sym_echo_statement_token1] = ACTIONS(989), - [aux_sym_exit_statement_token1] = ACTIONS(989), - [anon_sym_unset] = ACTIONS(989), - [aux_sym_declare_statement_token1] = ACTIONS(989), - [aux_sym_declare_statement_token2] = ACTIONS(989), - [sym_float] = ACTIONS(989), - [aux_sym_try_statement_token1] = ACTIONS(989), - [aux_sym_catch_clause_token1] = ACTIONS(991), - [aux_sym_finally_clause_token1] = ACTIONS(994), - [aux_sym_goto_statement_token1] = ACTIONS(989), - [aux_sym_continue_statement_token1] = ACTIONS(989), - [aux_sym_break_statement_token1] = ACTIONS(989), - [sym_integer] = ACTIONS(989), - [aux_sym_return_statement_token1] = ACTIONS(989), - [aux_sym_throw_expression_token1] = ACTIONS(989), - [aux_sym_while_statement_token1] = ACTIONS(989), - [aux_sym_while_statement_token2] = ACTIONS(989), - [aux_sym_do_statement_token1] = ACTIONS(989), - [aux_sym_for_statement_token1] = ACTIONS(989), - [aux_sym_for_statement_token2] = ACTIONS(989), - [aux_sym_foreach_statement_token1] = ACTIONS(989), - [aux_sym_foreach_statement_token2] = ACTIONS(989), - [aux_sym_if_statement_token1] = ACTIONS(989), - [aux_sym_if_statement_token2] = ACTIONS(989), - [aux_sym_else_if_clause_token1] = ACTIONS(989), - [aux_sym_else_clause_token1] = ACTIONS(989), - [aux_sym_match_expression_token1] = ACTIONS(989), - [aux_sym_match_default_expression_token1] = ACTIONS(989), - [aux_sym_switch_statement_token1] = ACTIONS(989), - [aux_sym_switch_block_token1] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [aux_sym_clone_expression_token1] = ACTIONS(989), - [aux_sym_print_intrinsic_token1] = ACTIONS(989), - [aux_sym_object_creation_expression_token1] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [aux_sym__list_destructing_token1] = ACTIONS(989), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_self] = ACTIONS(989), - [anon_sym_parent] = ACTIONS(989), - [aux_sym__argument_name_token1] = ACTIONS(989), - [aux_sym__argument_name_token2] = ACTIONS(989), - [anon_sym_POUND_LBRACK] = ACTIONS(987), - [aux_sym_encapsed_string_token1] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [aux_sym_string_token1] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(987), - [anon_sym_LT_LT_LT] = ACTIONS(987), - [anon_sym_BQUOTE] = ACTIONS(987), - [anon_sym_DOLLAR] = ACTIONS(987), - [aux_sym_yield_expression_token1] = ACTIONS(989), - [aux_sym_include_expression_token1] = ACTIONS(989), - [aux_sym_include_once_expression_token1] = ACTIONS(989), - [aux_sym_require_expression_token1] = ACTIONS(989), - [aux_sym_require_once_expression_token1] = ACTIONS(989), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(987), + [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), + [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_catch_clause_token1] = ACTIONS(1029), + [aux_sym_finally_clause_token1] = ACTIONS(1032), + [aux_sym_goto_statement_token1] = ACTIONS(1027), + [aux_sym_continue_statement_token1] = ACTIONS(1027), + [aux_sym_break_statement_token1] = ACTIONS(1027), + [sym_integer] = ACTIONS(1027), + [aux_sym_return_statement_token1] = ACTIONS(1027), + [aux_sym_throw_expression_token1] = ACTIONS(1027), + [aux_sym_while_statement_token1] = ACTIONS(1027), + [aux_sym_while_statement_token2] = ACTIONS(1027), + [aux_sym_do_statement_token1] = ACTIONS(1027), + [aux_sym_for_statement_token1] = ACTIONS(1027), + [aux_sym_for_statement_token2] = ACTIONS(1027), + [aux_sym_foreach_statement_token1] = ACTIONS(1027), + [aux_sym_foreach_statement_token2] = ACTIONS(1027), + [aux_sym_if_statement_token1] = ACTIONS(1027), + [aux_sym_if_statement_token2] = ACTIONS(1027), + [aux_sym_else_if_clause_token1] = ACTIONS(1027), + [aux_sym_else_clause_token1] = ACTIONS(1027), + [aux_sym_match_expression_token1] = ACTIONS(1027), + [aux_sym_match_default_expression_token1] = ACTIONS(1027), + [aux_sym_switch_statement_token1] = ACTIONS(1027), + [aux_sym_switch_block_token1] = ACTIONS(1027), + [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), + [sym_grit_metavariable] = ACTIONS(1025), }, [424] = { [sym_text_interpolation] = STATE(424), - [sym_catch_clause] = STATE(430), - [sym_finally_clause] = STATE(430), + [sym_catch_clause] = STATE(434), + [sym_finally_clause] = STATE(434), [aux_sym_try_statement_repeat1] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(997), - [sym_name] = ACTIONS(999), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(997), - [aux_sym_function_static_declaration_token1] = ACTIONS(999), - [aux_sym_global_declaration_token1] = ACTIONS(999), - [aux_sym_namespace_definition_token1] = ACTIONS(999), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(999), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(999), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(999), - [anon_sym_BSLASH] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [aux_sym_trait_declaration_token1] = ACTIONS(999), - [aux_sym_interface_declaration_token1] = ACTIONS(999), - [aux_sym_enum_declaration_token1] = ACTIONS(999), - [aux_sym_enum_case_token1] = ACTIONS(999), - [aux_sym_class_declaration_token1] = ACTIONS(999), - [aux_sym_final_modifier_token1] = ACTIONS(999), - [aux_sym_abstract_modifier_token1] = ACTIONS(999), - [aux_sym_readonly_modifier_token1] = ACTIONS(999), - [aux_sym_visibility_modifier_token1] = ACTIONS(999), - [aux_sym_visibility_modifier_token2] = ACTIONS(999), - [aux_sym_visibility_modifier_token3] = ACTIONS(999), - [aux_sym__arrow_function_header_token1] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(997), - [aux_sym_cast_type_token1] = ACTIONS(999), - [aux_sym_echo_statement_token1] = ACTIONS(999), - [aux_sym_exit_statement_token1] = ACTIONS(999), - [anon_sym_unset] = ACTIONS(999), - [aux_sym_declare_statement_token1] = ACTIONS(999), - [aux_sym_declare_statement_token2] = ACTIONS(999), - [sym_float] = ACTIONS(999), - [aux_sym_try_statement_token1] = ACTIONS(999), - [aux_sym_catch_clause_token1] = ACTIONS(1001), - [aux_sym_finally_clause_token1] = ACTIONS(1003), - [aux_sym_goto_statement_token1] = ACTIONS(999), - [aux_sym_continue_statement_token1] = ACTIONS(999), - [aux_sym_break_statement_token1] = ACTIONS(999), - [sym_integer] = ACTIONS(999), - [aux_sym_return_statement_token1] = ACTIONS(999), - [aux_sym_throw_expression_token1] = ACTIONS(999), - [aux_sym_while_statement_token1] = ACTIONS(999), - [aux_sym_while_statement_token2] = ACTIONS(999), - [aux_sym_do_statement_token1] = ACTIONS(999), - [aux_sym_for_statement_token1] = ACTIONS(999), - [aux_sym_for_statement_token2] = ACTIONS(999), - [aux_sym_foreach_statement_token1] = ACTIONS(999), - [aux_sym_foreach_statement_token2] = ACTIONS(999), - [aux_sym_if_statement_token1] = ACTIONS(999), - [aux_sym_if_statement_token2] = ACTIONS(999), - [aux_sym_else_if_clause_token1] = ACTIONS(999), - [aux_sym_else_clause_token1] = ACTIONS(999), - [aux_sym_match_expression_token1] = ACTIONS(999), - [aux_sym_match_default_expression_token1] = ACTIONS(999), - [aux_sym_switch_statement_token1] = ACTIONS(999), - [aux_sym_switch_block_token1] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(997), - [aux_sym_clone_expression_token1] = ACTIONS(999), - [aux_sym_print_intrinsic_token1] = ACTIONS(999), - [aux_sym_object_creation_expression_token1] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(997), - [anon_sym_PLUS_PLUS] = ACTIONS(997), - [aux_sym__list_destructing_token1] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_self] = ACTIONS(999), - [anon_sym_parent] = ACTIONS(999), - [aux_sym__argument_name_token1] = ACTIONS(999), - [aux_sym__argument_name_token2] = ACTIONS(999), - [anon_sym_POUND_LBRACK] = ACTIONS(997), - [aux_sym_encapsed_string_token1] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(997), - [aux_sym_string_token1] = ACTIONS(997), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_LT_LT_LT] = ACTIONS(997), - [anon_sym_BQUOTE] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [aux_sym_yield_expression_token1] = ACTIONS(999), - [aux_sym_include_expression_token1] = ACTIONS(999), - [aux_sym_include_once_expression_token1] = ACTIONS(999), - [aux_sym_require_expression_token1] = ACTIONS(999), - [aux_sym_require_once_expression_token1] = ACTIONS(999), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(997), + [ts_builtin_sym_end] = ACTIONS(1035), + [sym_name] = ACTIONS(1037), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1035), + [aux_sym_function_static_declaration_token1] = ACTIONS(1037), + [aux_sym_global_declaration_token1] = ACTIONS(1037), + [aux_sym_namespace_definition_token1] = ACTIONS(1037), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1037), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1037), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1037), + [anon_sym_BSLASH] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [aux_sym_trait_declaration_token1] = ACTIONS(1037), + [aux_sym_interface_declaration_token1] = ACTIONS(1037), + [aux_sym_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), + [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_catch_clause_token1] = ACTIONS(1039), + [aux_sym_finally_clause_token1] = ACTIONS(1041), + [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(5), + [sym_grit_metavariable] = ACTIONS(1035), }, [425] = { [sym_text_interpolation] = STATE(425), - [sym_else_if_clause] = STATE(515), - [sym_else_clause] = STATE(512), - [aux_sym_if_statement_repeat1] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(1005), - [sym_name] = ACTIONS(1007), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1005), - [aux_sym_function_static_declaration_token1] = ACTIONS(1007), - [aux_sym_global_declaration_token1] = ACTIONS(1007), - [aux_sym_namespace_definition_token1] = ACTIONS(1007), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1007), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1007), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1007), - [anon_sym_BSLASH] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [aux_sym_trait_declaration_token1] = ACTIONS(1007), - [aux_sym_interface_declaration_token1] = ACTIONS(1007), - [aux_sym_enum_declaration_token1] = ACTIONS(1007), - [aux_sym_enum_case_token1] = ACTIONS(1007), - [aux_sym_class_declaration_token1] = ACTIONS(1007), - [aux_sym_final_modifier_token1] = ACTIONS(1007), - [aux_sym_abstract_modifier_token1] = ACTIONS(1007), - [aux_sym_readonly_modifier_token1] = ACTIONS(1007), - [aux_sym_visibility_modifier_token1] = ACTIONS(1007), - [aux_sym_visibility_modifier_token2] = ACTIONS(1007), - [aux_sym_visibility_modifier_token3] = ACTIONS(1007), - [aux_sym__arrow_function_header_token1] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1005), - [aux_sym_cast_type_token1] = ACTIONS(1007), - [aux_sym_echo_statement_token1] = ACTIONS(1007), - [aux_sym_exit_statement_token1] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1007), - [aux_sym_declare_statement_token1] = ACTIONS(1007), - [aux_sym_declare_statement_token2] = ACTIONS(1007), - [sym_float] = ACTIONS(1007), - [aux_sym_try_statement_token1] = ACTIONS(1007), - [aux_sym_goto_statement_token1] = ACTIONS(1007), - [aux_sym_continue_statement_token1] = ACTIONS(1007), - [aux_sym_break_statement_token1] = ACTIONS(1007), - [sym_integer] = ACTIONS(1007), - [aux_sym_return_statement_token1] = ACTIONS(1007), - [aux_sym_throw_expression_token1] = ACTIONS(1007), - [aux_sym_while_statement_token1] = ACTIONS(1007), - [aux_sym_while_statement_token2] = ACTIONS(1007), - [aux_sym_do_statement_token1] = ACTIONS(1007), - [aux_sym_for_statement_token1] = ACTIONS(1007), - [aux_sym_for_statement_token2] = ACTIONS(1007), - [aux_sym_foreach_statement_token1] = ACTIONS(1007), - [aux_sym_foreach_statement_token2] = ACTIONS(1007), - [aux_sym_if_statement_token1] = ACTIONS(1007), - [aux_sym_if_statement_token2] = ACTIONS(1007), - [aux_sym_else_if_clause_token1] = ACTIONS(1009), - [aux_sym_else_clause_token1] = ACTIONS(1012), - [aux_sym_match_expression_token1] = ACTIONS(1007), - [aux_sym_match_default_expression_token1] = ACTIONS(1007), - [aux_sym_switch_statement_token1] = ACTIONS(1007), - [aux_sym_switch_block_token1] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), - [aux_sym_clone_expression_token1] = ACTIONS(1007), - [aux_sym_print_intrinsic_token1] = ACTIONS(1007), - [aux_sym_object_creation_expression_token1] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [aux_sym__list_destructing_token1] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_self] = ACTIONS(1007), - [anon_sym_parent] = ACTIONS(1007), - [aux_sym__argument_name_token1] = ACTIONS(1007), - [aux_sym__argument_name_token2] = ACTIONS(1007), - [anon_sym_POUND_LBRACK] = ACTIONS(1005), - [aux_sym_encapsed_string_token1] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [aux_sym_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_LT_LT_LT] = ACTIONS(1005), - [anon_sym_BQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [aux_sym_yield_expression_token1] = ACTIONS(1007), - [aux_sym_include_expression_token1] = ACTIONS(1007), - [aux_sym_include_once_expression_token1] = ACTIONS(1007), - [aux_sym_require_expression_token1] = ACTIONS(1007), - [aux_sym_require_once_expression_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1005), + [sym_else_if_clause] = STATE(493), + [sym_else_clause] = STATE(509), + [aux_sym_if_statement_repeat1] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_name] = ACTIONS(1045), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1043), + [aux_sym_function_static_declaration_token1] = ACTIONS(1045), + [aux_sym_global_declaration_token1] = ACTIONS(1045), + [aux_sym_namespace_definition_token1] = ACTIONS(1045), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1045), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1045), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1045), + [anon_sym_BSLASH] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [aux_sym_trait_declaration_token1] = ACTIONS(1045), + [aux_sym_interface_declaration_token1] = ACTIONS(1045), + [aux_sym_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(1047), + [aux_sym_else_clause_token1] = ACTIONS(1049), + [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(5), + [sym_grit_metavariable] = ACTIONS(1043), }, [426] = { [sym_text_interpolation] = STATE(426), - [sym_else_if_clause] = STATE(515), - [sym_else_clause] = STATE(512), - [aux_sym_if_statement_repeat1] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(1005), - [sym_name] = ACTIONS(1007), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1005), - [aux_sym_function_static_declaration_token1] = ACTIONS(1007), - [aux_sym_global_declaration_token1] = ACTIONS(1007), - [aux_sym_namespace_definition_token1] = ACTIONS(1007), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1007), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1007), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1007), - [anon_sym_BSLASH] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [aux_sym_trait_declaration_token1] = ACTIONS(1007), - [aux_sym_interface_declaration_token1] = ACTIONS(1007), - [aux_sym_enum_declaration_token1] = ACTIONS(1007), - [aux_sym_enum_case_token1] = ACTIONS(1007), - [aux_sym_class_declaration_token1] = ACTIONS(1007), - [aux_sym_final_modifier_token1] = ACTIONS(1007), - [aux_sym_abstract_modifier_token1] = ACTIONS(1007), - [aux_sym_readonly_modifier_token1] = ACTIONS(1007), - [aux_sym_visibility_modifier_token1] = ACTIONS(1007), - [aux_sym_visibility_modifier_token2] = ACTIONS(1007), - [aux_sym_visibility_modifier_token3] = ACTIONS(1007), - [aux_sym__arrow_function_header_token1] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1005), - [aux_sym_cast_type_token1] = ACTIONS(1007), - [aux_sym_echo_statement_token1] = ACTIONS(1007), - [aux_sym_exit_statement_token1] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1007), - [aux_sym_declare_statement_token1] = ACTIONS(1007), - [aux_sym_declare_statement_token2] = ACTIONS(1007), - [sym_float] = ACTIONS(1007), - [aux_sym_try_statement_token1] = ACTIONS(1007), - [aux_sym_goto_statement_token1] = ACTIONS(1007), - [aux_sym_continue_statement_token1] = ACTIONS(1007), - [aux_sym_break_statement_token1] = ACTIONS(1007), - [sym_integer] = ACTIONS(1007), - [aux_sym_return_statement_token1] = ACTIONS(1007), - [aux_sym_throw_expression_token1] = ACTIONS(1007), - [aux_sym_while_statement_token1] = ACTIONS(1007), - [aux_sym_while_statement_token2] = ACTIONS(1007), - [aux_sym_do_statement_token1] = ACTIONS(1007), - [aux_sym_for_statement_token1] = ACTIONS(1007), - [aux_sym_for_statement_token2] = ACTIONS(1007), - [aux_sym_foreach_statement_token1] = ACTIONS(1007), - [aux_sym_foreach_statement_token2] = ACTIONS(1007), - [aux_sym_if_statement_token1] = ACTIONS(1007), - [aux_sym_if_statement_token2] = ACTIONS(1007), - [aux_sym_else_if_clause_token1] = ACTIONS(1015), - [aux_sym_else_clause_token1] = ACTIONS(1017), - [aux_sym_match_expression_token1] = ACTIONS(1007), - [aux_sym_match_default_expression_token1] = ACTIONS(1007), - [aux_sym_switch_statement_token1] = ACTIONS(1007), - [aux_sym_switch_block_token1] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), - [aux_sym_clone_expression_token1] = ACTIONS(1007), - [aux_sym_print_intrinsic_token1] = ACTIONS(1007), - [aux_sym_object_creation_expression_token1] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1005), - [aux_sym__list_destructing_token1] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_self] = ACTIONS(1007), - [anon_sym_parent] = ACTIONS(1007), - [aux_sym__argument_name_token1] = ACTIONS(1007), - [aux_sym__argument_name_token2] = ACTIONS(1007), - [anon_sym_POUND_LBRACK] = ACTIONS(1005), - [aux_sym_encapsed_string_token1] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [aux_sym_string_token1] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1005), - [anon_sym_LT_LT_LT] = ACTIONS(1005), - [anon_sym_BQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [aux_sym_yield_expression_token1] = ACTIONS(1007), - [aux_sym_include_expression_token1] = ACTIONS(1007), - [aux_sym_include_once_expression_token1] = ACTIONS(1007), - [aux_sym_require_expression_token1] = ACTIONS(1007), - [aux_sym_require_once_expression_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1005), + [sym_else_if_clause] = STATE(493), + [sym_else_clause] = STATE(492), + [aux_sym_if_statement_repeat1] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_name] = ACTIONS(1053), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1051), + [aux_sym_function_static_declaration_token1] = ACTIONS(1053), + [aux_sym_global_declaration_token1] = ACTIONS(1053), + [aux_sym_namespace_definition_token1] = ACTIONS(1053), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1053), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1053), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1053), + [anon_sym_BSLASH] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [aux_sym_trait_declaration_token1] = ACTIONS(1053), + [aux_sym_interface_declaration_token1] = ACTIONS(1053), + [aux_sym_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(1047), + [aux_sym_else_clause_token1] = ACTIONS(1049), + [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_grit_metavariable] = ACTIONS(1051), }, [427] = { [sym_text_interpolation] = STATE(427), - [sym_else_if_clause] = STATE(515), - [sym_else_clause] = STATE(538), - [aux_sym_if_statement_repeat1] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(1019), - [sym_name] = ACTIONS(1021), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1019), - [aux_sym_function_static_declaration_token1] = ACTIONS(1021), - [aux_sym_global_declaration_token1] = ACTIONS(1021), - [aux_sym_namespace_definition_token1] = ACTIONS(1021), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1021), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1021), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1021), - [anon_sym_BSLASH] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [aux_sym_trait_declaration_token1] = ACTIONS(1021), - [aux_sym_interface_declaration_token1] = ACTIONS(1021), - [aux_sym_enum_declaration_token1] = ACTIONS(1021), - [aux_sym_enum_case_token1] = ACTIONS(1021), - [aux_sym_class_declaration_token1] = ACTIONS(1021), - [aux_sym_final_modifier_token1] = ACTIONS(1021), - [aux_sym_abstract_modifier_token1] = ACTIONS(1021), - [aux_sym_readonly_modifier_token1] = ACTIONS(1021), - [aux_sym_visibility_modifier_token1] = ACTIONS(1021), - [aux_sym_visibility_modifier_token2] = ACTIONS(1021), - [aux_sym_visibility_modifier_token3] = ACTIONS(1021), - [aux_sym__arrow_function_header_token1] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1019), - [aux_sym_cast_type_token1] = ACTIONS(1021), - [aux_sym_echo_statement_token1] = ACTIONS(1021), - [aux_sym_exit_statement_token1] = ACTIONS(1021), - [anon_sym_unset] = ACTIONS(1021), - [aux_sym_declare_statement_token1] = ACTIONS(1021), - [aux_sym_declare_statement_token2] = ACTIONS(1021), - [sym_float] = ACTIONS(1021), - [aux_sym_try_statement_token1] = ACTIONS(1021), - [aux_sym_goto_statement_token1] = ACTIONS(1021), - [aux_sym_continue_statement_token1] = ACTIONS(1021), - [aux_sym_break_statement_token1] = ACTIONS(1021), - [sym_integer] = ACTIONS(1021), - [aux_sym_return_statement_token1] = ACTIONS(1021), - [aux_sym_throw_expression_token1] = ACTIONS(1021), - [aux_sym_while_statement_token1] = ACTIONS(1021), - [aux_sym_while_statement_token2] = ACTIONS(1021), - [aux_sym_do_statement_token1] = ACTIONS(1021), - [aux_sym_for_statement_token1] = ACTIONS(1021), - [aux_sym_for_statement_token2] = ACTIONS(1021), - [aux_sym_foreach_statement_token1] = ACTIONS(1021), - [aux_sym_foreach_statement_token2] = ACTIONS(1021), - [aux_sym_if_statement_token1] = ACTIONS(1021), - [aux_sym_if_statement_token2] = ACTIONS(1021), - [aux_sym_else_if_clause_token1] = ACTIONS(1015), - [aux_sym_else_clause_token1] = ACTIONS(1017), - [aux_sym_match_expression_token1] = ACTIONS(1021), - [aux_sym_match_default_expression_token1] = ACTIONS(1021), - [aux_sym_switch_statement_token1] = ACTIONS(1021), - [aux_sym_switch_block_token1] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1019), - [aux_sym_clone_expression_token1] = ACTIONS(1021), - [aux_sym_print_intrinsic_token1] = ACTIONS(1021), - [aux_sym_object_creation_expression_token1] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1019), - [aux_sym__list_destructing_token1] = ACTIONS(1021), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_self] = ACTIONS(1021), - [anon_sym_parent] = ACTIONS(1021), - [aux_sym__argument_name_token1] = ACTIONS(1021), - [aux_sym__argument_name_token2] = ACTIONS(1021), - [anon_sym_POUND_LBRACK] = ACTIONS(1019), - [aux_sym_encapsed_string_token1] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [aux_sym_string_token1] = ACTIONS(1019), - [anon_sym_SQUOTE] = ACTIONS(1019), - [anon_sym_LT_LT_LT] = ACTIONS(1019), - [anon_sym_BQUOTE] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1019), - [aux_sym_yield_expression_token1] = ACTIONS(1021), - [aux_sym_include_expression_token1] = ACTIONS(1021), - [aux_sym_include_once_expression_token1] = ACTIONS(1021), - [aux_sym_require_expression_token1] = ACTIONS(1021), - [aux_sym_require_once_expression_token1] = ACTIONS(1021), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1019), + [sym_else_if_clause] = STATE(493), + [sym_else_clause] = STATE(492), + [aux_sym_if_statement_repeat1] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_name] = ACTIONS(1053), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1051), + [aux_sym_function_static_declaration_token1] = ACTIONS(1053), + [aux_sym_global_declaration_token1] = ACTIONS(1053), + [aux_sym_namespace_definition_token1] = ACTIONS(1053), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1053), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1053), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1053), + [anon_sym_BSLASH] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [aux_sym_trait_declaration_token1] = ACTIONS(1053), + [aux_sym_interface_declaration_token1] = ACTIONS(1053), + [aux_sym_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(1055), + [aux_sym_else_clause_token1] = ACTIONS(1058), + [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_grit_metavariable] = ACTIONS(1051), }, [428] = { [sym_text_interpolation] = STATE(428), - [sym_else_if_clause] = STATE(515), - [sym_else_clause] = STATE(538), - [aux_sym_if_statement_repeat1] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(1019), - [sym_name] = ACTIONS(1021), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1019), - [aux_sym_function_static_declaration_token1] = ACTIONS(1021), - [aux_sym_global_declaration_token1] = ACTIONS(1021), - [aux_sym_namespace_definition_token1] = ACTIONS(1021), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1021), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1021), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1021), - [anon_sym_BSLASH] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [aux_sym_trait_declaration_token1] = ACTIONS(1021), - [aux_sym_interface_declaration_token1] = ACTIONS(1021), - [aux_sym_enum_declaration_token1] = ACTIONS(1021), - [aux_sym_enum_case_token1] = ACTIONS(1021), - [aux_sym_class_declaration_token1] = ACTIONS(1021), - [aux_sym_final_modifier_token1] = ACTIONS(1021), - [aux_sym_abstract_modifier_token1] = ACTIONS(1021), - [aux_sym_readonly_modifier_token1] = ACTIONS(1021), - [aux_sym_visibility_modifier_token1] = ACTIONS(1021), - [aux_sym_visibility_modifier_token2] = ACTIONS(1021), - [aux_sym_visibility_modifier_token3] = ACTIONS(1021), - [aux_sym__arrow_function_header_token1] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1019), - [aux_sym_cast_type_token1] = ACTIONS(1021), - [aux_sym_echo_statement_token1] = ACTIONS(1021), - [aux_sym_exit_statement_token1] = ACTIONS(1021), - [anon_sym_unset] = ACTIONS(1021), - [aux_sym_declare_statement_token1] = ACTIONS(1021), - [aux_sym_declare_statement_token2] = ACTIONS(1021), - [sym_float] = ACTIONS(1021), - [aux_sym_try_statement_token1] = ACTIONS(1021), - [aux_sym_goto_statement_token1] = ACTIONS(1021), - [aux_sym_continue_statement_token1] = ACTIONS(1021), - [aux_sym_break_statement_token1] = ACTIONS(1021), - [sym_integer] = ACTIONS(1021), - [aux_sym_return_statement_token1] = ACTIONS(1021), - [aux_sym_throw_expression_token1] = ACTIONS(1021), - [aux_sym_while_statement_token1] = ACTIONS(1021), - [aux_sym_while_statement_token2] = ACTIONS(1021), - [aux_sym_do_statement_token1] = ACTIONS(1021), - [aux_sym_for_statement_token1] = ACTIONS(1021), - [aux_sym_for_statement_token2] = ACTIONS(1021), - [aux_sym_foreach_statement_token1] = ACTIONS(1021), - [aux_sym_foreach_statement_token2] = ACTIONS(1021), - [aux_sym_if_statement_token1] = ACTIONS(1021), - [aux_sym_if_statement_token2] = ACTIONS(1021), - [aux_sym_else_if_clause_token1] = ACTIONS(1023), - [aux_sym_else_clause_token1] = ACTIONS(1026), - [aux_sym_match_expression_token1] = ACTIONS(1021), - [aux_sym_match_default_expression_token1] = ACTIONS(1021), - [aux_sym_switch_statement_token1] = ACTIONS(1021), - [aux_sym_switch_block_token1] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1019), - [aux_sym_clone_expression_token1] = ACTIONS(1021), - [aux_sym_print_intrinsic_token1] = ACTIONS(1021), - [aux_sym_object_creation_expression_token1] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1019), - [aux_sym__list_destructing_token1] = ACTIONS(1021), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_self] = ACTIONS(1021), - [anon_sym_parent] = ACTIONS(1021), - [aux_sym__argument_name_token1] = ACTIONS(1021), - [aux_sym__argument_name_token2] = ACTIONS(1021), - [anon_sym_POUND_LBRACK] = ACTIONS(1019), - [aux_sym_encapsed_string_token1] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [aux_sym_string_token1] = ACTIONS(1019), - [anon_sym_SQUOTE] = ACTIONS(1019), - [anon_sym_LT_LT_LT] = ACTIONS(1019), - [anon_sym_BQUOTE] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1019), - [aux_sym_yield_expression_token1] = ACTIONS(1021), - [aux_sym_include_expression_token1] = ACTIONS(1021), - [aux_sym_include_once_expression_token1] = ACTIONS(1021), - [aux_sym_require_expression_token1] = ACTIONS(1021), - [aux_sym_require_once_expression_token1] = ACTIONS(1021), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1019), + [sym_else_if_clause] = STATE(493), + [sym_else_clause] = STATE(509), + [aux_sym_if_statement_repeat1] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_name] = ACTIONS(1045), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1043), + [aux_sym_function_static_declaration_token1] = ACTIONS(1045), + [aux_sym_global_declaration_token1] = ACTIONS(1045), + [aux_sym_namespace_definition_token1] = ACTIONS(1045), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1045), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1045), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1045), + [anon_sym_BSLASH] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [aux_sym_trait_declaration_token1] = ACTIONS(1045), + [aux_sym_interface_declaration_token1] = ACTIONS(1045), + [aux_sym_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(1061), + [aux_sym_else_clause_token1] = ACTIONS(1064), + [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(5), + [sym_grit_metavariable] = ACTIONS(1043), }, [429] = { [sym_text_interpolation] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(1029), - [sym_name] = ACTIONS(1031), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1029), - [aux_sym_function_static_declaration_token1] = ACTIONS(1031), - [aux_sym_global_declaration_token1] = ACTIONS(1031), - [aux_sym_namespace_definition_token1] = ACTIONS(1031), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1031), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1031), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1031), - [anon_sym_BSLASH] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [aux_sym_trait_declaration_token1] = ACTIONS(1031), - [aux_sym_interface_declaration_token1] = ACTIONS(1031), - [aux_sym_enum_declaration_token1] = ACTIONS(1031), - [aux_sym_enum_case_token1] = ACTIONS(1031), - [aux_sym_class_declaration_token1] = ACTIONS(1031), - [aux_sym_final_modifier_token1] = ACTIONS(1031), - [aux_sym_abstract_modifier_token1] = ACTIONS(1031), - [aux_sym_readonly_modifier_token1] = ACTIONS(1031), - [aux_sym_visibility_modifier_token1] = ACTIONS(1031), - [aux_sym_visibility_modifier_token2] = ACTIONS(1031), - [aux_sym_visibility_modifier_token3] = ACTIONS(1031), - [aux_sym__arrow_function_header_token1] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1029), - [aux_sym_cast_type_token1] = ACTIONS(1031), - [aux_sym_echo_statement_token1] = ACTIONS(1031), - [aux_sym_exit_statement_token1] = ACTIONS(1031), - [anon_sym_unset] = ACTIONS(1031), - [aux_sym_declare_statement_token1] = ACTIONS(1031), - [aux_sym_declare_statement_token2] = ACTIONS(1031), - [sym_float] = ACTIONS(1031), - [aux_sym_try_statement_token1] = ACTIONS(1031), - [aux_sym_catch_clause_token1] = ACTIONS(1031), - [aux_sym_finally_clause_token1] = ACTIONS(1031), - [aux_sym_goto_statement_token1] = ACTIONS(1031), - [aux_sym_continue_statement_token1] = ACTIONS(1031), - [aux_sym_break_statement_token1] = ACTIONS(1031), - [sym_integer] = ACTIONS(1031), - [aux_sym_return_statement_token1] = ACTIONS(1031), - [aux_sym_throw_expression_token1] = ACTIONS(1031), - [aux_sym_while_statement_token1] = ACTIONS(1031), - [aux_sym_while_statement_token2] = ACTIONS(1031), - [aux_sym_do_statement_token1] = ACTIONS(1031), - [aux_sym_for_statement_token1] = ACTIONS(1031), - [aux_sym_for_statement_token2] = ACTIONS(1031), - [aux_sym_foreach_statement_token1] = ACTIONS(1031), - [aux_sym_foreach_statement_token2] = ACTIONS(1031), - [aux_sym_if_statement_token1] = ACTIONS(1031), - [aux_sym_if_statement_token2] = ACTIONS(1031), - [aux_sym_else_if_clause_token1] = ACTIONS(1031), - [aux_sym_else_clause_token1] = ACTIONS(1031), - [aux_sym_match_expression_token1] = ACTIONS(1031), - [aux_sym_match_default_expression_token1] = ACTIONS(1031), - [aux_sym_switch_statement_token1] = ACTIONS(1031), - [aux_sym_switch_block_token1] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1031), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_TILDE] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [aux_sym_clone_expression_token1] = ACTIONS(1031), - [aux_sym_print_intrinsic_token1] = ACTIONS(1031), - [aux_sym_object_creation_expression_token1] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [aux_sym__list_destructing_token1] = ACTIONS(1031), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_self] = ACTIONS(1031), - [anon_sym_parent] = ACTIONS(1031), - [aux_sym__argument_name_token1] = ACTIONS(1031), - [aux_sym__argument_name_token2] = ACTIONS(1031), - [anon_sym_POUND_LBRACK] = ACTIONS(1029), - [aux_sym_encapsed_string_token1] = ACTIONS(1029), - [anon_sym_DQUOTE] = ACTIONS(1029), - [aux_sym_string_token1] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1029), - [anon_sym_LT_LT_LT] = ACTIONS(1029), - [anon_sym_BQUOTE] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1029), - [aux_sym_yield_expression_token1] = ACTIONS(1031), - [aux_sym_include_expression_token1] = ACTIONS(1031), - [aux_sym_include_once_expression_token1] = ACTIONS(1031), - [aux_sym_require_expression_token1] = ACTIONS(1031), - [aux_sym_require_once_expression_token1] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1029), + [ts_builtin_sym_end] = ACTIONS(1067), + [sym_name] = ACTIONS(1069), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1067), + [aux_sym_function_static_declaration_token1] = ACTIONS(1069), + [aux_sym_global_declaration_token1] = ACTIONS(1069), + [aux_sym_namespace_definition_token1] = ACTIONS(1069), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1069), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1069), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1067), + [anon_sym_LBRACE] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(1067), + [aux_sym_trait_declaration_token1] = ACTIONS(1069), + [aux_sym_interface_declaration_token1] = ACTIONS(1069), + [aux_sym_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), + [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_catch_clause_token1] = ACTIONS(1069), + [aux_sym_finally_clause_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(5), + [sym_grit_metavariable] = ACTIONS(1067), }, [430] = { [sym_text_interpolation] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1033), - [sym_name] = ACTIONS(1035), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1033), - [aux_sym_function_static_declaration_token1] = ACTIONS(1035), - [aux_sym_global_declaration_token1] = ACTIONS(1035), - [aux_sym_namespace_definition_token1] = ACTIONS(1035), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1035), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1035), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1035), - [anon_sym_BSLASH] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [aux_sym_trait_declaration_token1] = ACTIONS(1035), - [aux_sym_interface_declaration_token1] = ACTIONS(1035), - [aux_sym_enum_declaration_token1] = ACTIONS(1035), - [aux_sym_enum_case_token1] = ACTIONS(1035), - [aux_sym_class_declaration_token1] = ACTIONS(1035), - [aux_sym_final_modifier_token1] = ACTIONS(1035), - [aux_sym_abstract_modifier_token1] = ACTIONS(1035), - [aux_sym_readonly_modifier_token1] = ACTIONS(1035), - [aux_sym_visibility_modifier_token1] = ACTIONS(1035), - [aux_sym_visibility_modifier_token2] = ACTIONS(1035), - [aux_sym_visibility_modifier_token3] = ACTIONS(1035), - [aux_sym__arrow_function_header_token1] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1033), - [aux_sym_cast_type_token1] = ACTIONS(1035), - [aux_sym_echo_statement_token1] = ACTIONS(1035), - [aux_sym_exit_statement_token1] = ACTIONS(1035), - [anon_sym_unset] = ACTIONS(1035), - [aux_sym_declare_statement_token1] = ACTIONS(1035), - [aux_sym_declare_statement_token2] = ACTIONS(1035), - [sym_float] = ACTIONS(1035), - [aux_sym_try_statement_token1] = ACTIONS(1035), - [aux_sym_catch_clause_token1] = ACTIONS(1035), - [aux_sym_finally_clause_token1] = ACTIONS(1035), - [aux_sym_goto_statement_token1] = ACTIONS(1035), - [aux_sym_continue_statement_token1] = ACTIONS(1035), - [aux_sym_break_statement_token1] = ACTIONS(1035), - [sym_integer] = ACTIONS(1035), - [aux_sym_return_statement_token1] = ACTIONS(1035), - [aux_sym_throw_expression_token1] = ACTIONS(1035), - [aux_sym_while_statement_token1] = ACTIONS(1035), - [aux_sym_while_statement_token2] = ACTIONS(1035), - [aux_sym_do_statement_token1] = ACTIONS(1035), - [aux_sym_for_statement_token1] = ACTIONS(1035), - [aux_sym_for_statement_token2] = ACTIONS(1035), - [aux_sym_foreach_statement_token1] = ACTIONS(1035), - [aux_sym_foreach_statement_token2] = ACTIONS(1035), - [aux_sym_if_statement_token1] = ACTIONS(1035), - [aux_sym_if_statement_token2] = ACTIONS(1035), - [aux_sym_else_if_clause_token1] = ACTIONS(1035), - [aux_sym_else_clause_token1] = ACTIONS(1035), - [aux_sym_match_expression_token1] = ACTIONS(1035), - [aux_sym_match_default_expression_token1] = ACTIONS(1035), - [aux_sym_switch_statement_token1] = ACTIONS(1035), - [aux_sym_switch_block_token1] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1035), - [anon_sym_DASH] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1033), - [aux_sym_clone_expression_token1] = ACTIONS(1035), - [aux_sym_print_intrinsic_token1] = ACTIONS(1035), - [aux_sym_object_creation_expression_token1] = ACTIONS(1035), - [anon_sym_DASH_DASH] = ACTIONS(1033), - [anon_sym_PLUS_PLUS] = ACTIONS(1033), - [aux_sym__list_destructing_token1] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_self] = ACTIONS(1035), - [anon_sym_parent] = ACTIONS(1035), - [aux_sym__argument_name_token1] = ACTIONS(1035), - [aux_sym__argument_name_token2] = ACTIONS(1035), - [anon_sym_POUND_LBRACK] = ACTIONS(1033), - [aux_sym_encapsed_string_token1] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [aux_sym_string_token1] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_LT_LT_LT] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [aux_sym_yield_expression_token1] = ACTIONS(1035), - [aux_sym_include_expression_token1] = ACTIONS(1035), - [aux_sym_include_once_expression_token1] = ACTIONS(1035), - [aux_sym_require_expression_token1] = ACTIONS(1035), - [aux_sym_require_once_expression_token1] = ACTIONS(1035), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1033), + [sym_else_if_clause] = STATE(493), + [aux_sym_if_statement_repeat1] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1071), + [sym_name] = ACTIONS(1073), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1071), + [aux_sym_function_static_declaration_token1] = ACTIONS(1073), + [aux_sym_global_declaration_token1] = ACTIONS(1073), + [aux_sym_namespace_definition_token1] = ACTIONS(1073), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1073), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1073), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1073), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(1071), + [aux_sym_trait_declaration_token1] = ACTIONS(1073), + [aux_sym_interface_declaration_token1] = ACTIONS(1073), + [aux_sym_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), + [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(1075), + [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(5), + [sym_grit_metavariable] = ACTIONS(1071), }, [431] = { [sym_text_interpolation] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(1037), - [sym_name] = ACTIONS(1039), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1037), - [aux_sym_function_static_declaration_token1] = ACTIONS(1039), - [aux_sym_global_declaration_token1] = ACTIONS(1039), - [aux_sym_namespace_definition_token1] = ACTIONS(1039), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1039), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1039), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1039), - [anon_sym_BSLASH] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_RBRACE] = ACTIONS(1037), - [aux_sym_trait_declaration_token1] = ACTIONS(1039), - [aux_sym_interface_declaration_token1] = ACTIONS(1039), - [aux_sym_enum_declaration_token1] = ACTIONS(1039), - [aux_sym_enum_case_token1] = ACTIONS(1039), - [aux_sym_class_declaration_token1] = ACTIONS(1039), - [aux_sym_final_modifier_token1] = ACTIONS(1039), - [aux_sym_abstract_modifier_token1] = ACTIONS(1039), - [aux_sym_readonly_modifier_token1] = ACTIONS(1039), - [aux_sym_visibility_modifier_token1] = ACTIONS(1039), - [aux_sym_visibility_modifier_token2] = ACTIONS(1039), - [aux_sym_visibility_modifier_token3] = ACTIONS(1039), - [aux_sym__arrow_function_header_token1] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1037), - [aux_sym_cast_type_token1] = ACTIONS(1039), - [aux_sym_echo_statement_token1] = ACTIONS(1039), - [aux_sym_exit_statement_token1] = ACTIONS(1039), - [anon_sym_unset] = ACTIONS(1039), - [aux_sym_declare_statement_token1] = ACTIONS(1039), - [aux_sym_declare_statement_token2] = ACTIONS(1039), - [sym_float] = ACTIONS(1039), - [aux_sym_try_statement_token1] = ACTIONS(1039), - [aux_sym_catch_clause_token1] = ACTIONS(1039), - [aux_sym_finally_clause_token1] = ACTIONS(1039), - [aux_sym_goto_statement_token1] = ACTIONS(1039), - [aux_sym_continue_statement_token1] = ACTIONS(1039), - [aux_sym_break_statement_token1] = ACTIONS(1039), - [sym_integer] = ACTIONS(1039), - [aux_sym_return_statement_token1] = ACTIONS(1039), - [aux_sym_throw_expression_token1] = ACTIONS(1039), - [aux_sym_while_statement_token1] = ACTIONS(1039), - [aux_sym_while_statement_token2] = ACTIONS(1039), - [aux_sym_do_statement_token1] = ACTIONS(1039), - [aux_sym_for_statement_token1] = ACTIONS(1039), - [aux_sym_for_statement_token2] = ACTIONS(1039), - [aux_sym_foreach_statement_token1] = ACTIONS(1039), - [aux_sym_foreach_statement_token2] = ACTIONS(1039), - [aux_sym_if_statement_token1] = ACTIONS(1039), - [aux_sym_if_statement_token2] = ACTIONS(1039), - [aux_sym_else_if_clause_token1] = ACTIONS(1039), - [aux_sym_else_clause_token1] = ACTIONS(1039), - [aux_sym_match_expression_token1] = ACTIONS(1039), - [aux_sym_match_default_expression_token1] = ACTIONS(1039), - [aux_sym_switch_statement_token1] = ACTIONS(1039), - [aux_sym_switch_block_token1] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(1037), - [aux_sym_clone_expression_token1] = ACTIONS(1039), - [aux_sym_print_intrinsic_token1] = ACTIONS(1039), - [aux_sym_object_creation_expression_token1] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [aux_sym__list_destructing_token1] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1037), - [anon_sym_self] = ACTIONS(1039), - [anon_sym_parent] = ACTIONS(1039), - [aux_sym__argument_name_token1] = ACTIONS(1039), - [aux_sym__argument_name_token2] = ACTIONS(1039), - [anon_sym_POUND_LBRACK] = ACTIONS(1037), - [aux_sym_encapsed_string_token1] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [aux_sym_string_token1] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [aux_sym_yield_expression_token1] = ACTIONS(1039), - [aux_sym_include_expression_token1] = ACTIONS(1039), - [aux_sym_include_once_expression_token1] = ACTIONS(1039), - [aux_sym_require_expression_token1] = ACTIONS(1039), - [aux_sym_require_once_expression_token1] = ACTIONS(1039), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1037), - }, - [432] = { - [sym_text_interpolation] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_name] = ACTIONS(1043), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1041), - [aux_sym_function_static_declaration_token1] = ACTIONS(1043), - [aux_sym_global_declaration_token1] = ACTIONS(1043), - [aux_sym_namespace_definition_token1] = ACTIONS(1043), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1043), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1043), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1043), - [anon_sym_BSLASH] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [aux_sym_trait_declaration_token1] = ACTIONS(1043), - [aux_sym_interface_declaration_token1] = ACTIONS(1043), - [aux_sym_enum_declaration_token1] = ACTIONS(1043), - [aux_sym_enum_case_token1] = ACTIONS(1043), - [aux_sym_class_declaration_token1] = ACTIONS(1043), - [aux_sym_final_modifier_token1] = ACTIONS(1043), - [aux_sym_abstract_modifier_token1] = ACTIONS(1043), - [aux_sym_readonly_modifier_token1] = ACTIONS(1043), - [aux_sym_visibility_modifier_token1] = ACTIONS(1043), - [aux_sym_visibility_modifier_token2] = ACTIONS(1043), - [aux_sym_visibility_modifier_token3] = ACTIONS(1043), - [aux_sym__arrow_function_header_token1] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1041), - [aux_sym_cast_type_token1] = ACTIONS(1043), - [aux_sym_echo_statement_token1] = ACTIONS(1043), - [aux_sym_exit_statement_token1] = ACTIONS(1043), - [anon_sym_unset] = ACTIONS(1043), - [aux_sym_declare_statement_token1] = ACTIONS(1043), - [aux_sym_declare_statement_token2] = ACTIONS(1043), - [sym_float] = ACTIONS(1043), - [aux_sym_try_statement_token1] = ACTIONS(1043), - [aux_sym_catch_clause_token1] = ACTIONS(1043), - [aux_sym_finally_clause_token1] = ACTIONS(1043), - [aux_sym_goto_statement_token1] = ACTIONS(1043), - [aux_sym_continue_statement_token1] = ACTIONS(1043), - [aux_sym_break_statement_token1] = ACTIONS(1043), - [sym_integer] = ACTIONS(1043), - [aux_sym_return_statement_token1] = ACTIONS(1043), - [aux_sym_throw_expression_token1] = ACTIONS(1043), - [aux_sym_while_statement_token1] = ACTIONS(1043), - [aux_sym_while_statement_token2] = ACTIONS(1043), - [aux_sym_do_statement_token1] = ACTIONS(1043), - [aux_sym_for_statement_token1] = ACTIONS(1043), - [aux_sym_for_statement_token2] = ACTIONS(1043), - [aux_sym_foreach_statement_token1] = ACTIONS(1043), - [aux_sym_foreach_statement_token2] = ACTIONS(1043), - [aux_sym_if_statement_token1] = ACTIONS(1043), - [aux_sym_if_statement_token2] = ACTIONS(1043), - [aux_sym_else_if_clause_token1] = ACTIONS(1043), - [aux_sym_else_clause_token1] = ACTIONS(1043), - [aux_sym_match_expression_token1] = ACTIONS(1043), - [aux_sym_match_default_expression_token1] = ACTIONS(1043), - [aux_sym_switch_statement_token1] = ACTIONS(1043), - [aux_sym_switch_block_token1] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1041), - [aux_sym_clone_expression_token1] = ACTIONS(1043), - [aux_sym_print_intrinsic_token1] = ACTIONS(1043), - [aux_sym_object_creation_expression_token1] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1041), - [anon_sym_PLUS_PLUS] = ACTIONS(1041), - [aux_sym__list_destructing_token1] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_self] = ACTIONS(1043), - [anon_sym_parent] = ACTIONS(1043), - [aux_sym__argument_name_token1] = ACTIONS(1043), - [aux_sym__argument_name_token2] = ACTIONS(1043), - [anon_sym_POUND_LBRACK] = ACTIONS(1041), - [aux_sym_encapsed_string_token1] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [aux_sym_string_token1] = ACTIONS(1041), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_LT_LT_LT] = ACTIONS(1041), - [anon_sym_BQUOTE] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1041), - [aux_sym_yield_expression_token1] = ACTIONS(1043), - [aux_sym_include_expression_token1] = ACTIONS(1043), - [aux_sym_include_once_expression_token1] = ACTIONS(1043), - [aux_sym_require_expression_token1] = ACTIONS(1043), - [aux_sym_require_once_expression_token1] = ACTIONS(1043), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1041), - }, - [433] = { - [sym_text_interpolation] = STATE(433), - [sym_else_if_clause] = STATE(515), - [aux_sym_if_statement_repeat1] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(1045), - [sym_name] = ACTIONS(1047), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1045), - [aux_sym_function_static_declaration_token1] = ACTIONS(1047), - [aux_sym_global_declaration_token1] = ACTIONS(1047), - [aux_sym_namespace_definition_token1] = ACTIONS(1047), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1047), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1047), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1047), - [anon_sym_BSLASH] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_RBRACE] = ACTIONS(1045), - [aux_sym_trait_declaration_token1] = ACTIONS(1047), - [aux_sym_interface_declaration_token1] = ACTIONS(1047), - [aux_sym_enum_declaration_token1] = ACTIONS(1047), - [aux_sym_enum_case_token1] = ACTIONS(1047), - [aux_sym_class_declaration_token1] = ACTIONS(1047), - [aux_sym_final_modifier_token1] = ACTIONS(1047), - [aux_sym_abstract_modifier_token1] = ACTIONS(1047), - [aux_sym_readonly_modifier_token1] = ACTIONS(1047), - [aux_sym_visibility_modifier_token1] = ACTIONS(1047), - [aux_sym_visibility_modifier_token2] = ACTIONS(1047), - [aux_sym_visibility_modifier_token3] = ACTIONS(1047), - [aux_sym__arrow_function_header_token1] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1045), - [aux_sym_cast_type_token1] = ACTIONS(1047), - [aux_sym_echo_statement_token1] = ACTIONS(1047), - [aux_sym_exit_statement_token1] = ACTIONS(1047), - [anon_sym_unset] = ACTIONS(1047), - [aux_sym_declare_statement_token1] = ACTIONS(1047), - [aux_sym_declare_statement_token2] = ACTIONS(1047), - [sym_float] = ACTIONS(1047), - [aux_sym_try_statement_token1] = ACTIONS(1047), - [aux_sym_goto_statement_token1] = ACTIONS(1047), - [aux_sym_continue_statement_token1] = ACTIONS(1047), - [aux_sym_break_statement_token1] = ACTIONS(1047), - [sym_integer] = ACTIONS(1047), - [aux_sym_return_statement_token1] = ACTIONS(1047), - [aux_sym_throw_expression_token1] = ACTIONS(1047), - [aux_sym_while_statement_token1] = ACTIONS(1047), - [aux_sym_while_statement_token2] = ACTIONS(1047), - [aux_sym_do_statement_token1] = ACTIONS(1047), - [aux_sym_for_statement_token1] = ACTIONS(1047), - [aux_sym_for_statement_token2] = ACTIONS(1047), - [aux_sym_foreach_statement_token1] = ACTIONS(1047), - [aux_sym_foreach_statement_token2] = ACTIONS(1047), - [aux_sym_if_statement_token1] = ACTIONS(1047), - [aux_sym_if_statement_token2] = ACTIONS(1047), - [aux_sym_else_if_clause_token1] = ACTIONS(1049), - [aux_sym_else_clause_token1] = ACTIONS(1047), - [aux_sym_match_expression_token1] = ACTIONS(1047), - [aux_sym_match_default_expression_token1] = ACTIONS(1047), - [aux_sym_switch_statement_token1] = ACTIONS(1047), - [aux_sym_switch_block_token1] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1047), - [anon_sym_DASH] = ACTIONS(1047), - [anon_sym_TILDE] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AT] = ACTIONS(1045), - [aux_sym_clone_expression_token1] = ACTIONS(1047), - [aux_sym_print_intrinsic_token1] = ACTIONS(1047), - [aux_sym_object_creation_expression_token1] = ACTIONS(1047), - [anon_sym_DASH_DASH] = ACTIONS(1045), - [anon_sym_PLUS_PLUS] = ACTIONS(1045), - [aux_sym__list_destructing_token1] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_self] = ACTIONS(1047), - [anon_sym_parent] = ACTIONS(1047), - [aux_sym__argument_name_token1] = ACTIONS(1047), - [aux_sym__argument_name_token2] = ACTIONS(1047), - [anon_sym_POUND_LBRACK] = ACTIONS(1045), - [aux_sym_encapsed_string_token1] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1045), - [aux_sym_string_token1] = ACTIONS(1045), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_LT_LT_LT] = ACTIONS(1045), - [anon_sym_BQUOTE] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1045), - [aux_sym_yield_expression_token1] = ACTIONS(1047), - [aux_sym_include_expression_token1] = ACTIONS(1047), - [aux_sym_include_once_expression_token1] = ACTIONS(1047), - [aux_sym_require_expression_token1] = ACTIONS(1047), - [aux_sym_require_once_expression_token1] = ACTIONS(1047), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1045), - }, - [434] = { - [sym_text_interpolation] = STATE(434), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1052), - }, - [435] = { - [sym_text_interpolation] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_name] = ACTIONS(1058), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1056), - [aux_sym_function_static_declaration_token1] = ACTIONS(1058), - [aux_sym_global_declaration_token1] = ACTIONS(1058), - [aux_sym_namespace_definition_token1] = ACTIONS(1058), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1058), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1058), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1058), - [anon_sym_BSLASH] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [aux_sym_trait_declaration_token1] = ACTIONS(1058), - [aux_sym_interface_declaration_token1] = ACTIONS(1058), - [aux_sym_enum_declaration_token1] = ACTIONS(1058), - [aux_sym_enum_case_token1] = ACTIONS(1058), - [aux_sym_class_declaration_token1] = ACTIONS(1058), - [aux_sym_final_modifier_token1] = ACTIONS(1058), - [aux_sym_abstract_modifier_token1] = ACTIONS(1058), - [aux_sym_readonly_modifier_token1] = ACTIONS(1058), - [aux_sym_visibility_modifier_token1] = ACTIONS(1058), - [aux_sym_visibility_modifier_token2] = ACTIONS(1058), - [aux_sym_visibility_modifier_token3] = ACTIONS(1058), - [aux_sym__arrow_function_header_token1] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1056), - [aux_sym_cast_type_token1] = ACTIONS(1058), - [aux_sym_echo_statement_token1] = ACTIONS(1058), - [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_catch_clause_token1] = ACTIONS(1058), - [aux_sym_finally_clause_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(5), - [sym_grit_metavariable] = ACTIONS(1056), - }, - [436] = { - [sym_text_interpolation] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(1060), - [sym_name] = ACTIONS(1062), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1064), - [aux_sym_function_static_declaration_token1] = ACTIONS(1062), - [aux_sym_global_declaration_token1] = ACTIONS(1062), - [aux_sym_namespace_definition_token1] = ACTIONS(1062), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1062), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1062), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1062), - [anon_sym_BSLASH] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [aux_sym_trait_declaration_token1] = ACTIONS(1062), - [aux_sym_interface_declaration_token1] = ACTIONS(1062), - [aux_sym_enum_declaration_token1] = ACTIONS(1062), - [aux_sym_enum_case_token1] = ACTIONS(1062), - [aux_sym_class_declaration_token1] = ACTIONS(1062), - [aux_sym_final_modifier_token1] = ACTIONS(1062), - [aux_sym_abstract_modifier_token1] = ACTIONS(1062), - [aux_sym_readonly_modifier_token1] = ACTIONS(1062), - [aux_sym_visibility_modifier_token1] = ACTIONS(1062), - [aux_sym_visibility_modifier_token2] = ACTIONS(1062), - [aux_sym_visibility_modifier_token3] = ACTIONS(1062), - [aux_sym__arrow_function_header_token1] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1060), - [aux_sym_cast_type_token1] = ACTIONS(1062), - [aux_sym_echo_statement_token1] = ACTIONS(1062), - [aux_sym_exit_statement_token1] = ACTIONS(1062), - [anon_sym_unset] = ACTIONS(1062), - [aux_sym_declare_statement_token1] = ACTIONS(1062), - [aux_sym_declare_statement_token2] = ACTIONS(1062), - [sym_float] = ACTIONS(1062), - [aux_sym_try_statement_token1] = ACTIONS(1062), - [aux_sym_goto_statement_token1] = ACTIONS(1062), - [aux_sym_continue_statement_token1] = ACTIONS(1062), - [aux_sym_break_statement_token1] = ACTIONS(1062), - [sym_integer] = ACTIONS(1062), - [aux_sym_return_statement_token1] = ACTIONS(1062), - [aux_sym_throw_expression_token1] = ACTIONS(1062), - [aux_sym_while_statement_token1] = ACTIONS(1062), - [aux_sym_while_statement_token2] = ACTIONS(1062), - [aux_sym_do_statement_token1] = ACTIONS(1062), - [aux_sym_for_statement_token1] = ACTIONS(1062), - [aux_sym_for_statement_token2] = ACTIONS(1062), - [aux_sym_foreach_statement_token1] = ACTIONS(1062), - [aux_sym_foreach_statement_token2] = ACTIONS(1062), - [aux_sym_if_statement_token1] = ACTIONS(1062), - [aux_sym_if_statement_token2] = ACTIONS(1062), - [aux_sym_else_if_clause_token1] = ACTIONS(1062), - [aux_sym_else_clause_token1] = ACTIONS(1062), - [aux_sym_match_expression_token1] = ACTIONS(1062), - [aux_sym_match_default_expression_token1] = ACTIONS(1062), - [aux_sym_switch_statement_token1] = ACTIONS(1062), - [aux_sym_switch_block_token1] = ACTIONS(1062), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_TILDE] = ACTIONS(1060), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(1060), - [aux_sym_clone_expression_token1] = ACTIONS(1062), - [aux_sym_print_intrinsic_token1] = ACTIONS(1062), - [aux_sym_object_creation_expression_token1] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [anon_sym_PLUS_PLUS] = ACTIONS(1060), - [aux_sym__list_destructing_token1] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_self] = ACTIONS(1062), - [anon_sym_parent] = ACTIONS(1062), - [aux_sym__argument_name_token1] = ACTIONS(1062), - [aux_sym__argument_name_token2] = ACTIONS(1062), - [anon_sym_POUND_LBRACK] = ACTIONS(1060), - [aux_sym_encapsed_string_token1] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [aux_sym_string_token1] = ACTIONS(1060), - [anon_sym_SQUOTE] = ACTIONS(1060), - [anon_sym_LT_LT_LT] = ACTIONS(1060), - [anon_sym_BQUOTE] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1060), - [aux_sym_yield_expression_token1] = ACTIONS(1062), - [aux_sym_include_expression_token1] = ACTIONS(1062), - [aux_sym_include_once_expression_token1] = ACTIONS(1062), - [aux_sym_require_expression_token1] = ACTIONS(1062), - [aux_sym_require_once_expression_token1] = ACTIONS(1062), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1060), - [sym__automatic_semicolon] = ACTIONS(1064), - }, - [437] = { - [sym_text_interpolation] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1066), - [sym_name] = ACTIONS(1068), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1070), - [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), - [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(5), - [sym_grit_metavariable] = ACTIONS(1066), - [sym__automatic_semicolon] = ACTIONS(1070), - }, - [438] = { - [sym_text_interpolation] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(1037), - [sym_name] = ACTIONS(1039), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1037), - [aux_sym_function_static_declaration_token1] = ACTIONS(1039), - [aux_sym_global_declaration_token1] = ACTIONS(1039), - [aux_sym_namespace_definition_token1] = ACTIONS(1039), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1039), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1039), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1039), - [anon_sym_BSLASH] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(1037), - [anon_sym_RBRACE] = ACTIONS(1037), - [aux_sym_trait_declaration_token1] = ACTIONS(1039), - [aux_sym_interface_declaration_token1] = ACTIONS(1039), - [aux_sym_enum_declaration_token1] = ACTIONS(1039), - [aux_sym_enum_case_token1] = ACTIONS(1039), - [aux_sym_class_declaration_token1] = ACTIONS(1039), - [aux_sym_final_modifier_token1] = ACTIONS(1039), - [aux_sym_abstract_modifier_token1] = ACTIONS(1039), - [aux_sym_readonly_modifier_token1] = ACTIONS(1039), - [sym_var_modifier] = ACTIONS(1039), - [aux_sym_visibility_modifier_token1] = ACTIONS(1039), - [aux_sym_visibility_modifier_token2] = ACTIONS(1039), - [aux_sym_visibility_modifier_token3] = ACTIONS(1039), - [aux_sym__arrow_function_header_token1] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1037), - [aux_sym_cast_type_token1] = ACTIONS(1039), - [aux_sym_echo_statement_token1] = ACTIONS(1039), - [aux_sym_exit_statement_token1] = ACTIONS(1039), - [anon_sym_unset] = ACTIONS(1039), - [aux_sym_declare_statement_token1] = ACTIONS(1039), - [aux_sym_declare_statement_token2] = ACTIONS(1039), - [sym_float] = ACTIONS(1039), - [aux_sym_try_statement_token1] = ACTIONS(1039), - [aux_sym_goto_statement_token1] = ACTIONS(1039), - [aux_sym_continue_statement_token1] = ACTIONS(1039), - [aux_sym_break_statement_token1] = ACTIONS(1039), - [sym_integer] = ACTIONS(1039), - [aux_sym_return_statement_token1] = ACTIONS(1039), - [aux_sym_throw_expression_token1] = ACTIONS(1039), - [aux_sym_while_statement_token1] = ACTIONS(1039), - [aux_sym_while_statement_token2] = ACTIONS(1039), - [aux_sym_do_statement_token1] = ACTIONS(1039), - [aux_sym_for_statement_token1] = ACTIONS(1039), - [aux_sym_for_statement_token2] = ACTIONS(1039), - [aux_sym_foreach_statement_token1] = ACTIONS(1039), - [aux_sym_foreach_statement_token2] = ACTIONS(1039), - [aux_sym_if_statement_token1] = ACTIONS(1039), - [aux_sym_if_statement_token2] = ACTIONS(1039), - [aux_sym_else_if_clause_token1] = ACTIONS(1039), - [aux_sym_else_clause_token1] = ACTIONS(1039), - [aux_sym_match_expression_token1] = ACTIONS(1039), - [aux_sym_match_default_expression_token1] = ACTIONS(1039), - [aux_sym_switch_statement_token1] = ACTIONS(1039), - [aux_sym_switch_block_token1] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(1037), - [aux_sym_clone_expression_token1] = ACTIONS(1039), - [aux_sym_print_intrinsic_token1] = ACTIONS(1039), - [aux_sym_object_creation_expression_token1] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1037), - [anon_sym_PLUS_PLUS] = ACTIONS(1037), - [aux_sym__list_destructing_token1] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1037), - [anon_sym_self] = ACTIONS(1039), - [anon_sym_parent] = ACTIONS(1039), - [aux_sym__argument_name_token1] = ACTIONS(1039), - [aux_sym__argument_name_token2] = ACTIONS(1039), - [anon_sym_POUND_LBRACK] = ACTIONS(1037), - [aux_sym_encapsed_string_token1] = ACTIONS(1037), - [anon_sym_DQUOTE] = ACTIONS(1037), - [aux_sym_string_token1] = ACTIONS(1037), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1037), - [anon_sym_BQUOTE] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1037), - [aux_sym_yield_expression_token1] = ACTIONS(1039), - [aux_sym_include_expression_token1] = ACTIONS(1039), - [aux_sym_include_once_expression_token1] = ACTIONS(1039), - [aux_sym_require_expression_token1] = ACTIONS(1039), - [aux_sym_require_once_expression_token1] = ACTIONS(1039), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1037), - }, - [439] = { - [sym_text_interpolation] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(1072), - [sym_name] = ACTIONS(1074), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1076), - [aux_sym_function_static_declaration_token1] = ACTIONS(1074), - [aux_sym_global_declaration_token1] = ACTIONS(1074), - [aux_sym_namespace_definition_token1] = ACTIONS(1074), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1074), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1074), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1074), - [anon_sym_BSLASH] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [aux_sym_trait_declaration_token1] = ACTIONS(1074), - [aux_sym_interface_declaration_token1] = ACTIONS(1074), - [aux_sym_enum_declaration_token1] = ACTIONS(1074), - [aux_sym_enum_case_token1] = ACTIONS(1074), - [aux_sym_class_declaration_token1] = ACTIONS(1074), - [aux_sym_final_modifier_token1] = ACTIONS(1074), - [aux_sym_abstract_modifier_token1] = ACTIONS(1074), - [aux_sym_readonly_modifier_token1] = ACTIONS(1074), - [aux_sym_visibility_modifier_token1] = ACTIONS(1074), - [aux_sym_visibility_modifier_token2] = ACTIONS(1074), - [aux_sym_visibility_modifier_token3] = ACTIONS(1074), - [aux_sym__arrow_function_header_token1] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1072), - [aux_sym_cast_type_token1] = ACTIONS(1074), - [aux_sym_echo_statement_token1] = ACTIONS(1074), - [aux_sym_exit_statement_token1] = ACTIONS(1074), - [anon_sym_unset] = ACTIONS(1074), - [aux_sym_declare_statement_token1] = ACTIONS(1074), - [aux_sym_declare_statement_token2] = ACTIONS(1074), - [sym_float] = ACTIONS(1074), - [aux_sym_try_statement_token1] = ACTIONS(1074), - [aux_sym_goto_statement_token1] = ACTIONS(1074), - [aux_sym_continue_statement_token1] = ACTIONS(1074), - [aux_sym_break_statement_token1] = ACTIONS(1074), - [sym_integer] = ACTIONS(1074), - [aux_sym_return_statement_token1] = ACTIONS(1074), - [aux_sym_throw_expression_token1] = ACTIONS(1074), - [aux_sym_while_statement_token1] = ACTIONS(1074), - [aux_sym_while_statement_token2] = ACTIONS(1074), - [aux_sym_do_statement_token1] = ACTIONS(1074), - [aux_sym_for_statement_token1] = ACTIONS(1074), - [aux_sym_for_statement_token2] = ACTIONS(1074), - [aux_sym_foreach_statement_token1] = ACTIONS(1074), - [aux_sym_foreach_statement_token2] = ACTIONS(1074), - [aux_sym_if_statement_token1] = ACTIONS(1074), - [aux_sym_if_statement_token2] = ACTIONS(1074), - [aux_sym_else_if_clause_token1] = ACTIONS(1074), - [aux_sym_else_clause_token1] = ACTIONS(1074), - [aux_sym_match_expression_token1] = ACTIONS(1074), - [aux_sym_match_default_expression_token1] = ACTIONS(1074), - [aux_sym_switch_statement_token1] = ACTIONS(1074), - [aux_sym_switch_block_token1] = ACTIONS(1074), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_TILDE] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1072), - [aux_sym_clone_expression_token1] = ACTIONS(1074), - [aux_sym_print_intrinsic_token1] = ACTIONS(1074), - [aux_sym_object_creation_expression_token1] = ACTIONS(1074), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [aux_sym__list_destructing_token1] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_self] = ACTIONS(1074), - [anon_sym_parent] = ACTIONS(1074), - [aux_sym__argument_name_token1] = ACTIONS(1074), - [aux_sym__argument_name_token2] = ACTIONS(1074), - [anon_sym_POUND_LBRACK] = ACTIONS(1072), - [aux_sym_encapsed_string_token1] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [aux_sym_string_token1] = ACTIONS(1072), - [anon_sym_SQUOTE] = ACTIONS(1072), - [anon_sym_LT_LT_LT] = ACTIONS(1072), - [anon_sym_BQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1072), - [aux_sym_yield_expression_token1] = ACTIONS(1074), - [aux_sym_include_expression_token1] = ACTIONS(1074), - [aux_sym_include_once_expression_token1] = ACTIONS(1074), - [aux_sym_require_expression_token1] = ACTIONS(1074), - [aux_sym_require_once_expression_token1] = ACTIONS(1074), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1072), - [sym__automatic_semicolon] = ACTIONS(1076), - }, - [440] = { - [sym_text_interpolation] = STATE(440), [ts_builtin_sym_end] = ACTIONS(1078), [sym_name] = ACTIONS(1080), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1078), [aux_sym_function_static_declaration_token1] = ACTIONS(1080), [aux_sym_global_declaration_token1] = ACTIONS(1080), [aux_sym_namespace_definition_token1] = ACTIONS(1080), @@ -66594,6 +66026,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declare_statement_token2] = ACTIONS(1080), [sym_float] = ACTIONS(1080), [aux_sym_try_statement_token1] = ACTIONS(1080), + [aux_sym_catch_clause_token1] = ACTIONS(1080), + [aux_sym_finally_clause_token1] = ACTIONS(1080), [aux_sym_goto_statement_token1] = ACTIONS(1080), [aux_sym_continue_statement_token1] = ACTIONS(1080), [aux_sym_break_statement_token1] = ACTIONS(1080), @@ -66646,104 +66080,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1080), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(1078), - [sym__automatic_semicolon] = ACTIONS(1082), }, - [441] = { - [sym_text_interpolation] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(1084), - [sym_name] = ACTIONS(1086), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1088), - [aux_sym_function_static_declaration_token1] = ACTIONS(1086), - [aux_sym_global_declaration_token1] = ACTIONS(1086), - [aux_sym_namespace_definition_token1] = ACTIONS(1086), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1086), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1086), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1086), - [anon_sym_BSLASH] = ACTIONS(1084), - [anon_sym_LBRACE] = ACTIONS(1084), - [anon_sym_RBRACE] = ACTIONS(1084), - [aux_sym_trait_declaration_token1] = ACTIONS(1086), - [aux_sym_interface_declaration_token1] = ACTIONS(1086), - [aux_sym_enum_declaration_token1] = ACTIONS(1086), - [aux_sym_enum_case_token1] = ACTIONS(1086), - [aux_sym_class_declaration_token1] = ACTIONS(1086), - [aux_sym_final_modifier_token1] = ACTIONS(1086), - [aux_sym_abstract_modifier_token1] = ACTIONS(1086), - [aux_sym_readonly_modifier_token1] = ACTIONS(1086), - [aux_sym_visibility_modifier_token1] = ACTIONS(1086), - [aux_sym_visibility_modifier_token2] = ACTIONS(1086), - [aux_sym_visibility_modifier_token3] = ACTIONS(1086), - [aux_sym__arrow_function_header_token1] = ACTIONS(1086), - [anon_sym_LPAREN] = ACTIONS(1084), - [aux_sym_cast_type_token1] = ACTIONS(1086), - [aux_sym_echo_statement_token1] = ACTIONS(1086), - [aux_sym_exit_statement_token1] = ACTIONS(1086), - [anon_sym_unset] = ACTIONS(1086), - [aux_sym_declare_statement_token1] = ACTIONS(1086), - [aux_sym_declare_statement_token2] = ACTIONS(1086), - [sym_float] = ACTIONS(1086), - [aux_sym_try_statement_token1] = ACTIONS(1086), - [aux_sym_goto_statement_token1] = ACTIONS(1086), - [aux_sym_continue_statement_token1] = ACTIONS(1086), - [aux_sym_break_statement_token1] = ACTIONS(1086), - [sym_integer] = ACTIONS(1086), - [aux_sym_return_statement_token1] = ACTIONS(1086), - [aux_sym_throw_expression_token1] = ACTIONS(1086), - [aux_sym_while_statement_token1] = ACTIONS(1086), - [aux_sym_while_statement_token2] = ACTIONS(1086), - [aux_sym_do_statement_token1] = ACTIONS(1086), - [aux_sym_for_statement_token1] = ACTIONS(1086), - [aux_sym_for_statement_token2] = ACTIONS(1086), - [aux_sym_foreach_statement_token1] = ACTIONS(1086), - [aux_sym_foreach_statement_token2] = ACTIONS(1086), - [aux_sym_if_statement_token1] = ACTIONS(1086), - [aux_sym_if_statement_token2] = ACTIONS(1086), - [aux_sym_else_if_clause_token1] = ACTIONS(1086), - [aux_sym_else_clause_token1] = ACTIONS(1086), - [aux_sym_match_expression_token1] = ACTIONS(1086), - [aux_sym_match_default_expression_token1] = ACTIONS(1086), - [aux_sym_switch_statement_token1] = ACTIONS(1086), - [aux_sym_switch_block_token1] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_AT] = ACTIONS(1084), - [aux_sym_clone_expression_token1] = ACTIONS(1086), - [aux_sym_print_intrinsic_token1] = ACTIONS(1086), - [aux_sym_object_creation_expression_token1] = ACTIONS(1086), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [aux_sym__list_destructing_token1] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_self] = ACTIONS(1086), - [anon_sym_parent] = ACTIONS(1086), - [aux_sym__argument_name_token1] = ACTIONS(1086), - [aux_sym__argument_name_token2] = ACTIONS(1086), - [anon_sym_POUND_LBRACK] = ACTIONS(1084), - [aux_sym_encapsed_string_token1] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1084), - [aux_sym_string_token1] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1084), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(1084), - [anon_sym_DOLLAR] = ACTIONS(1084), - [aux_sym_yield_expression_token1] = ACTIONS(1086), - [aux_sym_include_expression_token1] = ACTIONS(1086), - [aux_sym_include_once_expression_token1] = ACTIONS(1086), - [aux_sym_require_expression_token1] = ACTIONS(1086), - [aux_sym_require_once_expression_token1] = ACTIONS(1086), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1084), - [sym__automatic_semicolon] = ACTIONS(1088), + [432] = { + [sym_text_interpolation] = STATE(432), + [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), + [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_catch_clause_token1] = ACTIONS(1084), + [aux_sym_finally_clause_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_grit_metavariable] = ACTIONS(1082), }, - [442] = { - [sym_text_interpolation] = STATE(442), + [433] = { + [sym_text_interpolation] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_name] = ACTIONS(1088), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1086), + [aux_sym_function_static_declaration_token1] = ACTIONS(1088), + [aux_sym_global_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_definition_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1088), + [anon_sym_BSLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [aux_sym_trait_declaration_token1] = ACTIONS(1088), + [aux_sym_interface_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_case_token1] = ACTIONS(1088), + [aux_sym_class_declaration_token1] = ACTIONS(1088), + [aux_sym_final_modifier_token1] = ACTIONS(1088), + [aux_sym_abstract_modifier_token1] = ACTIONS(1088), + [aux_sym_readonly_modifier_token1] = ACTIONS(1088), + [aux_sym_visibility_modifier_token1] = ACTIONS(1088), + [aux_sym_visibility_modifier_token2] = ACTIONS(1088), + [aux_sym_visibility_modifier_token3] = ACTIONS(1088), + [aux_sym__arrow_function_header_token1] = ACTIONS(1088), + [anon_sym_LPAREN] = ACTIONS(1086), + [aux_sym_cast_type_token1] = ACTIONS(1088), + [aux_sym_echo_statement_token1] = ACTIONS(1088), + [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_catch_clause_token1] = ACTIONS(1088), + [aux_sym_finally_clause_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_grit_metavariable] = ACTIONS(1086), + }, + [434] = { + [sym_text_interpolation] = STATE(434), [ts_builtin_sym_end] = ACTIONS(1090), [sym_name] = ACTIONS(1092), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_SEMI] = ACTIONS(1090), [aux_sym_function_static_declaration_token1] = ACTIONS(1092), [aux_sym_global_declaration_token1] = ACTIONS(1092), [aux_sym_namespace_definition_token1] = ACTIONS(1092), @@ -66774,6 +66299,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_declare_statement_token2] = ACTIONS(1092), [sym_float] = ACTIONS(1092), [aux_sym_try_statement_token1] = ACTIONS(1092), + [aux_sym_catch_clause_token1] = ACTIONS(1092), + [aux_sym_finally_clause_token1] = ACTIONS(1092), [aux_sym_goto_statement_token1] = ACTIONS(1092), [aux_sym_continue_statement_token1] = ACTIONS(1092), [aux_sym_break_statement_token1] = ACTIONS(1092), @@ -66826,104 +66353,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1092), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(1090), - [sym__automatic_semicolon] = ACTIONS(1094), }, - [443] = { - [sym_text_interpolation] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1096), - [sym_name] = ACTIONS(1098), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1100), - [aux_sym_function_static_declaration_token1] = ACTIONS(1098), - [aux_sym_global_declaration_token1] = ACTIONS(1098), - [aux_sym_namespace_definition_token1] = ACTIONS(1098), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1098), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1098), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1098), - [anon_sym_BSLASH] = ACTIONS(1096), - [anon_sym_LBRACE] = ACTIONS(1096), - [anon_sym_RBRACE] = ACTIONS(1096), - [aux_sym_trait_declaration_token1] = ACTIONS(1098), - [aux_sym_interface_declaration_token1] = ACTIONS(1098), - [aux_sym_enum_declaration_token1] = ACTIONS(1098), - [aux_sym_enum_case_token1] = ACTIONS(1098), - [aux_sym_class_declaration_token1] = ACTIONS(1098), - [aux_sym_final_modifier_token1] = ACTIONS(1098), - [aux_sym_abstract_modifier_token1] = ACTIONS(1098), - [aux_sym_readonly_modifier_token1] = ACTIONS(1098), - [aux_sym_visibility_modifier_token1] = ACTIONS(1098), - [aux_sym_visibility_modifier_token2] = ACTIONS(1098), - [aux_sym_visibility_modifier_token3] = ACTIONS(1098), - [aux_sym__arrow_function_header_token1] = ACTIONS(1098), - [anon_sym_LPAREN] = ACTIONS(1096), - [aux_sym_cast_type_token1] = ACTIONS(1098), - [aux_sym_echo_statement_token1] = ACTIONS(1098), - [aux_sym_exit_statement_token1] = ACTIONS(1098), - [anon_sym_unset] = ACTIONS(1098), - [aux_sym_declare_statement_token1] = ACTIONS(1098), - [aux_sym_declare_statement_token2] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [aux_sym_try_statement_token1] = ACTIONS(1098), - [aux_sym_goto_statement_token1] = ACTIONS(1098), - [aux_sym_continue_statement_token1] = ACTIONS(1098), - [aux_sym_break_statement_token1] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [aux_sym_return_statement_token1] = ACTIONS(1098), - [aux_sym_throw_expression_token1] = ACTIONS(1098), - [aux_sym_while_statement_token1] = ACTIONS(1098), - [aux_sym_while_statement_token2] = ACTIONS(1098), - [aux_sym_do_statement_token1] = ACTIONS(1098), - [aux_sym_for_statement_token1] = ACTIONS(1098), - [aux_sym_for_statement_token2] = ACTIONS(1098), - [aux_sym_foreach_statement_token1] = ACTIONS(1098), - [aux_sym_foreach_statement_token2] = ACTIONS(1098), - [aux_sym_if_statement_token1] = ACTIONS(1098), - [aux_sym_if_statement_token2] = ACTIONS(1098), - [aux_sym_else_if_clause_token1] = ACTIONS(1098), - [aux_sym_else_clause_token1] = ACTIONS(1098), - [aux_sym_match_expression_token1] = ACTIONS(1098), - [aux_sym_match_default_expression_token1] = ACTIONS(1098), - [aux_sym_switch_statement_token1] = ACTIONS(1098), - [aux_sym_switch_block_token1] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_AT] = ACTIONS(1096), - [aux_sym_clone_expression_token1] = ACTIONS(1098), - [aux_sym_print_intrinsic_token1] = ACTIONS(1098), - [aux_sym_object_creation_expression_token1] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [aux_sym__list_destructing_token1] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1096), - [anon_sym_self] = ACTIONS(1098), - [anon_sym_parent] = ACTIONS(1098), - [aux_sym__argument_name_token1] = ACTIONS(1098), - [aux_sym__argument_name_token2] = ACTIONS(1098), - [anon_sym_POUND_LBRACK] = ACTIONS(1096), - [aux_sym_encapsed_string_token1] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(1096), - [aux_sym_string_token1] = ACTIONS(1096), - [anon_sym_SQUOTE] = ACTIONS(1096), - [anon_sym_LT_LT_LT] = ACTIONS(1096), - [anon_sym_BQUOTE] = ACTIONS(1096), - [anon_sym_DOLLAR] = ACTIONS(1096), - [aux_sym_yield_expression_token1] = ACTIONS(1098), - [aux_sym_include_expression_token1] = ACTIONS(1098), - [aux_sym_include_once_expression_token1] = ACTIONS(1098), - [aux_sym_require_expression_token1] = ACTIONS(1098), - [aux_sym_require_once_expression_token1] = ACTIONS(1098), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1096), - [sym__automatic_semicolon] = ACTIONS(1100), + [435] = { + [sym_text_interpolation] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_name] = ACTIONS(1096), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1094), + [aux_sym_function_static_declaration_token1] = ACTIONS(1096), + [aux_sym_global_declaration_token1] = ACTIONS(1096), + [aux_sym_namespace_definition_token1] = ACTIONS(1096), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1096), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1096), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1096), + [anon_sym_BSLASH] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [aux_sym_trait_declaration_token1] = ACTIONS(1096), + [aux_sym_interface_declaration_token1] = ACTIONS(1096), + [aux_sym_enum_declaration_token1] = ACTIONS(1096), + [aux_sym_enum_case_token1] = ACTIONS(1096), + [aux_sym_class_declaration_token1] = ACTIONS(1096), + [aux_sym_final_modifier_token1] = ACTIONS(1096), + [aux_sym_abstract_modifier_token1] = ACTIONS(1096), + [aux_sym_readonly_modifier_token1] = ACTIONS(1096), + [aux_sym_visibility_modifier_token1] = ACTIONS(1096), + [aux_sym_visibility_modifier_token2] = ACTIONS(1096), + [aux_sym_visibility_modifier_token3] = ACTIONS(1096), + [aux_sym__arrow_function_header_token1] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1094), + [aux_sym_cast_type_token1] = ACTIONS(1096), + [aux_sym_echo_statement_token1] = ACTIONS(1096), + [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_catch_clause_token1] = ACTIONS(1096), + [aux_sym_finally_clause_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(5), + [sym_grit_metavariable] = ACTIONS(1094), }, - [444] = { - [sym_text_interpolation] = STATE(444), + [436] = { + [sym_text_interpolation] = STATE(436), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_name] = ACTIONS(1100), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1098), + [aux_sym_function_static_declaration_token1] = ACTIONS(1100), + [aux_sym_global_declaration_token1] = ACTIONS(1100), + [aux_sym_namespace_definition_token1] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1100), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1100), + [anon_sym_BSLASH] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [aux_sym_trait_declaration_token1] = ACTIONS(1100), + [aux_sym_interface_declaration_token1] = ACTIONS(1100), + [aux_sym_enum_declaration_token1] = ACTIONS(1100), + [aux_sym_enum_case_token1] = ACTIONS(1100), + [aux_sym_class_declaration_token1] = ACTIONS(1100), + [aux_sym_final_modifier_token1] = ACTIONS(1100), + [aux_sym_abstract_modifier_token1] = ACTIONS(1100), + [aux_sym_readonly_modifier_token1] = ACTIONS(1100), + [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_grit_metavariable] = ACTIONS(1098), + }, + [437] = { + [sym_text_interpolation] = STATE(437), [ts_builtin_sym_end] = ACTIONS(1102), [sym_name] = ACTIONS(1104), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_SEMI] = ACTIONS(1106), [aux_sym_function_static_declaration_token1] = ACTIONS(1104), [aux_sym_global_declaration_token1] = ACTIONS(1104), [aux_sym_namespace_definition_token1] = ACTIONS(1104), @@ -67006,824 +66623,824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1104), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(1102), - [sym__automatic_semicolon] = ACTIONS(1102), + [sym__automatic_semicolon] = ACTIONS(1106), }, - [445] = { - [sym_text_interpolation] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_name] = ACTIONS(1108), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1106), - [aux_sym_function_static_declaration_token1] = ACTIONS(1108), - [aux_sym_global_declaration_token1] = ACTIONS(1108), - [aux_sym_namespace_definition_token1] = ACTIONS(1108), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1108), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1108), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1108), - [anon_sym_BSLASH] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [aux_sym_trait_declaration_token1] = ACTIONS(1108), - [aux_sym_interface_declaration_token1] = ACTIONS(1108), - [aux_sym_enum_declaration_token1] = ACTIONS(1108), - [aux_sym_enum_case_token1] = ACTIONS(1108), - [aux_sym_class_declaration_token1] = ACTIONS(1108), - [aux_sym_final_modifier_token1] = ACTIONS(1108), - [aux_sym_abstract_modifier_token1] = ACTIONS(1108), - [aux_sym_readonly_modifier_token1] = ACTIONS(1108), - [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(5), - [sym_grit_metavariable] = ACTIONS(1106), + [438] = { + [sym_text_interpolation] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(1108), + [sym_name] = ACTIONS(1110), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1112), + [aux_sym_function_static_declaration_token1] = ACTIONS(1110), + [aux_sym_global_declaration_token1] = ACTIONS(1110), + [aux_sym_namespace_definition_token1] = ACTIONS(1110), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1110), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1110), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1110), + [anon_sym_BSLASH] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1108), + [aux_sym_trait_declaration_token1] = ACTIONS(1110), + [aux_sym_interface_declaration_token1] = ACTIONS(1110), + [aux_sym_enum_declaration_token1] = ACTIONS(1110), + [aux_sym_enum_case_token1] = ACTIONS(1110), + [aux_sym_class_declaration_token1] = ACTIONS(1110), + [aux_sym_final_modifier_token1] = ACTIONS(1110), + [aux_sym_abstract_modifier_token1] = ACTIONS(1110), + [aux_sym_readonly_modifier_token1] = ACTIONS(1110), + [aux_sym_visibility_modifier_token1] = ACTIONS(1110), + [aux_sym_visibility_modifier_token2] = ACTIONS(1110), + [aux_sym_visibility_modifier_token3] = ACTIONS(1110), + [aux_sym__arrow_function_header_token1] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1108), + [aux_sym_cast_type_token1] = ACTIONS(1110), + [aux_sym_echo_statement_token1] = ACTIONS(1110), + [aux_sym_exit_statement_token1] = ACTIONS(1110), + [anon_sym_unset] = ACTIONS(1110), + [aux_sym_declare_statement_token1] = ACTIONS(1110), + [aux_sym_declare_statement_token2] = ACTIONS(1110), + [sym_float] = ACTIONS(1110), + [aux_sym_try_statement_token1] = ACTIONS(1110), + [aux_sym_goto_statement_token1] = ACTIONS(1110), + [aux_sym_continue_statement_token1] = ACTIONS(1110), + [aux_sym_break_statement_token1] = ACTIONS(1110), + [sym_integer] = ACTIONS(1110), + [aux_sym_return_statement_token1] = ACTIONS(1110), + [aux_sym_throw_expression_token1] = ACTIONS(1110), + [aux_sym_while_statement_token1] = ACTIONS(1110), + [aux_sym_while_statement_token2] = ACTIONS(1110), + [aux_sym_do_statement_token1] = ACTIONS(1110), + [aux_sym_for_statement_token1] = ACTIONS(1110), + [aux_sym_for_statement_token2] = ACTIONS(1110), + [aux_sym_foreach_statement_token1] = ACTIONS(1110), + [aux_sym_foreach_statement_token2] = ACTIONS(1110), + [aux_sym_if_statement_token1] = ACTIONS(1110), + [aux_sym_if_statement_token2] = ACTIONS(1110), + [aux_sym_else_if_clause_token1] = ACTIONS(1110), + [aux_sym_else_clause_token1] = ACTIONS(1110), + [aux_sym_match_expression_token1] = ACTIONS(1110), + [aux_sym_match_default_expression_token1] = ACTIONS(1110), + [aux_sym_switch_statement_token1] = ACTIONS(1110), + [aux_sym_switch_block_token1] = ACTIONS(1110), + [anon_sym_PLUS] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_TILDE] = ACTIONS(1108), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_AT] = ACTIONS(1108), + [aux_sym_clone_expression_token1] = ACTIONS(1110), + [aux_sym_print_intrinsic_token1] = ACTIONS(1110), + [aux_sym_object_creation_expression_token1] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(1108), + [anon_sym_PLUS_PLUS] = ACTIONS(1108), + [aux_sym__list_destructing_token1] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_self] = ACTIONS(1110), + [anon_sym_parent] = ACTIONS(1110), + [aux_sym__argument_name_token1] = ACTIONS(1110), + [aux_sym__argument_name_token2] = ACTIONS(1110), + [anon_sym_POUND_LBRACK] = ACTIONS(1108), + [aux_sym_encapsed_string_token1] = ACTIONS(1108), + [anon_sym_DQUOTE] = ACTIONS(1108), + [aux_sym_string_token1] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_LT_LT_LT] = ACTIONS(1108), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_DOLLAR] = ACTIONS(1108), + [aux_sym_yield_expression_token1] = ACTIONS(1110), + [aux_sym_include_expression_token1] = ACTIONS(1110), + [aux_sym_include_once_expression_token1] = ACTIONS(1110), + [aux_sym_require_expression_token1] = ACTIONS(1110), + [aux_sym_require_once_expression_token1] = ACTIONS(1110), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1108), + [sym__automatic_semicolon] = ACTIONS(1112), }, - [446] = { - [sym_text_interpolation] = STATE(446), - [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), - [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_grit_metavariable] = ACTIONS(1110), - [sym__automatic_semicolon] = ACTIONS(1114), + [439] = { + [sym_text_interpolation] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_name] = ACTIONS(1116), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1118), + [aux_sym_function_static_declaration_token1] = ACTIONS(1116), + [aux_sym_global_declaration_token1] = ACTIONS(1116), + [aux_sym_namespace_definition_token1] = ACTIONS(1116), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1116), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1116), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1116), + [anon_sym_BSLASH] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [aux_sym_trait_declaration_token1] = ACTIONS(1116), + [aux_sym_interface_declaration_token1] = ACTIONS(1116), + [aux_sym_enum_declaration_token1] = ACTIONS(1116), + [aux_sym_enum_case_token1] = ACTIONS(1116), + [aux_sym_class_declaration_token1] = ACTIONS(1116), + [aux_sym_final_modifier_token1] = ACTIONS(1116), + [aux_sym_abstract_modifier_token1] = ACTIONS(1116), + [aux_sym_readonly_modifier_token1] = ACTIONS(1116), + [aux_sym_visibility_modifier_token1] = ACTIONS(1116), + [aux_sym_visibility_modifier_token2] = ACTIONS(1116), + [aux_sym_visibility_modifier_token3] = ACTIONS(1116), + [aux_sym__arrow_function_header_token1] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1114), + [aux_sym_cast_type_token1] = ACTIONS(1116), + [aux_sym_echo_statement_token1] = ACTIONS(1116), + [aux_sym_exit_statement_token1] = ACTIONS(1116), + [anon_sym_unset] = ACTIONS(1116), + [aux_sym_declare_statement_token1] = ACTIONS(1116), + [aux_sym_declare_statement_token2] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [aux_sym_try_statement_token1] = ACTIONS(1116), + [aux_sym_goto_statement_token1] = ACTIONS(1116), + [aux_sym_continue_statement_token1] = ACTIONS(1116), + [aux_sym_break_statement_token1] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [aux_sym_return_statement_token1] = ACTIONS(1116), + [aux_sym_throw_expression_token1] = ACTIONS(1116), + [aux_sym_while_statement_token1] = ACTIONS(1116), + [aux_sym_while_statement_token2] = ACTIONS(1116), + [aux_sym_do_statement_token1] = ACTIONS(1116), + [aux_sym_for_statement_token1] = ACTIONS(1116), + [aux_sym_for_statement_token2] = ACTIONS(1116), + [aux_sym_foreach_statement_token1] = ACTIONS(1116), + [aux_sym_foreach_statement_token2] = ACTIONS(1116), + [aux_sym_if_statement_token1] = ACTIONS(1116), + [aux_sym_if_statement_token2] = ACTIONS(1116), + [aux_sym_else_if_clause_token1] = ACTIONS(1116), + [aux_sym_else_clause_token1] = ACTIONS(1116), + [aux_sym_match_expression_token1] = ACTIONS(1116), + [aux_sym_match_default_expression_token1] = ACTIONS(1116), + [aux_sym_switch_statement_token1] = ACTIONS(1116), + [aux_sym_switch_block_token1] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1116), + [anon_sym_TILDE] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_AT] = ACTIONS(1114), + [aux_sym_clone_expression_token1] = ACTIONS(1116), + [aux_sym_print_intrinsic_token1] = ACTIONS(1116), + [aux_sym_object_creation_expression_token1] = ACTIONS(1116), + [anon_sym_DASH_DASH] = ACTIONS(1114), + [anon_sym_PLUS_PLUS] = ACTIONS(1114), + [aux_sym__list_destructing_token1] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_self] = ACTIONS(1116), + [anon_sym_parent] = ACTIONS(1116), + [aux_sym__argument_name_token1] = ACTIONS(1116), + [aux_sym__argument_name_token2] = ACTIONS(1116), + [anon_sym_POUND_LBRACK] = ACTIONS(1114), + [aux_sym_encapsed_string_token1] = ACTIONS(1114), + [anon_sym_DQUOTE] = ACTIONS(1114), + [aux_sym_string_token1] = ACTIONS(1114), + [anon_sym_SQUOTE] = ACTIONS(1114), + [anon_sym_LT_LT_LT] = ACTIONS(1114), + [anon_sym_BQUOTE] = ACTIONS(1114), + [anon_sym_DOLLAR] = ACTIONS(1114), + [aux_sym_yield_expression_token1] = ACTIONS(1116), + [aux_sym_include_expression_token1] = ACTIONS(1116), + [aux_sym_include_once_expression_token1] = ACTIONS(1116), + [aux_sym_require_expression_token1] = ACTIONS(1116), + [aux_sym_require_once_expression_token1] = ACTIONS(1116), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1114), + [sym__automatic_semicolon] = ACTIONS(1118), }, - [447] = { - [sym_text_interpolation] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_name] = ACTIONS(1118), + [440] = { + [sym_text_interpolation] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_name] = ACTIONS(1122), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(1120), - [aux_sym_function_static_declaration_token1] = ACTIONS(1118), - [aux_sym_global_declaration_token1] = ACTIONS(1118), - [aux_sym_namespace_definition_token1] = ACTIONS(1118), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1118), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1118), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1118), - [anon_sym_BSLASH] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_RBRACE] = ACTIONS(1116), - [aux_sym_trait_declaration_token1] = ACTIONS(1118), - [aux_sym_interface_declaration_token1] = ACTIONS(1118), - [aux_sym_enum_declaration_token1] = ACTIONS(1118), - [aux_sym_enum_case_token1] = ACTIONS(1118), - [aux_sym_class_declaration_token1] = ACTIONS(1118), - [aux_sym_final_modifier_token1] = ACTIONS(1118), - [aux_sym_abstract_modifier_token1] = ACTIONS(1118), - [aux_sym_readonly_modifier_token1] = ACTIONS(1118), - [aux_sym_visibility_modifier_token1] = ACTIONS(1118), - [aux_sym_visibility_modifier_token2] = ACTIONS(1118), - [aux_sym_visibility_modifier_token3] = ACTIONS(1118), - [aux_sym__arrow_function_header_token1] = ACTIONS(1118), - [anon_sym_LPAREN] = ACTIONS(1116), - [aux_sym_cast_type_token1] = ACTIONS(1118), - [aux_sym_echo_statement_token1] = ACTIONS(1118), - [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_grit_metavariable] = ACTIONS(1116), + [aux_sym_function_static_declaration_token1] = ACTIONS(1122), + [aux_sym_global_declaration_token1] = ACTIONS(1122), + [aux_sym_namespace_definition_token1] = ACTIONS(1122), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1122), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1122), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1122), + [anon_sym_BSLASH] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [aux_sym_trait_declaration_token1] = ACTIONS(1122), + [aux_sym_interface_declaration_token1] = ACTIONS(1122), + [aux_sym_enum_declaration_token1] = ACTIONS(1122), + [aux_sym_enum_case_token1] = ACTIONS(1122), + [aux_sym_class_declaration_token1] = ACTIONS(1122), + [aux_sym_final_modifier_token1] = ACTIONS(1122), + [aux_sym_abstract_modifier_token1] = ACTIONS(1122), + [aux_sym_readonly_modifier_token1] = ACTIONS(1122), + [aux_sym_visibility_modifier_token1] = ACTIONS(1122), + [aux_sym_visibility_modifier_token2] = ACTIONS(1122), + [aux_sym_visibility_modifier_token3] = ACTIONS(1122), + [aux_sym__arrow_function_header_token1] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1120), + [aux_sym_cast_type_token1] = ACTIONS(1122), + [aux_sym_echo_statement_token1] = ACTIONS(1122), + [aux_sym_exit_statement_token1] = ACTIONS(1122), + [anon_sym_unset] = ACTIONS(1122), + [aux_sym_declare_statement_token1] = ACTIONS(1122), + [aux_sym_declare_statement_token2] = ACTIONS(1122), + [sym_float] = ACTIONS(1122), + [aux_sym_try_statement_token1] = ACTIONS(1122), + [aux_sym_goto_statement_token1] = ACTIONS(1122), + [aux_sym_continue_statement_token1] = ACTIONS(1122), + [aux_sym_break_statement_token1] = ACTIONS(1122), + [sym_integer] = ACTIONS(1122), + [aux_sym_return_statement_token1] = ACTIONS(1122), + [aux_sym_throw_expression_token1] = ACTIONS(1122), + [aux_sym_while_statement_token1] = ACTIONS(1122), + [aux_sym_while_statement_token2] = ACTIONS(1122), + [aux_sym_do_statement_token1] = ACTIONS(1122), + [aux_sym_for_statement_token1] = ACTIONS(1122), + [aux_sym_for_statement_token2] = ACTIONS(1122), + [aux_sym_foreach_statement_token1] = ACTIONS(1122), + [aux_sym_foreach_statement_token2] = ACTIONS(1122), + [aux_sym_if_statement_token1] = ACTIONS(1122), + [aux_sym_if_statement_token2] = ACTIONS(1122), + [aux_sym_else_if_clause_token1] = ACTIONS(1122), + [aux_sym_else_clause_token1] = ACTIONS(1122), + [aux_sym_match_expression_token1] = ACTIONS(1122), + [aux_sym_match_default_expression_token1] = ACTIONS(1122), + [aux_sym_switch_statement_token1] = ACTIONS(1122), + [aux_sym_switch_block_token1] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1120), + [aux_sym_clone_expression_token1] = ACTIONS(1122), + [aux_sym_print_intrinsic_token1] = ACTIONS(1122), + [aux_sym_object_creation_expression_token1] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [aux_sym__list_destructing_token1] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_self] = ACTIONS(1122), + [anon_sym_parent] = ACTIONS(1122), + [aux_sym__argument_name_token1] = ACTIONS(1122), + [aux_sym__argument_name_token2] = ACTIONS(1122), + [anon_sym_POUND_LBRACK] = ACTIONS(1120), + [aux_sym_encapsed_string_token1] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [aux_sym_string_token1] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [aux_sym_yield_expression_token1] = ACTIONS(1122), + [aux_sym_include_expression_token1] = ACTIONS(1122), + [aux_sym_include_once_expression_token1] = ACTIONS(1122), + [aux_sym_require_expression_token1] = ACTIONS(1122), + [aux_sym_require_once_expression_token1] = ACTIONS(1122), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1120), [sym__automatic_semicolon] = ACTIONS(1120), }, - [448] = { - [sym_text_interpolation] = STATE(448), - [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), - [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_grit_metavariable] = ACTIONS(1122), - [sym__automatic_semicolon] = ACTIONS(1126), + [441] = { + [sym_text_interpolation] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_name] = ACTIONS(1126), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [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(5), + [sym_grit_metavariable] = ACTIONS(1124), + [sym__automatic_semicolon] = ACTIONS(1128), }, - [449] = { - [sym_text_interpolation] = STATE(449), - [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), - [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_grit_metavariable] = ACTIONS(1128), - [sym__automatic_semicolon] = ACTIONS(1132), + [442] = { + [sym_text_interpolation] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_name] = ACTIONS(1088), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1086), + [aux_sym_function_static_declaration_token1] = ACTIONS(1088), + [aux_sym_global_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_definition_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1088), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1088), + [anon_sym_BSLASH] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [aux_sym_trait_declaration_token1] = ACTIONS(1088), + [aux_sym_interface_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_declaration_token1] = ACTIONS(1088), + [aux_sym_enum_case_token1] = ACTIONS(1088), + [aux_sym_class_declaration_token1] = ACTIONS(1088), + [aux_sym_final_modifier_token1] = ACTIONS(1088), + [aux_sym_abstract_modifier_token1] = ACTIONS(1088), + [aux_sym_readonly_modifier_token1] = ACTIONS(1088), + [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_grit_metavariable] = ACTIONS(1086), }, - [450] = { - [sym_text_interpolation] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_name] = ACTIONS(1136), + [443] = { + [sym_text_interpolation] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_name] = ACTIONS(1132), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(1134), - [aux_sym_function_static_declaration_token1] = ACTIONS(1136), - [aux_sym_global_declaration_token1] = ACTIONS(1136), - [aux_sym_namespace_definition_token1] = ACTIONS(1136), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1136), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1136), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1136), - [anon_sym_BSLASH] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1134), - [aux_sym_trait_declaration_token1] = ACTIONS(1136), - [aux_sym_interface_declaration_token1] = ACTIONS(1136), - [aux_sym_enum_declaration_token1] = ACTIONS(1136), - [aux_sym_enum_case_token1] = ACTIONS(1136), - [aux_sym_class_declaration_token1] = ACTIONS(1136), - [aux_sym_final_modifier_token1] = ACTIONS(1136), - [aux_sym_abstract_modifier_token1] = ACTIONS(1136), - [aux_sym_readonly_modifier_token1] = ACTIONS(1136), - [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_grit_metavariable] = ACTIONS(1134), + [aux_sym_function_static_declaration_token1] = ACTIONS(1132), + [aux_sym_global_declaration_token1] = ACTIONS(1132), + [aux_sym_namespace_definition_token1] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1132), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1132), + [anon_sym_BSLASH] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [aux_sym_trait_declaration_token1] = ACTIONS(1132), + [aux_sym_interface_declaration_token1] = ACTIONS(1132), + [aux_sym_enum_declaration_token1] = ACTIONS(1132), + [aux_sym_enum_case_token1] = ACTIONS(1132), + [aux_sym_class_declaration_token1] = ACTIONS(1132), + [aux_sym_final_modifier_token1] = ACTIONS(1132), + [aux_sym_abstract_modifier_token1] = ACTIONS(1132), + [aux_sym_readonly_modifier_token1] = ACTIONS(1132), + [aux_sym_visibility_modifier_token1] = ACTIONS(1132), + [aux_sym_visibility_modifier_token2] = ACTIONS(1132), + [aux_sym_visibility_modifier_token3] = ACTIONS(1132), + [aux_sym__arrow_function_header_token1] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1130), + [aux_sym_cast_type_token1] = ACTIONS(1132), + [aux_sym_echo_statement_token1] = ACTIONS(1132), + [aux_sym_exit_statement_token1] = ACTIONS(1132), + [anon_sym_unset] = ACTIONS(1132), + [aux_sym_declare_statement_token1] = ACTIONS(1132), + [aux_sym_declare_statement_token2] = ACTIONS(1132), + [sym_float] = ACTIONS(1132), + [aux_sym_try_statement_token1] = ACTIONS(1132), + [aux_sym_goto_statement_token1] = ACTIONS(1132), + [aux_sym_continue_statement_token1] = ACTIONS(1132), + [aux_sym_break_statement_token1] = ACTIONS(1132), + [sym_integer] = ACTIONS(1132), + [aux_sym_return_statement_token1] = ACTIONS(1132), + [aux_sym_throw_expression_token1] = ACTIONS(1132), + [aux_sym_while_statement_token1] = ACTIONS(1132), + [aux_sym_while_statement_token2] = ACTIONS(1132), + [aux_sym_do_statement_token1] = ACTIONS(1132), + [aux_sym_for_statement_token1] = ACTIONS(1132), + [aux_sym_for_statement_token2] = ACTIONS(1132), + [aux_sym_foreach_statement_token1] = ACTIONS(1132), + [aux_sym_foreach_statement_token2] = ACTIONS(1132), + [aux_sym_if_statement_token1] = ACTIONS(1132), + [aux_sym_if_statement_token2] = ACTIONS(1132), + [aux_sym_else_if_clause_token1] = ACTIONS(1132), + [aux_sym_else_clause_token1] = ACTIONS(1132), + [aux_sym_match_expression_token1] = ACTIONS(1132), + [aux_sym_match_default_expression_token1] = ACTIONS(1132), + [aux_sym_switch_statement_token1] = ACTIONS(1132), + [aux_sym_switch_block_token1] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(1130), + [aux_sym_clone_expression_token1] = ACTIONS(1132), + [aux_sym_print_intrinsic_token1] = ACTIONS(1132), + [aux_sym_object_creation_expression_token1] = ACTIONS(1132), + [anon_sym_DASH_DASH] = ACTIONS(1130), + [anon_sym_PLUS_PLUS] = ACTIONS(1130), + [aux_sym__list_destructing_token1] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_self] = ACTIONS(1132), + [anon_sym_parent] = ACTIONS(1132), + [aux_sym__argument_name_token1] = ACTIONS(1132), + [aux_sym__argument_name_token2] = ACTIONS(1132), + [anon_sym_POUND_LBRACK] = ACTIONS(1130), + [aux_sym_encapsed_string_token1] = ACTIONS(1130), + [anon_sym_DQUOTE] = ACTIONS(1130), + [aux_sym_string_token1] = ACTIONS(1130), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_LT_LT_LT] = ACTIONS(1130), + [anon_sym_BQUOTE] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1130), + [aux_sym_yield_expression_token1] = ACTIONS(1132), + [aux_sym_include_expression_token1] = ACTIONS(1132), + [aux_sym_include_once_expression_token1] = ACTIONS(1132), + [aux_sym_require_expression_token1] = ACTIONS(1132), + [aux_sym_require_once_expression_token1] = ACTIONS(1132), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1130), + [sym__automatic_semicolon] = ACTIONS(1134), }, - [451] = { - [sym_text_interpolation] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_name] = ACTIONS(1043), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1041), - [aux_sym_function_static_declaration_token1] = ACTIONS(1043), - [aux_sym_global_declaration_token1] = ACTIONS(1043), - [aux_sym_namespace_definition_token1] = ACTIONS(1043), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1043), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1043), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1043), - [anon_sym_BSLASH] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [aux_sym_trait_declaration_token1] = ACTIONS(1043), - [aux_sym_interface_declaration_token1] = ACTIONS(1043), - [aux_sym_enum_declaration_token1] = ACTIONS(1043), - [aux_sym_enum_case_token1] = ACTIONS(1043), - [aux_sym_class_declaration_token1] = ACTIONS(1043), - [aux_sym_final_modifier_token1] = ACTIONS(1043), - [aux_sym_abstract_modifier_token1] = ACTIONS(1043), - [aux_sym_readonly_modifier_token1] = ACTIONS(1043), - [sym_var_modifier] = ACTIONS(1043), - [aux_sym_visibility_modifier_token1] = ACTIONS(1043), - [aux_sym_visibility_modifier_token2] = ACTIONS(1043), - [aux_sym_visibility_modifier_token3] = ACTIONS(1043), - [aux_sym__arrow_function_header_token1] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1041), - [aux_sym_cast_type_token1] = ACTIONS(1043), - [aux_sym_echo_statement_token1] = ACTIONS(1043), - [aux_sym_exit_statement_token1] = ACTIONS(1043), - [anon_sym_unset] = ACTIONS(1043), - [aux_sym_declare_statement_token1] = ACTIONS(1043), - [aux_sym_declare_statement_token2] = ACTIONS(1043), - [sym_float] = ACTIONS(1043), - [aux_sym_try_statement_token1] = ACTIONS(1043), - [aux_sym_goto_statement_token1] = ACTIONS(1043), - [aux_sym_continue_statement_token1] = ACTIONS(1043), - [aux_sym_break_statement_token1] = ACTIONS(1043), - [sym_integer] = ACTIONS(1043), - [aux_sym_return_statement_token1] = ACTIONS(1043), - [aux_sym_throw_expression_token1] = ACTIONS(1043), - [aux_sym_while_statement_token1] = ACTIONS(1043), - [aux_sym_while_statement_token2] = ACTIONS(1043), - [aux_sym_do_statement_token1] = ACTIONS(1043), - [aux_sym_for_statement_token1] = ACTIONS(1043), - [aux_sym_for_statement_token2] = ACTIONS(1043), - [aux_sym_foreach_statement_token1] = ACTIONS(1043), - [aux_sym_foreach_statement_token2] = ACTIONS(1043), - [aux_sym_if_statement_token1] = ACTIONS(1043), - [aux_sym_if_statement_token2] = ACTIONS(1043), - [aux_sym_else_if_clause_token1] = ACTIONS(1043), - [aux_sym_else_clause_token1] = ACTIONS(1043), - [aux_sym_match_expression_token1] = ACTIONS(1043), - [aux_sym_match_default_expression_token1] = ACTIONS(1043), - [aux_sym_switch_statement_token1] = ACTIONS(1043), - [aux_sym_switch_block_token1] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1041), - [aux_sym_clone_expression_token1] = ACTIONS(1043), - [aux_sym_print_intrinsic_token1] = ACTIONS(1043), - [aux_sym_object_creation_expression_token1] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1041), - [anon_sym_PLUS_PLUS] = ACTIONS(1041), - [aux_sym__list_destructing_token1] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_self] = ACTIONS(1043), - [anon_sym_parent] = ACTIONS(1043), - [aux_sym__argument_name_token1] = ACTIONS(1043), - [aux_sym__argument_name_token2] = ACTIONS(1043), - [anon_sym_POUND_LBRACK] = ACTIONS(1041), - [aux_sym_encapsed_string_token1] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [aux_sym_string_token1] = ACTIONS(1041), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_LT_LT_LT] = ACTIONS(1041), - [anon_sym_BQUOTE] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1041), - [aux_sym_yield_expression_token1] = ACTIONS(1043), - [aux_sym_include_expression_token1] = ACTIONS(1043), - [aux_sym_include_once_expression_token1] = ACTIONS(1043), - [aux_sym_require_expression_token1] = ACTIONS(1043), - [aux_sym_require_once_expression_token1] = ACTIONS(1043), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1041), + [444] = { + [sym_text_interpolation] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_name] = ACTIONS(1138), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1140), + [aux_sym_function_static_declaration_token1] = ACTIONS(1138), + [aux_sym_global_declaration_token1] = ACTIONS(1138), + [aux_sym_namespace_definition_token1] = ACTIONS(1138), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1138), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1138), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1138), + [anon_sym_BSLASH] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [aux_sym_trait_declaration_token1] = ACTIONS(1138), + [aux_sym_interface_declaration_token1] = ACTIONS(1138), + [aux_sym_enum_declaration_token1] = ACTIONS(1138), + [aux_sym_enum_case_token1] = ACTIONS(1138), + [aux_sym_class_declaration_token1] = ACTIONS(1138), + [aux_sym_final_modifier_token1] = ACTIONS(1138), + [aux_sym_abstract_modifier_token1] = ACTIONS(1138), + [aux_sym_readonly_modifier_token1] = ACTIONS(1138), + [aux_sym_visibility_modifier_token1] = ACTIONS(1138), + [aux_sym_visibility_modifier_token2] = ACTIONS(1138), + [aux_sym_visibility_modifier_token3] = ACTIONS(1138), + [aux_sym__arrow_function_header_token1] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1136), + [aux_sym_cast_type_token1] = ACTIONS(1138), + [aux_sym_echo_statement_token1] = ACTIONS(1138), + [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(5), + [sym_grit_metavariable] = ACTIONS(1136), + [sym__automatic_semicolon] = ACTIONS(1140), }, - [452] = { - [sym_text_interpolation] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_name] = ACTIONS(1140), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1142), - [aux_sym_function_static_declaration_token1] = ACTIONS(1140), - [aux_sym_global_declaration_token1] = ACTIONS(1140), - [aux_sym_namespace_definition_token1] = ACTIONS(1140), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1140), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1140), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1140), - [anon_sym_BSLASH] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1138), - [aux_sym_trait_declaration_token1] = ACTIONS(1140), - [aux_sym_interface_declaration_token1] = ACTIONS(1140), - [aux_sym_enum_declaration_token1] = ACTIONS(1140), - [aux_sym_enum_case_token1] = ACTIONS(1140), - [aux_sym_class_declaration_token1] = ACTIONS(1140), - [aux_sym_final_modifier_token1] = ACTIONS(1140), - [aux_sym_abstract_modifier_token1] = ACTIONS(1140), - [aux_sym_readonly_modifier_token1] = ACTIONS(1140), - [aux_sym_visibility_modifier_token1] = ACTIONS(1140), - [aux_sym_visibility_modifier_token2] = ACTIONS(1140), - [aux_sym_visibility_modifier_token3] = ACTIONS(1140), - [aux_sym__arrow_function_header_token1] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1138), - [aux_sym_cast_type_token1] = ACTIONS(1140), - [aux_sym_echo_statement_token1] = ACTIONS(1140), - [aux_sym_exit_statement_token1] = ACTIONS(1140), - [anon_sym_unset] = ACTIONS(1140), - [aux_sym_declare_statement_token1] = ACTIONS(1140), - [aux_sym_declare_statement_token2] = ACTIONS(1140), - [sym_float] = ACTIONS(1140), - [aux_sym_try_statement_token1] = ACTIONS(1140), - [aux_sym_goto_statement_token1] = ACTIONS(1140), - [aux_sym_continue_statement_token1] = ACTIONS(1140), - [aux_sym_break_statement_token1] = ACTIONS(1140), - [sym_integer] = ACTIONS(1140), - [aux_sym_return_statement_token1] = ACTIONS(1140), - [aux_sym_throw_expression_token1] = ACTIONS(1140), - [aux_sym_while_statement_token1] = ACTIONS(1140), - [aux_sym_while_statement_token2] = ACTIONS(1140), - [aux_sym_do_statement_token1] = ACTIONS(1140), - [aux_sym_for_statement_token1] = ACTIONS(1140), - [aux_sym_for_statement_token2] = ACTIONS(1140), - [aux_sym_foreach_statement_token1] = ACTIONS(1140), - [aux_sym_foreach_statement_token2] = ACTIONS(1140), - [aux_sym_if_statement_token1] = ACTIONS(1140), - [aux_sym_if_statement_token2] = ACTIONS(1140), - [aux_sym_else_if_clause_token1] = ACTIONS(1140), - [aux_sym_else_clause_token1] = ACTIONS(1140), - [aux_sym_match_expression_token1] = ACTIONS(1140), - [aux_sym_match_default_expression_token1] = ACTIONS(1140), - [aux_sym_switch_statement_token1] = ACTIONS(1140), - [aux_sym_switch_block_token1] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_AT] = ACTIONS(1138), - [aux_sym_clone_expression_token1] = ACTIONS(1140), - [aux_sym_print_intrinsic_token1] = ACTIONS(1140), - [aux_sym_object_creation_expression_token1] = ACTIONS(1140), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [aux_sym__list_destructing_token1] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_self] = ACTIONS(1140), - [anon_sym_parent] = ACTIONS(1140), - [aux_sym__argument_name_token1] = ACTIONS(1140), - [aux_sym__argument_name_token2] = ACTIONS(1140), - [anon_sym_POUND_LBRACK] = ACTIONS(1138), - [aux_sym_encapsed_string_token1] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [aux_sym_string_token1] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_LT_LT_LT] = ACTIONS(1138), - [anon_sym_BQUOTE] = ACTIONS(1138), - [anon_sym_DOLLAR] = ACTIONS(1138), - [aux_sym_yield_expression_token1] = ACTIONS(1140), - [aux_sym_include_expression_token1] = ACTIONS(1140), - [aux_sym_include_once_expression_token1] = ACTIONS(1140), - [aux_sym_require_expression_token1] = ACTIONS(1140), - [aux_sym_require_once_expression_token1] = ACTIONS(1140), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1138), - [sym__automatic_semicolon] = ACTIONS(1142), + [445] = { + [sym_text_interpolation] = STATE(445), + [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_grit_metavariable] = ACTIONS(1082), }, - [453] = { - [sym_text_interpolation] = STATE(453), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1144), - [sym__automatic_semicolon] = ACTIONS(1144), + [446] = { + [sym_text_interpolation] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(1142), + [sym_name] = ACTIONS(1144), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1146), + [aux_sym_function_static_declaration_token1] = ACTIONS(1144), + [aux_sym_global_declaration_token1] = ACTIONS(1144), + [aux_sym_namespace_definition_token1] = ACTIONS(1144), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1144), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1144), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1144), + [anon_sym_BSLASH] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1142), + [aux_sym_trait_declaration_token1] = ACTIONS(1144), + [aux_sym_interface_declaration_token1] = ACTIONS(1144), + [aux_sym_enum_declaration_token1] = ACTIONS(1144), + [aux_sym_enum_case_token1] = ACTIONS(1144), + [aux_sym_class_declaration_token1] = ACTIONS(1144), + [aux_sym_final_modifier_token1] = ACTIONS(1144), + [aux_sym_abstract_modifier_token1] = ACTIONS(1144), + [aux_sym_readonly_modifier_token1] = ACTIONS(1144), + [aux_sym_visibility_modifier_token1] = ACTIONS(1144), + [aux_sym_visibility_modifier_token2] = ACTIONS(1144), + [aux_sym_visibility_modifier_token3] = ACTIONS(1144), + [aux_sym__arrow_function_header_token1] = ACTIONS(1144), + [anon_sym_LPAREN] = ACTIONS(1142), + [aux_sym_cast_type_token1] = ACTIONS(1144), + [aux_sym_echo_statement_token1] = ACTIONS(1144), + [aux_sym_exit_statement_token1] = ACTIONS(1144), + [anon_sym_unset] = ACTIONS(1144), + [aux_sym_declare_statement_token1] = ACTIONS(1144), + [aux_sym_declare_statement_token2] = ACTIONS(1144), + [sym_float] = ACTIONS(1144), + [aux_sym_try_statement_token1] = ACTIONS(1144), + [aux_sym_goto_statement_token1] = ACTIONS(1144), + [aux_sym_continue_statement_token1] = ACTIONS(1144), + [aux_sym_break_statement_token1] = ACTIONS(1144), + [sym_integer] = ACTIONS(1144), + [aux_sym_return_statement_token1] = ACTIONS(1144), + [aux_sym_throw_expression_token1] = ACTIONS(1144), + [aux_sym_while_statement_token1] = ACTIONS(1144), + [aux_sym_while_statement_token2] = ACTIONS(1144), + [aux_sym_do_statement_token1] = ACTIONS(1144), + [aux_sym_for_statement_token1] = ACTIONS(1144), + [aux_sym_for_statement_token2] = ACTIONS(1144), + [aux_sym_foreach_statement_token1] = ACTIONS(1144), + [aux_sym_foreach_statement_token2] = ACTIONS(1144), + [aux_sym_if_statement_token1] = ACTIONS(1144), + [aux_sym_if_statement_token2] = ACTIONS(1144), + [aux_sym_else_if_clause_token1] = ACTIONS(1144), + [aux_sym_else_clause_token1] = ACTIONS(1144), + [aux_sym_match_expression_token1] = ACTIONS(1144), + [aux_sym_match_default_expression_token1] = ACTIONS(1144), + [aux_sym_switch_statement_token1] = ACTIONS(1144), + [aux_sym_switch_block_token1] = ACTIONS(1144), + [anon_sym_PLUS] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1144), + [anon_sym_TILDE] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(1142), + [aux_sym_clone_expression_token1] = ACTIONS(1144), + [aux_sym_print_intrinsic_token1] = ACTIONS(1144), + [aux_sym_object_creation_expression_token1] = ACTIONS(1144), + [anon_sym_DASH_DASH] = ACTIONS(1142), + [anon_sym_PLUS_PLUS] = ACTIONS(1142), + [aux_sym__list_destructing_token1] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(1142), + [anon_sym_self] = ACTIONS(1144), + [anon_sym_parent] = ACTIONS(1144), + [aux_sym__argument_name_token1] = ACTIONS(1144), + [aux_sym__argument_name_token2] = ACTIONS(1144), + [anon_sym_POUND_LBRACK] = ACTIONS(1142), + [aux_sym_encapsed_string_token1] = ACTIONS(1142), + [anon_sym_DQUOTE] = ACTIONS(1142), + [aux_sym_string_token1] = ACTIONS(1142), + [anon_sym_SQUOTE] = ACTIONS(1142), + [anon_sym_LT_LT_LT] = ACTIONS(1142), + [anon_sym_BQUOTE] = ACTIONS(1142), + [anon_sym_DOLLAR] = ACTIONS(1142), + [aux_sym_yield_expression_token1] = ACTIONS(1144), + [aux_sym_include_expression_token1] = ACTIONS(1144), + [aux_sym_include_once_expression_token1] = ACTIONS(1144), + [aux_sym_require_expression_token1] = ACTIONS(1144), + [aux_sym_require_once_expression_token1] = ACTIONS(1144), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1142), + [sym__automatic_semicolon] = ACTIONS(1146), }, - [454] = { - [sym_text_interpolation] = STATE(454), + [447] = { + [sym_text_interpolation] = STATE(447), [ts_builtin_sym_end] = ACTIONS(1148), [sym_name] = ACTIONS(1150), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1152), [aux_sym_function_static_declaration_token1] = ACTIONS(1150), [aux_sym_global_declaration_token1] = ACTIONS(1150), [aux_sym_namespace_definition_token1] = ACTIONS(1150), @@ -67841,7 +67458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -67907,1002 +67523,914 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1150), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(1148), + [sym__automatic_semicolon] = ACTIONS(1152), }, - [455] = { - [sym_text_interpolation] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(1152), - [sym_name] = ACTIONS(1154), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1156), - [aux_sym_function_static_declaration_token1] = ACTIONS(1154), - [aux_sym_global_declaration_token1] = ACTIONS(1154), - [aux_sym_namespace_definition_token1] = ACTIONS(1154), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1154), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1154), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1154), - [anon_sym_BSLASH] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_RBRACE] = ACTIONS(1152), - [aux_sym_trait_declaration_token1] = ACTIONS(1154), - [aux_sym_interface_declaration_token1] = ACTIONS(1154), - [aux_sym_enum_declaration_token1] = ACTIONS(1154), - [aux_sym_enum_case_token1] = ACTIONS(1154), - [aux_sym_class_declaration_token1] = ACTIONS(1154), - [aux_sym_final_modifier_token1] = ACTIONS(1154), - [aux_sym_abstract_modifier_token1] = ACTIONS(1154), - [aux_sym_readonly_modifier_token1] = ACTIONS(1154), - [aux_sym_visibility_modifier_token1] = ACTIONS(1154), - [aux_sym_visibility_modifier_token2] = ACTIONS(1154), - [aux_sym_visibility_modifier_token3] = ACTIONS(1154), - [aux_sym__arrow_function_header_token1] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1152), - [aux_sym_cast_type_token1] = ACTIONS(1154), - [aux_sym_echo_statement_token1] = ACTIONS(1154), - [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), - [sym_grit_metavariable] = ACTIONS(1152), - [sym__automatic_semicolon] = ACTIONS(1156), - }, - [456] = { - [sym_text_interpolation] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_name] = ACTIONS(1160), + [448] = { + [sym_text_interpolation] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_name] = ACTIONS(1156), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(1158), - [aux_sym_function_static_declaration_token1] = ACTIONS(1160), - [aux_sym_global_declaration_token1] = ACTIONS(1160), - [aux_sym_namespace_definition_token1] = ACTIONS(1160), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1160), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1160), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1160), - [anon_sym_BSLASH] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [aux_sym_trait_declaration_token1] = ACTIONS(1160), - [aux_sym_interface_declaration_token1] = ACTIONS(1160), - [aux_sym_enum_declaration_token1] = ACTIONS(1160), - [aux_sym_enum_case_token1] = ACTIONS(1160), - [aux_sym_class_declaration_token1] = ACTIONS(1160), - [aux_sym_final_modifier_token1] = ACTIONS(1160), - [aux_sym_abstract_modifier_token1] = ACTIONS(1160), - [aux_sym_readonly_modifier_token1] = ACTIONS(1160), - [sym_var_modifier] = ACTIONS(1160), - [aux_sym_visibility_modifier_token1] = ACTIONS(1160), - [aux_sym_visibility_modifier_token2] = ACTIONS(1160), - [aux_sym_visibility_modifier_token3] = ACTIONS(1160), - [aux_sym__arrow_function_header_token1] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1158), - [aux_sym_cast_type_token1] = ACTIONS(1160), - [aux_sym_echo_statement_token1] = ACTIONS(1160), - [aux_sym_exit_statement_token1] = ACTIONS(1160), - [anon_sym_unset] = ACTIONS(1160), - [aux_sym_declare_statement_token1] = ACTIONS(1160), - [aux_sym_declare_statement_token2] = ACTIONS(1160), - [sym_float] = ACTIONS(1160), - [aux_sym_try_statement_token1] = ACTIONS(1160), - [aux_sym_goto_statement_token1] = ACTIONS(1160), - [aux_sym_continue_statement_token1] = ACTIONS(1160), - [aux_sym_break_statement_token1] = ACTIONS(1160), - [sym_integer] = ACTIONS(1160), - [aux_sym_return_statement_token1] = ACTIONS(1160), - [aux_sym_throw_expression_token1] = ACTIONS(1160), - [aux_sym_while_statement_token1] = ACTIONS(1160), - [aux_sym_while_statement_token2] = ACTIONS(1160), - [aux_sym_do_statement_token1] = ACTIONS(1160), - [aux_sym_for_statement_token1] = ACTIONS(1160), - [aux_sym_for_statement_token2] = ACTIONS(1160), - [aux_sym_foreach_statement_token1] = ACTIONS(1160), - [aux_sym_foreach_statement_token2] = ACTIONS(1160), - [aux_sym_if_statement_token1] = ACTIONS(1160), - [aux_sym_if_statement_token2] = ACTIONS(1160), - [aux_sym_else_if_clause_token1] = ACTIONS(1160), - [aux_sym_else_clause_token1] = ACTIONS(1160), - [aux_sym_match_expression_token1] = ACTIONS(1160), - [aux_sym_match_default_expression_token1] = ACTIONS(1160), - [aux_sym_switch_statement_token1] = ACTIONS(1160), - [aux_sym_switch_block_token1] = ACTIONS(1160), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_TILDE] = ACTIONS(1158), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_AT] = ACTIONS(1158), - [aux_sym_clone_expression_token1] = ACTIONS(1160), - [aux_sym_print_intrinsic_token1] = ACTIONS(1160), - [aux_sym_object_creation_expression_token1] = ACTIONS(1160), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [aux_sym__list_destructing_token1] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_self] = ACTIONS(1160), - [anon_sym_parent] = ACTIONS(1160), - [aux_sym__argument_name_token1] = ACTIONS(1160), - [aux_sym__argument_name_token2] = ACTIONS(1160), - [anon_sym_POUND_LBRACK] = ACTIONS(1158), - [aux_sym_encapsed_string_token1] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [aux_sym_string_token1] = ACTIONS(1158), - [anon_sym_SQUOTE] = ACTIONS(1158), - [anon_sym_LT_LT_LT] = ACTIONS(1158), - [anon_sym_BQUOTE] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1158), - [aux_sym_yield_expression_token1] = ACTIONS(1160), - [aux_sym_include_expression_token1] = ACTIONS(1160), - [aux_sym_include_once_expression_token1] = ACTIONS(1160), - [aux_sym_require_expression_token1] = ACTIONS(1160), - [aux_sym_require_once_expression_token1] = ACTIONS(1160), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1158), + [aux_sym_function_static_declaration_token1] = ACTIONS(1156), + [aux_sym_global_declaration_token1] = ACTIONS(1156), + [aux_sym_namespace_definition_token1] = ACTIONS(1156), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1156), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1156), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1156), + [anon_sym_BSLASH] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [aux_sym_trait_declaration_token1] = ACTIONS(1156), + [aux_sym_interface_declaration_token1] = ACTIONS(1156), + [aux_sym_enum_declaration_token1] = ACTIONS(1156), + [aux_sym_enum_case_token1] = ACTIONS(1156), + [aux_sym_class_declaration_token1] = ACTIONS(1156), + [aux_sym_final_modifier_token1] = ACTIONS(1156), + [aux_sym_abstract_modifier_token1] = ACTIONS(1156), + [aux_sym_readonly_modifier_token1] = ACTIONS(1156), + [aux_sym_visibility_modifier_token1] = ACTIONS(1156), + [aux_sym_visibility_modifier_token2] = ACTIONS(1156), + [aux_sym_visibility_modifier_token3] = ACTIONS(1156), + [aux_sym__arrow_function_header_token1] = ACTIONS(1156), + [anon_sym_LPAREN] = ACTIONS(1154), + [aux_sym_cast_type_token1] = ACTIONS(1156), + [aux_sym_echo_statement_token1] = ACTIONS(1156), + [aux_sym_exit_statement_token1] = ACTIONS(1156), + [anon_sym_unset] = ACTIONS(1156), + [aux_sym_declare_statement_token1] = ACTIONS(1156), + [aux_sym_declare_statement_token2] = ACTIONS(1156), + [sym_float] = ACTIONS(1156), + [aux_sym_try_statement_token1] = ACTIONS(1156), + [aux_sym_goto_statement_token1] = ACTIONS(1156), + [aux_sym_continue_statement_token1] = ACTIONS(1156), + [aux_sym_break_statement_token1] = ACTIONS(1156), + [sym_integer] = ACTIONS(1156), + [aux_sym_return_statement_token1] = ACTIONS(1156), + [aux_sym_throw_expression_token1] = ACTIONS(1156), + [aux_sym_while_statement_token1] = ACTIONS(1156), + [aux_sym_while_statement_token2] = ACTIONS(1156), + [aux_sym_do_statement_token1] = ACTIONS(1156), + [aux_sym_for_statement_token1] = ACTIONS(1156), + [aux_sym_for_statement_token2] = ACTIONS(1156), + [aux_sym_foreach_statement_token1] = ACTIONS(1156), + [aux_sym_foreach_statement_token2] = ACTIONS(1156), + [aux_sym_if_statement_token1] = ACTIONS(1156), + [aux_sym_if_statement_token2] = ACTIONS(1156), + [aux_sym_else_if_clause_token1] = ACTIONS(1156), + [aux_sym_else_clause_token1] = ACTIONS(1156), + [aux_sym_match_expression_token1] = ACTIONS(1156), + [aux_sym_match_default_expression_token1] = ACTIONS(1156), + [aux_sym_switch_statement_token1] = ACTIONS(1156), + [aux_sym_switch_block_token1] = ACTIONS(1156), + [anon_sym_PLUS] = ACTIONS(1156), + [anon_sym_DASH] = ACTIONS(1156), + [anon_sym_TILDE] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_AT] = ACTIONS(1154), + [aux_sym_clone_expression_token1] = ACTIONS(1156), + [aux_sym_print_intrinsic_token1] = ACTIONS(1156), + [aux_sym_object_creation_expression_token1] = ACTIONS(1156), + [anon_sym_DASH_DASH] = ACTIONS(1154), + [anon_sym_PLUS_PLUS] = ACTIONS(1154), + [aux_sym__list_destructing_token1] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_self] = ACTIONS(1156), + [anon_sym_parent] = ACTIONS(1156), + [aux_sym__argument_name_token1] = ACTIONS(1156), + [aux_sym__argument_name_token2] = ACTIONS(1156), + [anon_sym_POUND_LBRACK] = ACTIONS(1154), + [aux_sym_encapsed_string_token1] = ACTIONS(1154), + [anon_sym_DQUOTE] = ACTIONS(1154), + [aux_sym_string_token1] = ACTIONS(1154), + [anon_sym_SQUOTE] = ACTIONS(1154), + [anon_sym_LT_LT_LT] = ACTIONS(1154), + [anon_sym_BQUOTE] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1154), + [aux_sym_yield_expression_token1] = ACTIONS(1156), + [aux_sym_include_expression_token1] = ACTIONS(1156), + [aux_sym_include_once_expression_token1] = ACTIONS(1156), + [aux_sym_require_expression_token1] = ACTIONS(1156), + [aux_sym_require_once_expression_token1] = ACTIONS(1156), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1154), + [sym__automatic_semicolon] = ACTIONS(1158), }, - [457] = { - [sym_text_interpolation] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_name] = ACTIONS(1164), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1166), - [aux_sym_function_static_declaration_token1] = ACTIONS(1164), - [aux_sym_global_declaration_token1] = ACTIONS(1164), - [aux_sym_namespace_definition_token1] = ACTIONS(1164), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1164), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1164), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1164), - [anon_sym_BSLASH] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_RBRACE] = ACTIONS(1162), - [aux_sym_trait_declaration_token1] = ACTIONS(1164), - [aux_sym_interface_declaration_token1] = ACTIONS(1164), - [aux_sym_enum_declaration_token1] = ACTIONS(1164), - [aux_sym_enum_case_token1] = ACTIONS(1164), - [aux_sym_class_declaration_token1] = ACTIONS(1164), - [aux_sym_final_modifier_token1] = ACTIONS(1164), - [aux_sym_abstract_modifier_token1] = ACTIONS(1164), - [aux_sym_readonly_modifier_token1] = ACTIONS(1164), - [aux_sym_visibility_modifier_token1] = ACTIONS(1164), - [aux_sym_visibility_modifier_token2] = ACTIONS(1164), - [aux_sym_visibility_modifier_token3] = ACTIONS(1164), - [aux_sym__arrow_function_header_token1] = ACTIONS(1164), - [anon_sym_LPAREN] = ACTIONS(1162), - [aux_sym_cast_type_token1] = ACTIONS(1164), - [aux_sym_echo_statement_token1] = ACTIONS(1164), - [aux_sym_exit_statement_token1] = ACTIONS(1164), - [anon_sym_unset] = ACTIONS(1164), - [aux_sym_declare_statement_token1] = ACTIONS(1164), - [aux_sym_declare_statement_token2] = ACTIONS(1164), - [sym_float] = ACTIONS(1164), - [aux_sym_try_statement_token1] = ACTIONS(1164), - [aux_sym_goto_statement_token1] = ACTIONS(1164), - [aux_sym_continue_statement_token1] = ACTIONS(1164), - [aux_sym_break_statement_token1] = ACTIONS(1164), - [sym_integer] = ACTIONS(1164), - [aux_sym_return_statement_token1] = ACTIONS(1164), - [aux_sym_throw_expression_token1] = ACTIONS(1164), - [aux_sym_while_statement_token1] = ACTIONS(1164), - [aux_sym_while_statement_token2] = ACTIONS(1164), - [aux_sym_do_statement_token1] = ACTIONS(1164), - [aux_sym_for_statement_token1] = ACTIONS(1164), - [aux_sym_for_statement_token2] = ACTIONS(1164), - [aux_sym_foreach_statement_token1] = ACTIONS(1164), - [aux_sym_foreach_statement_token2] = ACTIONS(1164), - [aux_sym_if_statement_token1] = ACTIONS(1164), - [aux_sym_if_statement_token2] = ACTIONS(1164), - [aux_sym_else_if_clause_token1] = ACTIONS(1164), - [aux_sym_else_clause_token1] = ACTIONS(1164), - [aux_sym_match_expression_token1] = ACTIONS(1164), - [aux_sym_match_default_expression_token1] = ACTIONS(1164), - [aux_sym_switch_statement_token1] = ACTIONS(1164), - [aux_sym_switch_block_token1] = ACTIONS(1164), - [anon_sym_PLUS] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_TILDE] = ACTIONS(1162), - [anon_sym_BANG] = ACTIONS(1162), - [anon_sym_AT] = ACTIONS(1162), - [aux_sym_clone_expression_token1] = ACTIONS(1164), - [aux_sym_print_intrinsic_token1] = ACTIONS(1164), - [aux_sym_object_creation_expression_token1] = ACTIONS(1164), - [anon_sym_DASH_DASH] = ACTIONS(1162), - [anon_sym_PLUS_PLUS] = ACTIONS(1162), - [aux_sym__list_destructing_token1] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_self] = ACTIONS(1164), - [anon_sym_parent] = ACTIONS(1164), - [aux_sym__argument_name_token1] = ACTIONS(1164), - [aux_sym__argument_name_token2] = ACTIONS(1164), - [anon_sym_POUND_LBRACK] = ACTIONS(1162), - [aux_sym_encapsed_string_token1] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1162), - [aux_sym_string_token1] = ACTIONS(1162), - [anon_sym_SQUOTE] = ACTIONS(1162), - [anon_sym_LT_LT_LT] = ACTIONS(1162), - [anon_sym_BQUOTE] = ACTIONS(1162), - [anon_sym_DOLLAR] = ACTIONS(1162), - [aux_sym_yield_expression_token1] = ACTIONS(1164), - [aux_sym_include_expression_token1] = ACTIONS(1164), - [aux_sym_include_once_expression_token1] = ACTIONS(1164), - [aux_sym_require_expression_token1] = ACTIONS(1164), - [aux_sym_require_once_expression_token1] = ACTIONS(1164), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1162), - [sym__automatic_semicolon] = ACTIONS(1166), + [449] = { + [sym_text_interpolation] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_name] = ACTIONS(1162), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1164), + [aux_sym_function_static_declaration_token1] = ACTIONS(1162), + [aux_sym_global_declaration_token1] = ACTIONS(1162), + [aux_sym_namespace_definition_token1] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1162), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1162), + [anon_sym_BSLASH] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [aux_sym_trait_declaration_token1] = ACTIONS(1162), + [aux_sym_interface_declaration_token1] = ACTIONS(1162), + [aux_sym_enum_declaration_token1] = ACTIONS(1162), + [aux_sym_enum_case_token1] = ACTIONS(1162), + [aux_sym_class_declaration_token1] = ACTIONS(1162), + [aux_sym_final_modifier_token1] = ACTIONS(1162), + [aux_sym_abstract_modifier_token1] = ACTIONS(1162), + [aux_sym_readonly_modifier_token1] = ACTIONS(1162), + [aux_sym_visibility_modifier_token1] = ACTIONS(1162), + [aux_sym_visibility_modifier_token2] = ACTIONS(1162), + [aux_sym_visibility_modifier_token3] = ACTIONS(1162), + [aux_sym__arrow_function_header_token1] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1160), + [aux_sym_cast_type_token1] = ACTIONS(1162), + [aux_sym_echo_statement_token1] = ACTIONS(1162), + [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), + [sym_grit_metavariable] = ACTIONS(1160), + [sym__automatic_semicolon] = ACTIONS(1164), }, - [458] = { - [sym_text_interpolation] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_name] = ACTIONS(1170), + [450] = { + [sym_text_interpolation] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_name] = ACTIONS(1168), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1170), + [aux_sym_function_static_declaration_token1] = ACTIONS(1168), + [aux_sym_global_declaration_token1] = ACTIONS(1168), + [aux_sym_namespace_definition_token1] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1168), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1168), + [anon_sym_BSLASH] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [aux_sym_trait_declaration_token1] = ACTIONS(1168), + [aux_sym_interface_declaration_token1] = ACTIONS(1168), + [aux_sym_enum_declaration_token1] = ACTIONS(1168), + [aux_sym_enum_case_token1] = ACTIONS(1168), + [aux_sym_class_declaration_token1] = ACTIONS(1168), + [aux_sym_final_modifier_token1] = ACTIONS(1168), + [aux_sym_abstract_modifier_token1] = ACTIONS(1168), + [aux_sym_readonly_modifier_token1] = ACTIONS(1168), + [aux_sym_visibility_modifier_token1] = ACTIONS(1168), + [aux_sym_visibility_modifier_token2] = ACTIONS(1168), + [aux_sym_visibility_modifier_token3] = ACTIONS(1168), + [aux_sym__arrow_function_header_token1] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1166), + [aux_sym_cast_type_token1] = ACTIONS(1168), + [aux_sym_echo_statement_token1] = ACTIONS(1168), + [aux_sym_exit_statement_token1] = ACTIONS(1168), + [anon_sym_unset] = ACTIONS(1168), + [aux_sym_declare_statement_token1] = ACTIONS(1168), + [aux_sym_declare_statement_token2] = ACTIONS(1168), + [sym_float] = ACTIONS(1168), + [aux_sym_try_statement_token1] = ACTIONS(1168), + [aux_sym_goto_statement_token1] = ACTIONS(1168), + [aux_sym_continue_statement_token1] = ACTIONS(1168), + [aux_sym_break_statement_token1] = ACTIONS(1168), + [sym_integer] = ACTIONS(1168), + [aux_sym_return_statement_token1] = ACTIONS(1168), + [aux_sym_throw_expression_token1] = ACTIONS(1168), + [aux_sym_while_statement_token1] = ACTIONS(1168), + [aux_sym_while_statement_token2] = ACTIONS(1168), + [aux_sym_do_statement_token1] = ACTIONS(1168), + [aux_sym_for_statement_token1] = ACTIONS(1168), + [aux_sym_for_statement_token2] = ACTIONS(1168), + [aux_sym_foreach_statement_token1] = ACTIONS(1168), + [aux_sym_foreach_statement_token2] = ACTIONS(1168), + [aux_sym_if_statement_token1] = ACTIONS(1168), + [aux_sym_if_statement_token2] = ACTIONS(1168), + [aux_sym_else_if_clause_token1] = ACTIONS(1168), + [aux_sym_else_clause_token1] = ACTIONS(1168), + [aux_sym_match_expression_token1] = ACTIONS(1168), + [aux_sym_match_default_expression_token1] = ACTIONS(1168), + [aux_sym_switch_statement_token1] = ACTIONS(1168), + [aux_sym_switch_block_token1] = ACTIONS(1168), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1166), + [aux_sym_clone_expression_token1] = ACTIONS(1168), + [aux_sym_print_intrinsic_token1] = ACTIONS(1168), + [aux_sym_object_creation_expression_token1] = ACTIONS(1168), + [anon_sym_DASH_DASH] = ACTIONS(1166), + [anon_sym_PLUS_PLUS] = ACTIONS(1166), + [aux_sym__list_destructing_token1] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_self] = ACTIONS(1168), + [anon_sym_parent] = ACTIONS(1168), + [aux_sym__argument_name_token1] = ACTIONS(1168), + [aux_sym__argument_name_token2] = ACTIONS(1168), + [anon_sym_POUND_LBRACK] = ACTIONS(1166), + [aux_sym_encapsed_string_token1] = ACTIONS(1166), + [anon_sym_DQUOTE] = ACTIONS(1166), + [aux_sym_string_token1] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1166), + [anon_sym_LT_LT_LT] = ACTIONS(1166), + [anon_sym_BQUOTE] = ACTIONS(1166), + [anon_sym_DOLLAR] = ACTIONS(1166), + [aux_sym_yield_expression_token1] = ACTIONS(1168), + [aux_sym_include_expression_token1] = ACTIONS(1168), + [aux_sym_include_once_expression_token1] = ACTIONS(1168), + [aux_sym_require_expression_token1] = ACTIONS(1168), + [aux_sym_require_once_expression_token1] = ACTIONS(1168), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1166), + [sym__automatic_semicolon] = ACTIONS(1170), + }, + [451] = { + [sym_text_interpolation] = STATE(451), + [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(1170), - [aux_sym_global_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_definition_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1170), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1170), - [anon_sym_BSLASH] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [aux_sym_trait_declaration_token1] = ACTIONS(1170), - [aux_sym_interface_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_declaration_token1] = ACTIONS(1170), - [aux_sym_enum_case_token1] = ACTIONS(1170), - [aux_sym_class_declaration_token1] = ACTIONS(1170), - [aux_sym_final_modifier_token1] = ACTIONS(1170), - [aux_sym_abstract_modifier_token1] = ACTIONS(1170), - [aux_sym_readonly_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token1] = ACTIONS(1170), - [aux_sym_visibility_modifier_token2] = ACTIONS(1170), - [aux_sym_visibility_modifier_token3] = ACTIONS(1170), - [aux_sym__arrow_function_header_token1] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1168), - [aux_sym_cast_type_token1] = ACTIONS(1170), - [aux_sym_echo_statement_token1] = ACTIONS(1170), - [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), - [sym_grit_metavariable] = ACTIONS(1168), - [sym__automatic_semicolon] = 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), + [sym_grit_metavariable] = ACTIONS(1172), }, - [459] = { - [sym_text_interpolation] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_name] = ACTIONS(1176), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1174), - [aux_sym_function_static_declaration_token1] = ACTIONS(1176), - [aux_sym_global_declaration_token1] = ACTIONS(1176), - [aux_sym_namespace_definition_token1] = ACTIONS(1176), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1176), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1176), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1176), - [anon_sym_BSLASH] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [aux_sym_trait_declaration_token1] = ACTIONS(1176), - [aux_sym_interface_declaration_token1] = ACTIONS(1176), - [aux_sym_enum_declaration_token1] = ACTIONS(1176), - [aux_sym_enum_case_token1] = ACTIONS(1176), - [aux_sym_class_declaration_token1] = ACTIONS(1176), - [aux_sym_final_modifier_token1] = ACTIONS(1176), - [aux_sym_abstract_modifier_token1] = ACTIONS(1176), - [aux_sym_readonly_modifier_token1] = ACTIONS(1176), - [sym_var_modifier] = ACTIONS(1176), - [aux_sym_visibility_modifier_token1] = ACTIONS(1176), - [aux_sym_visibility_modifier_token2] = ACTIONS(1176), - [aux_sym_visibility_modifier_token3] = ACTIONS(1176), - [aux_sym__arrow_function_header_token1] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1174), - [aux_sym_cast_type_token1] = ACTIONS(1176), - [aux_sym_echo_statement_token1] = ACTIONS(1176), - [aux_sym_exit_statement_token1] = ACTIONS(1176), - [anon_sym_unset] = ACTIONS(1176), - [aux_sym_declare_statement_token1] = ACTIONS(1176), - [aux_sym_declare_statement_token2] = ACTIONS(1176), - [sym_float] = ACTIONS(1176), - [aux_sym_try_statement_token1] = ACTIONS(1176), - [aux_sym_goto_statement_token1] = ACTIONS(1176), - [aux_sym_continue_statement_token1] = ACTIONS(1176), - [aux_sym_break_statement_token1] = ACTIONS(1176), - [sym_integer] = ACTIONS(1176), - [aux_sym_return_statement_token1] = ACTIONS(1176), - [aux_sym_throw_expression_token1] = ACTIONS(1176), - [aux_sym_while_statement_token1] = ACTIONS(1176), - [aux_sym_while_statement_token2] = ACTIONS(1176), - [aux_sym_do_statement_token1] = ACTIONS(1176), - [aux_sym_for_statement_token1] = ACTIONS(1176), - [aux_sym_for_statement_token2] = ACTIONS(1176), - [aux_sym_foreach_statement_token1] = ACTIONS(1176), - [aux_sym_foreach_statement_token2] = ACTIONS(1176), - [aux_sym_if_statement_token1] = ACTIONS(1176), - [aux_sym_if_statement_token2] = ACTIONS(1176), - [aux_sym_else_if_clause_token1] = ACTIONS(1176), - [aux_sym_else_clause_token1] = ACTIONS(1176), - [aux_sym_match_expression_token1] = ACTIONS(1176), - [aux_sym_match_default_expression_token1] = ACTIONS(1176), - [aux_sym_switch_statement_token1] = ACTIONS(1176), - [aux_sym_switch_block_token1] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_AT] = ACTIONS(1174), - [aux_sym_clone_expression_token1] = ACTIONS(1176), - [aux_sym_print_intrinsic_token1] = ACTIONS(1176), - [aux_sym_object_creation_expression_token1] = ACTIONS(1176), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [aux_sym__list_destructing_token1] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_self] = ACTIONS(1176), - [anon_sym_parent] = ACTIONS(1176), - [aux_sym__argument_name_token1] = ACTIONS(1176), - [aux_sym__argument_name_token2] = ACTIONS(1176), - [anon_sym_POUND_LBRACK] = ACTIONS(1174), - [aux_sym_encapsed_string_token1] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1174), - [aux_sym_string_token1] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_LT_LT_LT] = ACTIONS(1174), - [anon_sym_BQUOTE] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1174), - [aux_sym_yield_expression_token1] = ACTIONS(1176), - [aux_sym_include_expression_token1] = ACTIONS(1176), - [aux_sym_include_once_expression_token1] = ACTIONS(1176), - [aux_sym_require_expression_token1] = ACTIONS(1176), - [aux_sym_require_once_expression_token1] = ACTIONS(1176), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1174), + [452] = { + [sym_text_interpolation] = STATE(452), + [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), + [sym_grit_metavariable] = ACTIONS(1176), }, - [460] = { - [sym_text_interpolation] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_name] = ACTIONS(1180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1178), - [aux_sym_function_static_declaration_token1] = ACTIONS(1180), - [aux_sym_global_declaration_token1] = ACTIONS(1180), - [aux_sym_namespace_definition_token1] = ACTIONS(1180), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1180), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1180), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1180), - [anon_sym_BSLASH] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1178), - [aux_sym_trait_declaration_token1] = ACTIONS(1180), - [aux_sym_interface_declaration_token1] = ACTIONS(1180), - [aux_sym_enum_declaration_token1] = ACTIONS(1180), - [aux_sym_enum_case_token1] = ACTIONS(1180), - [aux_sym_class_declaration_token1] = ACTIONS(1180), - [aux_sym_final_modifier_token1] = ACTIONS(1180), - [aux_sym_abstract_modifier_token1] = ACTIONS(1180), - [aux_sym_readonly_modifier_token1] = ACTIONS(1180), - [sym_var_modifier] = ACTIONS(1180), - [aux_sym_visibility_modifier_token1] = ACTIONS(1180), - [aux_sym_visibility_modifier_token2] = ACTIONS(1180), - [aux_sym_visibility_modifier_token3] = ACTIONS(1180), - [aux_sym__arrow_function_header_token1] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(1178), - [aux_sym_cast_type_token1] = ACTIONS(1180), - [aux_sym_echo_statement_token1] = ACTIONS(1180), - [aux_sym_exit_statement_token1] = ACTIONS(1180), - [anon_sym_unset] = ACTIONS(1180), - [aux_sym_declare_statement_token1] = ACTIONS(1180), - [aux_sym_declare_statement_token2] = ACTIONS(1180), - [sym_float] = ACTIONS(1180), - [aux_sym_try_statement_token1] = ACTIONS(1180), - [aux_sym_goto_statement_token1] = ACTIONS(1180), - [aux_sym_continue_statement_token1] = ACTIONS(1180), - [aux_sym_break_statement_token1] = ACTIONS(1180), - [sym_integer] = ACTIONS(1180), - [aux_sym_return_statement_token1] = ACTIONS(1180), - [aux_sym_throw_expression_token1] = ACTIONS(1180), - [aux_sym_while_statement_token1] = ACTIONS(1180), - [aux_sym_while_statement_token2] = ACTIONS(1180), - [aux_sym_do_statement_token1] = ACTIONS(1180), - [aux_sym_for_statement_token1] = ACTIONS(1180), - [aux_sym_for_statement_token2] = ACTIONS(1180), - [aux_sym_foreach_statement_token1] = ACTIONS(1180), - [aux_sym_foreach_statement_token2] = ACTIONS(1180), - [aux_sym_if_statement_token1] = ACTIONS(1180), - [aux_sym_if_statement_token2] = ACTIONS(1180), - [aux_sym_else_if_clause_token1] = ACTIONS(1180), - [aux_sym_else_clause_token1] = ACTIONS(1180), - [aux_sym_match_expression_token1] = ACTIONS(1180), - [aux_sym_match_default_expression_token1] = ACTIONS(1180), - [aux_sym_switch_statement_token1] = ACTIONS(1180), - [aux_sym_switch_block_token1] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_AT] = ACTIONS(1178), - [aux_sym_clone_expression_token1] = ACTIONS(1180), - [aux_sym_print_intrinsic_token1] = ACTIONS(1180), - [aux_sym_object_creation_expression_token1] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1178), - [anon_sym_PLUS_PLUS] = ACTIONS(1178), - [aux_sym__list_destructing_token1] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_self] = ACTIONS(1180), - [anon_sym_parent] = ACTIONS(1180), - [aux_sym__argument_name_token1] = ACTIONS(1180), - [aux_sym__argument_name_token2] = ACTIONS(1180), - [anon_sym_POUND_LBRACK] = ACTIONS(1178), - [aux_sym_encapsed_string_token1] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1178), - [aux_sym_string_token1] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_LT_LT_LT] = ACTIONS(1178), - [anon_sym_BQUOTE] = ACTIONS(1178), - [anon_sym_DOLLAR] = ACTIONS(1178), - [aux_sym_yield_expression_token1] = ACTIONS(1180), - [aux_sym_include_expression_token1] = ACTIONS(1180), - [aux_sym_include_once_expression_token1] = ACTIONS(1180), - [aux_sym_require_expression_token1] = ACTIONS(1180), - [aux_sym_require_once_expression_token1] = ACTIONS(1180), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1178), + [453] = { + [sym_text_interpolation] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_name] = ACTIONS(1182), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1184), + [aux_sym_function_static_declaration_token1] = ACTIONS(1182), + [aux_sym_global_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_definition_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1182), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1182), + [anon_sym_BSLASH] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [aux_sym_trait_declaration_token1] = ACTIONS(1182), + [aux_sym_interface_declaration_token1] = ACTIONS(1182), + [aux_sym_enum_declaration_token1] = ACTIONS(1182), + [aux_sym_enum_case_token1] = ACTIONS(1182), + [aux_sym_class_declaration_token1] = ACTIONS(1182), + [aux_sym_final_modifier_token1] = ACTIONS(1182), + [aux_sym_abstract_modifier_token1] = ACTIONS(1182), + [aux_sym_readonly_modifier_token1] = ACTIONS(1182), + [aux_sym_visibility_modifier_token1] = ACTIONS(1182), + [aux_sym_visibility_modifier_token2] = ACTIONS(1182), + [aux_sym_visibility_modifier_token3] = ACTIONS(1182), + [aux_sym__arrow_function_header_token1] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1180), + [aux_sym_cast_type_token1] = ACTIONS(1182), + [aux_sym_echo_statement_token1] = ACTIONS(1182), + [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), + [sym_grit_metavariable] = ACTIONS(1180), + [sym__automatic_semicolon] = ACTIONS(1184), }, - [461] = { - [sym_text_interpolation] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_name] = ACTIONS(1184), + [454] = { + [sym_text_interpolation] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(1186), + [sym_name] = ACTIONS(1188), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(1186), - [aux_sym_function_static_declaration_token1] = ACTIONS(1184), - [aux_sym_global_declaration_token1] = ACTIONS(1184), - [aux_sym_namespace_definition_token1] = ACTIONS(1184), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1184), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1184), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1184), - [anon_sym_BSLASH] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1182), - [anon_sym_RBRACE] = ACTIONS(1182), - [aux_sym_trait_declaration_token1] = ACTIONS(1184), - [aux_sym_interface_declaration_token1] = ACTIONS(1184), - [aux_sym_enum_declaration_token1] = ACTIONS(1184), - [aux_sym_enum_case_token1] = ACTIONS(1184), - [aux_sym_class_declaration_token1] = ACTIONS(1184), - [aux_sym_final_modifier_token1] = ACTIONS(1184), - [aux_sym_abstract_modifier_token1] = ACTIONS(1184), - [aux_sym_readonly_modifier_token1] = ACTIONS(1184), - [aux_sym_visibility_modifier_token1] = ACTIONS(1184), - [aux_sym_visibility_modifier_token2] = ACTIONS(1184), - [aux_sym_visibility_modifier_token3] = ACTIONS(1184), - [aux_sym__arrow_function_header_token1] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1182), - [aux_sym_cast_type_token1] = ACTIONS(1184), - [aux_sym_echo_statement_token1] = ACTIONS(1184), - [aux_sym_exit_statement_token1] = ACTIONS(1184), - [anon_sym_unset] = ACTIONS(1184), - [aux_sym_declare_statement_token1] = ACTIONS(1184), - [aux_sym_declare_statement_token2] = ACTIONS(1184), - [sym_float] = ACTIONS(1184), - [aux_sym_try_statement_token1] = ACTIONS(1184), - [aux_sym_goto_statement_token1] = ACTIONS(1184), - [aux_sym_continue_statement_token1] = ACTIONS(1184), - [aux_sym_break_statement_token1] = ACTIONS(1184), - [sym_integer] = ACTIONS(1184), - [aux_sym_return_statement_token1] = ACTIONS(1184), - [aux_sym_throw_expression_token1] = ACTIONS(1184), - [aux_sym_while_statement_token1] = ACTIONS(1184), - [aux_sym_while_statement_token2] = ACTIONS(1184), - [aux_sym_do_statement_token1] = ACTIONS(1184), - [aux_sym_for_statement_token1] = ACTIONS(1184), - [aux_sym_for_statement_token2] = ACTIONS(1184), - [aux_sym_foreach_statement_token1] = ACTIONS(1184), - [aux_sym_foreach_statement_token2] = ACTIONS(1184), - [aux_sym_if_statement_token1] = ACTIONS(1184), - [aux_sym_if_statement_token2] = ACTIONS(1184), - [aux_sym_else_if_clause_token1] = ACTIONS(1184), - [aux_sym_else_clause_token1] = ACTIONS(1184), - [aux_sym_match_expression_token1] = ACTIONS(1184), - [aux_sym_match_default_expression_token1] = ACTIONS(1184), - [aux_sym_switch_statement_token1] = ACTIONS(1184), - [aux_sym_switch_block_token1] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_TILDE] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1182), - [anon_sym_AT] = ACTIONS(1182), - [aux_sym_clone_expression_token1] = ACTIONS(1184), - [aux_sym_print_intrinsic_token1] = ACTIONS(1184), - [aux_sym_object_creation_expression_token1] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1182), - [anon_sym_PLUS_PLUS] = ACTIONS(1182), - [aux_sym__list_destructing_token1] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_self] = ACTIONS(1184), - [anon_sym_parent] = ACTIONS(1184), - [aux_sym__argument_name_token1] = ACTIONS(1184), - [aux_sym__argument_name_token2] = ACTIONS(1184), - [anon_sym_POUND_LBRACK] = ACTIONS(1182), - [aux_sym_encapsed_string_token1] = ACTIONS(1182), - [anon_sym_DQUOTE] = ACTIONS(1182), - [aux_sym_string_token1] = ACTIONS(1182), - [anon_sym_SQUOTE] = ACTIONS(1182), - [anon_sym_LT_LT_LT] = ACTIONS(1182), - [anon_sym_BQUOTE] = ACTIONS(1182), - [anon_sym_DOLLAR] = ACTIONS(1182), - [aux_sym_yield_expression_token1] = ACTIONS(1184), - [aux_sym_include_expression_token1] = ACTIONS(1184), - [aux_sym_include_once_expression_token1] = ACTIONS(1184), - [aux_sym_require_expression_token1] = ACTIONS(1184), - [aux_sym_require_once_expression_token1] = ACTIONS(1184), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1182), + [aux_sym_function_static_declaration_token1] = ACTIONS(1188), + [aux_sym_global_declaration_token1] = ACTIONS(1188), + [aux_sym_namespace_definition_token1] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1188), + [anon_sym_BSLASH] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [aux_sym_trait_declaration_token1] = ACTIONS(1188), + [aux_sym_interface_declaration_token1] = ACTIONS(1188), + [aux_sym_enum_declaration_token1] = ACTIONS(1188), + [aux_sym_enum_case_token1] = ACTIONS(1188), + [aux_sym_class_declaration_token1] = ACTIONS(1188), + [aux_sym_final_modifier_token1] = ACTIONS(1188), + [aux_sym_abstract_modifier_token1] = ACTIONS(1188), + [aux_sym_readonly_modifier_token1] = ACTIONS(1188), + [aux_sym_visibility_modifier_token1] = ACTIONS(1188), + [aux_sym_visibility_modifier_token2] = ACTIONS(1188), + [aux_sym_visibility_modifier_token3] = ACTIONS(1188), + [aux_sym__arrow_function_header_token1] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1186), + [aux_sym_cast_type_token1] = ACTIONS(1188), + [aux_sym_echo_statement_token1] = ACTIONS(1188), + [aux_sym_exit_statement_token1] = ACTIONS(1188), + [anon_sym_unset] = ACTIONS(1188), + [aux_sym_declare_statement_token1] = ACTIONS(1188), + [aux_sym_declare_statement_token2] = ACTIONS(1188), + [sym_float] = ACTIONS(1188), + [aux_sym_try_statement_token1] = ACTIONS(1188), + [aux_sym_goto_statement_token1] = ACTIONS(1188), + [aux_sym_continue_statement_token1] = ACTIONS(1188), + [aux_sym_break_statement_token1] = ACTIONS(1188), + [sym_integer] = ACTIONS(1188), + [aux_sym_return_statement_token1] = ACTIONS(1188), + [aux_sym_throw_expression_token1] = ACTIONS(1188), + [aux_sym_while_statement_token1] = ACTIONS(1188), + [aux_sym_while_statement_token2] = ACTIONS(1188), + [aux_sym_do_statement_token1] = ACTIONS(1188), + [aux_sym_for_statement_token1] = ACTIONS(1188), + [aux_sym_for_statement_token2] = ACTIONS(1188), + [aux_sym_foreach_statement_token1] = ACTIONS(1188), + [aux_sym_foreach_statement_token2] = ACTIONS(1188), + [aux_sym_if_statement_token1] = ACTIONS(1188), + [aux_sym_if_statement_token2] = ACTIONS(1188), + [aux_sym_else_if_clause_token1] = ACTIONS(1188), + [aux_sym_else_clause_token1] = ACTIONS(1188), + [aux_sym_match_expression_token1] = ACTIONS(1188), + [aux_sym_match_default_expression_token1] = ACTIONS(1188), + [aux_sym_switch_statement_token1] = ACTIONS(1188), + [aux_sym_switch_block_token1] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_AT] = ACTIONS(1186), + [aux_sym_clone_expression_token1] = ACTIONS(1188), + [aux_sym_print_intrinsic_token1] = ACTIONS(1188), + [aux_sym_object_creation_expression_token1] = ACTIONS(1188), + [anon_sym_DASH_DASH] = ACTIONS(1186), + [anon_sym_PLUS_PLUS] = ACTIONS(1186), + [aux_sym__list_destructing_token1] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_self] = ACTIONS(1188), + [anon_sym_parent] = ACTIONS(1188), + [aux_sym__argument_name_token1] = ACTIONS(1188), + [aux_sym__argument_name_token2] = ACTIONS(1188), + [anon_sym_POUND_LBRACK] = ACTIONS(1186), + [aux_sym_encapsed_string_token1] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(1186), + [aux_sym_string_token1] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(1186), + [anon_sym_LT_LT_LT] = ACTIONS(1186), + [anon_sym_BQUOTE] = ACTIONS(1186), + [anon_sym_DOLLAR] = ACTIONS(1186), + [aux_sym_yield_expression_token1] = ACTIONS(1188), + [aux_sym_include_expression_token1] = ACTIONS(1188), + [aux_sym_include_once_expression_token1] = ACTIONS(1188), + [aux_sym_require_expression_token1] = ACTIONS(1188), + [aux_sym_require_once_expression_token1] = ACTIONS(1188), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1186), [sym__automatic_semicolon] = ACTIONS(1186), }, - [462] = { - [sym_text_interpolation] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_name] = ACTIONS(1190), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1192), - [aux_sym_function_static_declaration_token1] = ACTIONS(1190), - [aux_sym_global_declaration_token1] = ACTIONS(1190), - [aux_sym_namespace_definition_token1] = ACTIONS(1190), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1190), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1190), - [anon_sym_BSLASH] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [aux_sym_trait_declaration_token1] = ACTIONS(1190), - [aux_sym_interface_declaration_token1] = ACTIONS(1190), - [aux_sym_enum_declaration_token1] = ACTIONS(1190), - [aux_sym_enum_case_token1] = ACTIONS(1190), - [aux_sym_class_declaration_token1] = ACTIONS(1190), - [aux_sym_final_modifier_token1] = ACTIONS(1190), - [aux_sym_abstract_modifier_token1] = ACTIONS(1190), - [aux_sym_readonly_modifier_token1] = ACTIONS(1190), - [aux_sym_visibility_modifier_token1] = ACTIONS(1190), - [aux_sym_visibility_modifier_token2] = ACTIONS(1190), - [aux_sym_visibility_modifier_token3] = ACTIONS(1190), - [aux_sym__arrow_function_header_token1] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1188), - [aux_sym_cast_type_token1] = ACTIONS(1190), - [aux_sym_echo_statement_token1] = ACTIONS(1190), - [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), - [sym_grit_metavariable] = ACTIONS(1188), - [sym__automatic_semicolon] = ACTIONS(1192), - }, - [463] = { - [sym_text_interpolation] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_name] = ACTIONS(1196), + [455] = { + [sym_text_interpolation] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_name] = ACTIONS(1192), [anon_sym_QMARK_GT] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(1194), - [aux_sym_function_static_declaration_token1] = ACTIONS(1196), - [aux_sym_global_declaration_token1] = ACTIONS(1196), - [aux_sym_namespace_definition_token1] = ACTIONS(1196), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1196), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1196), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1196), - [anon_sym_BSLASH] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_RBRACE] = ACTIONS(1194), - [aux_sym_trait_declaration_token1] = ACTIONS(1196), - [aux_sym_interface_declaration_token1] = ACTIONS(1196), - [aux_sym_enum_declaration_token1] = ACTIONS(1196), - [aux_sym_enum_case_token1] = ACTIONS(1196), - [aux_sym_class_declaration_token1] = ACTIONS(1196), - [aux_sym_final_modifier_token1] = ACTIONS(1196), - [aux_sym_abstract_modifier_token1] = ACTIONS(1196), - [aux_sym_readonly_modifier_token1] = ACTIONS(1196), - [sym_var_modifier] = ACTIONS(1196), - [aux_sym_visibility_modifier_token1] = ACTIONS(1196), - [aux_sym_visibility_modifier_token2] = ACTIONS(1196), - [aux_sym_visibility_modifier_token3] = ACTIONS(1196), - [aux_sym__arrow_function_header_token1] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1194), - [aux_sym_cast_type_token1] = ACTIONS(1196), - [aux_sym_echo_statement_token1] = ACTIONS(1196), - [aux_sym_exit_statement_token1] = ACTIONS(1196), - [anon_sym_unset] = ACTIONS(1196), - [aux_sym_declare_statement_token1] = ACTIONS(1196), - [aux_sym_declare_statement_token2] = ACTIONS(1196), - [sym_float] = ACTIONS(1196), - [aux_sym_try_statement_token1] = ACTIONS(1196), - [aux_sym_goto_statement_token1] = ACTIONS(1196), - [aux_sym_continue_statement_token1] = ACTIONS(1196), - [aux_sym_break_statement_token1] = ACTIONS(1196), - [sym_integer] = ACTIONS(1196), - [aux_sym_return_statement_token1] = ACTIONS(1196), - [aux_sym_throw_expression_token1] = ACTIONS(1196), - [aux_sym_while_statement_token1] = ACTIONS(1196), - [aux_sym_while_statement_token2] = ACTIONS(1196), - [aux_sym_do_statement_token1] = ACTIONS(1196), - [aux_sym_for_statement_token1] = ACTIONS(1196), - [aux_sym_for_statement_token2] = ACTIONS(1196), - [aux_sym_foreach_statement_token1] = ACTIONS(1196), - [aux_sym_foreach_statement_token2] = ACTIONS(1196), - [aux_sym_if_statement_token1] = ACTIONS(1196), - [aux_sym_if_statement_token2] = ACTIONS(1196), - [aux_sym_else_if_clause_token1] = ACTIONS(1196), - [aux_sym_else_clause_token1] = ACTIONS(1196), - [aux_sym_match_expression_token1] = ACTIONS(1196), - [aux_sym_match_default_expression_token1] = ACTIONS(1196), - [aux_sym_switch_statement_token1] = ACTIONS(1196), - [aux_sym_switch_block_token1] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_TILDE] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(1194), - [aux_sym_clone_expression_token1] = ACTIONS(1196), - [aux_sym_print_intrinsic_token1] = ACTIONS(1196), - [aux_sym_object_creation_expression_token1] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [aux_sym__list_destructing_token1] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_self] = ACTIONS(1196), - [anon_sym_parent] = ACTIONS(1196), - [aux_sym__argument_name_token1] = ACTIONS(1196), - [aux_sym__argument_name_token2] = ACTIONS(1196), - [anon_sym_POUND_LBRACK] = ACTIONS(1194), - [aux_sym_encapsed_string_token1] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1194), - [aux_sym_string_token1] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_LT_LT_LT] = ACTIONS(1194), - [anon_sym_BQUOTE] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1194), - [aux_sym_yield_expression_token1] = ACTIONS(1196), - [aux_sym_include_expression_token1] = ACTIONS(1196), - [aux_sym_include_once_expression_token1] = ACTIONS(1196), - [aux_sym_require_expression_token1] = ACTIONS(1196), - [aux_sym_require_once_expression_token1] = ACTIONS(1196), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1194), + [aux_sym_function_static_declaration_token1] = ACTIONS(1192), + [aux_sym_global_declaration_token1] = ACTIONS(1192), + [aux_sym_namespace_definition_token1] = ACTIONS(1192), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1192), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1192), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1192), + [anon_sym_BSLASH] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_RBRACE] = ACTIONS(1190), + [aux_sym_trait_declaration_token1] = ACTIONS(1192), + [aux_sym_interface_declaration_token1] = ACTIONS(1192), + [aux_sym_enum_declaration_token1] = ACTIONS(1192), + [aux_sym_enum_case_token1] = ACTIONS(1192), + [aux_sym_class_declaration_token1] = ACTIONS(1192), + [aux_sym_final_modifier_token1] = ACTIONS(1192), + [aux_sym_abstract_modifier_token1] = ACTIONS(1192), + [aux_sym_readonly_modifier_token1] = ACTIONS(1192), + [aux_sym_visibility_modifier_token1] = ACTIONS(1192), + [aux_sym_visibility_modifier_token2] = ACTIONS(1192), + [aux_sym_visibility_modifier_token3] = ACTIONS(1192), + [aux_sym__arrow_function_header_token1] = ACTIONS(1192), + [anon_sym_LPAREN] = ACTIONS(1190), + [aux_sym_cast_type_token1] = ACTIONS(1192), + [aux_sym_echo_statement_token1] = ACTIONS(1192), + [aux_sym_exit_statement_token1] = ACTIONS(1192), + [anon_sym_unset] = ACTIONS(1192), + [aux_sym_declare_statement_token1] = ACTIONS(1192), + [aux_sym_declare_statement_token2] = ACTIONS(1192), + [sym_float] = ACTIONS(1192), + [aux_sym_try_statement_token1] = ACTIONS(1192), + [aux_sym_goto_statement_token1] = ACTIONS(1192), + [aux_sym_continue_statement_token1] = ACTIONS(1192), + [aux_sym_break_statement_token1] = ACTIONS(1192), + [sym_integer] = ACTIONS(1192), + [aux_sym_return_statement_token1] = ACTIONS(1192), + [aux_sym_throw_expression_token1] = ACTIONS(1192), + [aux_sym_while_statement_token1] = ACTIONS(1192), + [aux_sym_while_statement_token2] = ACTIONS(1192), + [aux_sym_do_statement_token1] = ACTIONS(1192), + [aux_sym_for_statement_token1] = ACTIONS(1192), + [aux_sym_for_statement_token2] = ACTIONS(1192), + [aux_sym_foreach_statement_token1] = ACTIONS(1192), + [aux_sym_foreach_statement_token2] = ACTIONS(1192), + [aux_sym_if_statement_token1] = ACTIONS(1192), + [aux_sym_if_statement_token2] = ACTIONS(1192), + [aux_sym_else_if_clause_token1] = ACTIONS(1192), + [aux_sym_else_clause_token1] = ACTIONS(1192), + [aux_sym_match_expression_token1] = ACTIONS(1192), + [aux_sym_match_default_expression_token1] = ACTIONS(1192), + [aux_sym_switch_statement_token1] = ACTIONS(1192), + [aux_sym_switch_block_token1] = ACTIONS(1192), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_AT] = ACTIONS(1190), + [aux_sym_clone_expression_token1] = ACTIONS(1192), + [aux_sym_print_intrinsic_token1] = ACTIONS(1192), + [aux_sym_object_creation_expression_token1] = ACTIONS(1192), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [aux_sym__list_destructing_token1] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_self] = ACTIONS(1192), + [anon_sym_parent] = ACTIONS(1192), + [aux_sym__argument_name_token1] = ACTIONS(1192), + [aux_sym__argument_name_token2] = ACTIONS(1192), + [anon_sym_POUND_LBRACK] = ACTIONS(1190), + [aux_sym_encapsed_string_token1] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1190), + [aux_sym_string_token1] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(1190), + [anon_sym_LT_LT_LT] = ACTIONS(1190), + [anon_sym_BQUOTE] = ACTIONS(1190), + [anon_sym_DOLLAR] = ACTIONS(1190), + [aux_sym_yield_expression_token1] = ACTIONS(1192), + [aux_sym_include_expression_token1] = ACTIONS(1192), + [aux_sym_include_once_expression_token1] = ACTIONS(1192), + [aux_sym_require_expression_token1] = ACTIONS(1192), + [aux_sym_require_once_expression_token1] = ACTIONS(1192), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1190), + [sym__automatic_semicolon] = ACTIONS(1194), }, - [464] = { - [sym_text_interpolation] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_name] = ACTIONS(1200), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1202), - [aux_sym_function_static_declaration_token1] = ACTIONS(1200), - [aux_sym_global_declaration_token1] = ACTIONS(1200), - [aux_sym_namespace_definition_token1] = ACTIONS(1200), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1200), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1200), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1200), - [anon_sym_BSLASH] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [aux_sym_trait_declaration_token1] = ACTIONS(1200), - [aux_sym_interface_declaration_token1] = ACTIONS(1200), - [aux_sym_enum_declaration_token1] = ACTIONS(1200), - [aux_sym_enum_case_token1] = ACTIONS(1200), - [aux_sym_class_declaration_token1] = ACTIONS(1200), - [aux_sym_final_modifier_token1] = ACTIONS(1200), - [aux_sym_abstract_modifier_token1] = ACTIONS(1200), - [aux_sym_readonly_modifier_token1] = ACTIONS(1200), - [aux_sym_visibility_modifier_token1] = ACTIONS(1200), - [aux_sym_visibility_modifier_token2] = ACTIONS(1200), - [aux_sym_visibility_modifier_token3] = ACTIONS(1200), - [aux_sym__arrow_function_header_token1] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1198), - [aux_sym_cast_type_token1] = ACTIONS(1200), - [aux_sym_echo_statement_token1] = ACTIONS(1200), - [aux_sym_exit_statement_token1] = ACTIONS(1200), - [anon_sym_unset] = ACTIONS(1200), - [aux_sym_declare_statement_token1] = ACTIONS(1200), - [aux_sym_declare_statement_token2] = ACTIONS(1200), - [sym_float] = ACTIONS(1200), - [aux_sym_try_statement_token1] = ACTIONS(1200), - [aux_sym_goto_statement_token1] = ACTIONS(1200), - [aux_sym_continue_statement_token1] = ACTIONS(1200), - [aux_sym_break_statement_token1] = ACTIONS(1200), - [sym_integer] = ACTIONS(1200), - [aux_sym_return_statement_token1] = ACTIONS(1200), - [aux_sym_throw_expression_token1] = ACTIONS(1200), - [aux_sym_while_statement_token1] = ACTIONS(1200), - [aux_sym_while_statement_token2] = ACTIONS(1200), - [aux_sym_do_statement_token1] = ACTIONS(1200), - [aux_sym_for_statement_token1] = ACTIONS(1200), - [aux_sym_for_statement_token2] = ACTIONS(1200), - [aux_sym_foreach_statement_token1] = ACTIONS(1200), - [aux_sym_foreach_statement_token2] = ACTIONS(1200), - [aux_sym_if_statement_token1] = ACTIONS(1200), - [aux_sym_if_statement_token2] = ACTIONS(1200), - [aux_sym_else_if_clause_token1] = ACTIONS(1200), - [aux_sym_else_clause_token1] = ACTIONS(1200), - [aux_sym_match_expression_token1] = ACTIONS(1200), - [aux_sym_match_default_expression_token1] = ACTIONS(1200), - [aux_sym_switch_statement_token1] = ACTIONS(1200), - [aux_sym_switch_block_token1] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_AT] = ACTIONS(1198), - [aux_sym_clone_expression_token1] = ACTIONS(1200), - [aux_sym_print_intrinsic_token1] = ACTIONS(1200), - [aux_sym_object_creation_expression_token1] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [aux_sym__list_destructing_token1] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_self] = ACTIONS(1200), - [anon_sym_parent] = ACTIONS(1200), - [aux_sym__argument_name_token1] = ACTIONS(1200), - [aux_sym__argument_name_token2] = ACTIONS(1200), - [anon_sym_POUND_LBRACK] = ACTIONS(1198), - [aux_sym_encapsed_string_token1] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [aux_sym_string_token1] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_BQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1198), - [aux_sym_yield_expression_token1] = ACTIONS(1200), - [aux_sym_include_expression_token1] = ACTIONS(1200), - [aux_sym_include_once_expression_token1] = ACTIONS(1200), - [aux_sym_require_expression_token1] = ACTIONS(1200), - [aux_sym_require_once_expression_token1] = ACTIONS(1200), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1198), - [sym__automatic_semicolon] = ACTIONS(1202), + [456] = { + [sym_text_interpolation] = STATE(456), + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_name] = ACTIONS(1198), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1200), + [aux_sym_function_static_declaration_token1] = ACTIONS(1198), + [aux_sym_global_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_definition_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1198), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1198), + [anon_sym_BSLASH] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [aux_sym_trait_declaration_token1] = ACTIONS(1198), + [aux_sym_interface_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_declaration_token1] = ACTIONS(1198), + [aux_sym_enum_case_token1] = ACTIONS(1198), + [aux_sym_class_declaration_token1] = ACTIONS(1198), + [aux_sym_final_modifier_token1] = ACTIONS(1198), + [aux_sym_abstract_modifier_token1] = ACTIONS(1198), + [aux_sym_readonly_modifier_token1] = ACTIONS(1198), + [aux_sym_visibility_modifier_token1] = ACTIONS(1198), + [aux_sym_visibility_modifier_token2] = ACTIONS(1198), + [aux_sym_visibility_modifier_token3] = ACTIONS(1198), + [aux_sym__arrow_function_header_token1] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [aux_sym_cast_type_token1] = ACTIONS(1198), + [aux_sym_echo_statement_token1] = ACTIONS(1198), + [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), + [sym_grit_metavariable] = ACTIONS(1196), + [sym__automatic_semicolon] = ACTIONS(1200), }, - [465] = { - [sym_text_interpolation] = STATE(465), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1204), + [457] = { + [sym_text_interpolation] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_name] = ACTIONS(1204), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1206), + [aux_sym_function_static_declaration_token1] = ACTIONS(1204), + [aux_sym_global_declaration_token1] = ACTIONS(1204), + [aux_sym_namespace_definition_token1] = ACTIONS(1204), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1204), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1204), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1204), + [anon_sym_BSLASH] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [aux_sym_trait_declaration_token1] = ACTIONS(1204), + [aux_sym_interface_declaration_token1] = ACTIONS(1204), + [aux_sym_enum_declaration_token1] = ACTIONS(1204), + [aux_sym_enum_case_token1] = ACTIONS(1204), + [aux_sym_class_declaration_token1] = ACTIONS(1204), + [aux_sym_final_modifier_token1] = ACTIONS(1204), + [aux_sym_abstract_modifier_token1] = ACTIONS(1204), + [aux_sym_readonly_modifier_token1] = ACTIONS(1204), + [aux_sym_visibility_modifier_token1] = ACTIONS(1204), + [aux_sym_visibility_modifier_token2] = ACTIONS(1204), + [aux_sym_visibility_modifier_token3] = ACTIONS(1204), + [aux_sym__arrow_function_header_token1] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1202), + [aux_sym_cast_type_token1] = ACTIONS(1204), + [aux_sym_echo_statement_token1] = ACTIONS(1204), + [aux_sym_exit_statement_token1] = ACTIONS(1204), + [anon_sym_unset] = ACTIONS(1204), + [aux_sym_declare_statement_token1] = ACTIONS(1204), + [aux_sym_declare_statement_token2] = ACTIONS(1204), + [sym_float] = ACTIONS(1204), + [aux_sym_try_statement_token1] = ACTIONS(1204), + [aux_sym_goto_statement_token1] = ACTIONS(1204), + [aux_sym_continue_statement_token1] = ACTIONS(1204), + [aux_sym_break_statement_token1] = ACTIONS(1204), + [sym_integer] = ACTIONS(1204), + [aux_sym_return_statement_token1] = ACTIONS(1204), + [aux_sym_throw_expression_token1] = ACTIONS(1204), + [aux_sym_while_statement_token1] = ACTIONS(1204), + [aux_sym_while_statement_token2] = ACTIONS(1204), + [aux_sym_do_statement_token1] = ACTIONS(1204), + [aux_sym_for_statement_token1] = ACTIONS(1204), + [aux_sym_for_statement_token2] = ACTIONS(1204), + [aux_sym_foreach_statement_token1] = ACTIONS(1204), + [aux_sym_foreach_statement_token2] = ACTIONS(1204), + [aux_sym_if_statement_token1] = ACTIONS(1204), + [aux_sym_if_statement_token2] = ACTIONS(1204), + [aux_sym_else_if_clause_token1] = ACTIONS(1204), + [aux_sym_else_clause_token1] = ACTIONS(1204), + [aux_sym_match_expression_token1] = ACTIONS(1204), + [aux_sym_match_default_expression_token1] = ACTIONS(1204), + [aux_sym_switch_statement_token1] = ACTIONS(1204), + [aux_sym_switch_block_token1] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_AT] = ACTIONS(1202), + [aux_sym_clone_expression_token1] = ACTIONS(1204), + [aux_sym_print_intrinsic_token1] = ACTIONS(1204), + [aux_sym_object_creation_expression_token1] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [aux_sym__list_destructing_token1] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_self] = ACTIONS(1204), + [anon_sym_parent] = ACTIONS(1204), + [aux_sym__argument_name_token1] = ACTIONS(1204), + [aux_sym__argument_name_token2] = ACTIONS(1204), + [anon_sym_POUND_LBRACK] = ACTIONS(1202), + [aux_sym_encapsed_string_token1] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [aux_sym_string_token1] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_LT_LT_LT] = ACTIONS(1202), + [anon_sym_BQUOTE] = ACTIONS(1202), + [anon_sym_DOLLAR] = ACTIONS(1202), + [aux_sym_yield_expression_token1] = ACTIONS(1204), + [aux_sym_include_expression_token1] = ACTIONS(1204), + [aux_sym_include_once_expression_token1] = ACTIONS(1204), + [aux_sym_require_expression_token1] = ACTIONS(1204), + [aux_sym_require_once_expression_token1] = ACTIONS(1204), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1202), + [sym__automatic_semicolon] = ACTIONS(1206), }, - [466] = { - [sym_text_interpolation] = STATE(466), + [458] = { + [sym_text_interpolation] = STATE(458), [ts_builtin_sym_end] = ACTIONS(1208), [sym_name] = ACTIONS(1210), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1212), [aux_sym_function_static_declaration_token1] = ACTIONS(1210), [aux_sym_global_declaration_token1] = ACTIONS(1210), [aux_sym_namespace_definition_token1] = ACTIONS(1210), @@ -68985,458 +68513,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1210), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(1208), + [sym__automatic_semicolon] = ACTIONS(1212), }, - [467] = { - [sym_text_interpolation] = STATE(467), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1212), - }, - [468] = { - [sym_text_interpolation] = STATE(468), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1216), + [459] = { + [sym_text_interpolation] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_name] = ACTIONS(1216), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1214), + [aux_sym_function_static_declaration_token1] = ACTIONS(1216), + [aux_sym_global_declaration_token1] = ACTIONS(1216), + [aux_sym_namespace_definition_token1] = ACTIONS(1216), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1216), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1216), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1216), + [anon_sym_BSLASH] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [aux_sym_trait_declaration_token1] = ACTIONS(1216), + [aux_sym_interface_declaration_token1] = ACTIONS(1216), + [aux_sym_enum_declaration_token1] = ACTIONS(1216), + [aux_sym_enum_case_token1] = ACTIONS(1216), + [aux_sym_class_declaration_token1] = ACTIONS(1216), + [aux_sym_final_modifier_token1] = ACTIONS(1216), + [aux_sym_abstract_modifier_token1] = ACTIONS(1216), + [aux_sym_readonly_modifier_token1] = ACTIONS(1216), + [sym_var_modifier] = ACTIONS(1216), + [aux_sym_visibility_modifier_token1] = ACTIONS(1216), + [aux_sym_visibility_modifier_token2] = ACTIONS(1216), + [aux_sym_visibility_modifier_token3] = ACTIONS(1216), + [aux_sym__arrow_function_header_token1] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1214), + [aux_sym_cast_type_token1] = ACTIONS(1216), + [aux_sym_echo_statement_token1] = ACTIONS(1216), + [aux_sym_exit_statement_token1] = ACTIONS(1216), + [anon_sym_unset] = ACTIONS(1216), + [aux_sym_declare_statement_token1] = ACTIONS(1216), + [aux_sym_declare_statement_token2] = ACTIONS(1216), + [sym_float] = ACTIONS(1216), + [aux_sym_try_statement_token1] = ACTIONS(1216), + [aux_sym_goto_statement_token1] = ACTIONS(1216), + [aux_sym_continue_statement_token1] = ACTIONS(1216), + [aux_sym_break_statement_token1] = ACTIONS(1216), + [sym_integer] = ACTIONS(1216), + [aux_sym_return_statement_token1] = ACTIONS(1216), + [aux_sym_throw_expression_token1] = ACTIONS(1216), + [aux_sym_while_statement_token1] = ACTIONS(1216), + [aux_sym_while_statement_token2] = ACTIONS(1216), + [aux_sym_do_statement_token1] = ACTIONS(1216), + [aux_sym_for_statement_token1] = ACTIONS(1216), + [aux_sym_for_statement_token2] = ACTIONS(1216), + [aux_sym_foreach_statement_token1] = ACTIONS(1216), + [aux_sym_foreach_statement_token2] = ACTIONS(1216), + [aux_sym_if_statement_token1] = ACTIONS(1216), + [aux_sym_if_statement_token2] = ACTIONS(1216), + [aux_sym_else_if_clause_token1] = ACTIONS(1216), + [aux_sym_else_clause_token1] = ACTIONS(1216), + [aux_sym_match_expression_token1] = ACTIONS(1216), + [aux_sym_match_default_expression_token1] = ACTIONS(1216), + [aux_sym_switch_statement_token1] = ACTIONS(1216), + [aux_sym_switch_block_token1] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_AT] = ACTIONS(1214), + [aux_sym_clone_expression_token1] = ACTIONS(1216), + [aux_sym_print_intrinsic_token1] = ACTIONS(1216), + [aux_sym_object_creation_expression_token1] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [aux_sym__list_destructing_token1] = ACTIONS(1216), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_self] = ACTIONS(1216), + [anon_sym_parent] = ACTIONS(1216), + [aux_sym__argument_name_token1] = ACTIONS(1216), + [aux_sym__argument_name_token2] = ACTIONS(1216), + [anon_sym_POUND_LBRACK] = ACTIONS(1214), + [aux_sym_encapsed_string_token1] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [aux_sym_string_token1] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_LT_LT_LT] = ACTIONS(1214), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(1214), + [aux_sym_yield_expression_token1] = ACTIONS(1216), + [aux_sym_include_expression_token1] = ACTIONS(1216), + [aux_sym_include_once_expression_token1] = ACTIONS(1216), + [aux_sym_require_expression_token1] = ACTIONS(1216), + [aux_sym_require_once_expression_token1] = ACTIONS(1216), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1214), }, - [469] = { - [sym_text_interpolation] = STATE(469), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1220), + [460] = { + [sym_text_interpolation] = STATE(460), + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_name] = ACTIONS(1220), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1218), + [aux_sym_function_static_declaration_token1] = ACTIONS(1220), + [aux_sym_global_declaration_token1] = ACTIONS(1220), + [aux_sym_namespace_definition_token1] = ACTIONS(1220), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1220), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1220), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1220), + [anon_sym_BSLASH] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [aux_sym_trait_declaration_token1] = ACTIONS(1220), + [aux_sym_interface_declaration_token1] = ACTIONS(1220), + [aux_sym_enum_declaration_token1] = ACTIONS(1220), + [aux_sym_enum_case_token1] = ACTIONS(1220), + [aux_sym_class_declaration_token1] = ACTIONS(1220), + [aux_sym_final_modifier_token1] = ACTIONS(1220), + [aux_sym_abstract_modifier_token1] = ACTIONS(1220), + [aux_sym_readonly_modifier_token1] = ACTIONS(1220), + [sym_var_modifier] = ACTIONS(1220), + [aux_sym_visibility_modifier_token1] = ACTIONS(1220), + [aux_sym_visibility_modifier_token2] = ACTIONS(1220), + [aux_sym_visibility_modifier_token3] = ACTIONS(1220), + [aux_sym__arrow_function_header_token1] = ACTIONS(1220), + [anon_sym_LPAREN] = ACTIONS(1218), + [aux_sym_cast_type_token1] = ACTIONS(1220), + [aux_sym_echo_statement_token1] = ACTIONS(1220), + [aux_sym_exit_statement_token1] = ACTIONS(1220), + [anon_sym_unset] = ACTIONS(1220), + [aux_sym_declare_statement_token1] = ACTIONS(1220), + [aux_sym_declare_statement_token2] = ACTIONS(1220), + [sym_float] = ACTIONS(1220), + [aux_sym_try_statement_token1] = ACTIONS(1220), + [aux_sym_goto_statement_token1] = ACTIONS(1220), + [aux_sym_continue_statement_token1] = ACTIONS(1220), + [aux_sym_break_statement_token1] = ACTIONS(1220), + [sym_integer] = ACTIONS(1220), + [aux_sym_return_statement_token1] = ACTIONS(1220), + [aux_sym_throw_expression_token1] = ACTIONS(1220), + [aux_sym_while_statement_token1] = ACTIONS(1220), + [aux_sym_while_statement_token2] = ACTIONS(1220), + [aux_sym_do_statement_token1] = ACTIONS(1220), + [aux_sym_for_statement_token1] = ACTIONS(1220), + [aux_sym_for_statement_token2] = ACTIONS(1220), + [aux_sym_foreach_statement_token1] = ACTIONS(1220), + [aux_sym_foreach_statement_token2] = ACTIONS(1220), + [aux_sym_if_statement_token1] = ACTIONS(1220), + [aux_sym_if_statement_token2] = ACTIONS(1220), + [aux_sym_else_if_clause_token1] = ACTIONS(1220), + [aux_sym_else_clause_token1] = ACTIONS(1220), + [aux_sym_match_expression_token1] = ACTIONS(1220), + [aux_sym_match_default_expression_token1] = ACTIONS(1220), + [aux_sym_switch_statement_token1] = ACTIONS(1220), + [aux_sym_switch_block_token1] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1218), + [aux_sym_clone_expression_token1] = ACTIONS(1220), + [aux_sym_print_intrinsic_token1] = ACTIONS(1220), + [aux_sym_object_creation_expression_token1] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [aux_sym__list_destructing_token1] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_self] = ACTIONS(1220), + [anon_sym_parent] = ACTIONS(1220), + [aux_sym__argument_name_token1] = ACTIONS(1220), + [aux_sym__argument_name_token2] = ACTIONS(1220), + [anon_sym_POUND_LBRACK] = ACTIONS(1218), + [aux_sym_encapsed_string_token1] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [aux_sym_string_token1] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_LT_LT_LT] = ACTIONS(1218), + [anon_sym_BQUOTE] = ACTIONS(1218), + [anon_sym_DOLLAR] = ACTIONS(1218), + [aux_sym_yield_expression_token1] = ACTIONS(1220), + [aux_sym_include_expression_token1] = ACTIONS(1220), + [aux_sym_include_once_expression_token1] = ACTIONS(1220), + [aux_sym_require_expression_token1] = ACTIONS(1220), + [aux_sym_require_once_expression_token1] = ACTIONS(1220), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1218), }, - [470] = { - [sym_text_interpolation] = STATE(470), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1224), + [461] = { + [sym_text_interpolation] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_name] = ACTIONS(1224), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1222), + [aux_sym_function_static_declaration_token1] = ACTIONS(1224), + [aux_sym_global_declaration_token1] = ACTIONS(1224), + [aux_sym_namespace_definition_token1] = ACTIONS(1224), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1224), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1224), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1224), + [anon_sym_BSLASH] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [aux_sym_trait_declaration_token1] = ACTIONS(1224), + [aux_sym_interface_declaration_token1] = ACTIONS(1224), + [aux_sym_enum_declaration_token1] = ACTIONS(1224), + [aux_sym_enum_case_token1] = ACTIONS(1224), + [aux_sym_class_declaration_token1] = ACTIONS(1224), + [aux_sym_final_modifier_token1] = ACTIONS(1224), + [aux_sym_abstract_modifier_token1] = ACTIONS(1224), + [aux_sym_readonly_modifier_token1] = ACTIONS(1224), + [sym_var_modifier] = ACTIONS(1224), + [aux_sym_visibility_modifier_token1] = ACTIONS(1224), + [aux_sym_visibility_modifier_token2] = ACTIONS(1224), + [aux_sym_visibility_modifier_token3] = ACTIONS(1224), + [aux_sym__arrow_function_header_token1] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1222), + [aux_sym_cast_type_token1] = ACTIONS(1224), + [aux_sym_echo_statement_token1] = ACTIONS(1224), + [aux_sym_exit_statement_token1] = ACTIONS(1224), + [anon_sym_unset] = ACTIONS(1224), + [aux_sym_declare_statement_token1] = ACTIONS(1224), + [aux_sym_declare_statement_token2] = ACTIONS(1224), + [sym_float] = ACTIONS(1224), + [aux_sym_try_statement_token1] = ACTIONS(1224), + [aux_sym_goto_statement_token1] = ACTIONS(1224), + [aux_sym_continue_statement_token1] = ACTIONS(1224), + [aux_sym_break_statement_token1] = ACTIONS(1224), + [sym_integer] = ACTIONS(1224), + [aux_sym_return_statement_token1] = ACTIONS(1224), + [aux_sym_throw_expression_token1] = ACTIONS(1224), + [aux_sym_while_statement_token1] = ACTIONS(1224), + [aux_sym_while_statement_token2] = ACTIONS(1224), + [aux_sym_do_statement_token1] = ACTIONS(1224), + [aux_sym_for_statement_token1] = ACTIONS(1224), + [aux_sym_for_statement_token2] = ACTIONS(1224), + [aux_sym_foreach_statement_token1] = ACTIONS(1224), + [aux_sym_foreach_statement_token2] = ACTIONS(1224), + [aux_sym_if_statement_token1] = ACTIONS(1224), + [aux_sym_if_statement_token2] = ACTIONS(1224), + [aux_sym_else_if_clause_token1] = ACTIONS(1224), + [aux_sym_else_clause_token1] = ACTIONS(1224), + [aux_sym_match_expression_token1] = ACTIONS(1224), + [aux_sym_match_default_expression_token1] = ACTIONS(1224), + [aux_sym_switch_statement_token1] = ACTIONS(1224), + [aux_sym_switch_block_token1] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_AT] = ACTIONS(1222), + [aux_sym_clone_expression_token1] = ACTIONS(1224), + [aux_sym_print_intrinsic_token1] = ACTIONS(1224), + [aux_sym_object_creation_expression_token1] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [aux_sym__list_destructing_token1] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_self] = ACTIONS(1224), + [anon_sym_parent] = ACTIONS(1224), + [aux_sym__argument_name_token1] = ACTIONS(1224), + [aux_sym__argument_name_token2] = ACTIONS(1224), + [anon_sym_POUND_LBRACK] = ACTIONS(1222), + [aux_sym_encapsed_string_token1] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [aux_sym_string_token1] = ACTIONS(1222), + [anon_sym_SQUOTE] = ACTIONS(1222), + [anon_sym_LT_LT_LT] = ACTIONS(1222), + [anon_sym_BQUOTE] = ACTIONS(1222), + [anon_sym_DOLLAR] = ACTIONS(1222), + [aux_sym_yield_expression_token1] = ACTIONS(1224), + [aux_sym_include_expression_token1] = ACTIONS(1224), + [aux_sym_include_once_expression_token1] = ACTIONS(1224), + [aux_sym_require_expression_token1] = ACTIONS(1224), + [aux_sym_require_once_expression_token1] = ACTIONS(1224), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1222), }, - [471] = { - [sym_text_interpolation] = STATE(471), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1228), + [462] = { + [sym_text_interpolation] = STATE(462), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_name] = ACTIONS(1228), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1230), + [aux_sym_function_static_declaration_token1] = ACTIONS(1228), + [aux_sym_global_declaration_token1] = ACTIONS(1228), + [aux_sym_namespace_definition_token1] = ACTIONS(1228), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1228), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1228), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1228), + [anon_sym_BSLASH] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [aux_sym_trait_declaration_token1] = ACTIONS(1228), + [aux_sym_interface_declaration_token1] = ACTIONS(1228), + [aux_sym_enum_declaration_token1] = ACTIONS(1228), + [aux_sym_enum_case_token1] = ACTIONS(1228), + [aux_sym_class_declaration_token1] = ACTIONS(1228), + [aux_sym_final_modifier_token1] = ACTIONS(1228), + [aux_sym_abstract_modifier_token1] = ACTIONS(1228), + [aux_sym_readonly_modifier_token1] = ACTIONS(1228), + [aux_sym_visibility_modifier_token1] = ACTIONS(1228), + [aux_sym_visibility_modifier_token2] = ACTIONS(1228), + [aux_sym_visibility_modifier_token3] = ACTIONS(1228), + [aux_sym__arrow_function_header_token1] = ACTIONS(1228), + [anon_sym_LPAREN] = ACTIONS(1226), + [aux_sym_cast_type_token1] = ACTIONS(1228), + [aux_sym_echo_statement_token1] = ACTIONS(1228), + [aux_sym_exit_statement_token1] = ACTIONS(1228), + [anon_sym_unset] = ACTIONS(1228), + [aux_sym_declare_statement_token1] = ACTIONS(1228), + [aux_sym_declare_statement_token2] = ACTIONS(1228), + [sym_float] = ACTIONS(1228), + [aux_sym_try_statement_token1] = ACTIONS(1228), + [aux_sym_goto_statement_token1] = ACTIONS(1228), + [aux_sym_continue_statement_token1] = ACTIONS(1228), + [aux_sym_break_statement_token1] = ACTIONS(1228), + [sym_integer] = ACTIONS(1228), + [aux_sym_return_statement_token1] = ACTIONS(1228), + [aux_sym_throw_expression_token1] = ACTIONS(1228), + [aux_sym_while_statement_token1] = ACTIONS(1228), + [aux_sym_while_statement_token2] = ACTIONS(1228), + [aux_sym_do_statement_token1] = ACTIONS(1228), + [aux_sym_for_statement_token1] = ACTIONS(1228), + [aux_sym_for_statement_token2] = ACTIONS(1228), + [aux_sym_foreach_statement_token1] = ACTIONS(1228), + [aux_sym_foreach_statement_token2] = ACTIONS(1228), + [aux_sym_if_statement_token1] = ACTIONS(1228), + [aux_sym_if_statement_token2] = ACTIONS(1228), + [aux_sym_else_if_clause_token1] = ACTIONS(1228), + [aux_sym_else_clause_token1] = ACTIONS(1228), + [aux_sym_match_expression_token1] = ACTIONS(1228), + [aux_sym_match_default_expression_token1] = ACTIONS(1228), + [aux_sym_switch_statement_token1] = ACTIONS(1228), + [aux_sym_switch_block_token1] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(1226), + [aux_sym_clone_expression_token1] = ACTIONS(1228), + [aux_sym_print_intrinsic_token1] = ACTIONS(1228), + [aux_sym_object_creation_expression_token1] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [aux_sym__list_destructing_token1] = ACTIONS(1228), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_self] = ACTIONS(1228), + [anon_sym_parent] = ACTIONS(1228), + [aux_sym__argument_name_token1] = ACTIONS(1228), + [aux_sym__argument_name_token2] = ACTIONS(1228), + [anon_sym_POUND_LBRACK] = ACTIONS(1226), + [aux_sym_encapsed_string_token1] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [aux_sym_string_token1] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_LT_LT_LT] = ACTIONS(1226), + [anon_sym_BQUOTE] = ACTIONS(1226), + [anon_sym_DOLLAR] = ACTIONS(1226), + [aux_sym_yield_expression_token1] = ACTIONS(1228), + [aux_sym_include_expression_token1] = ACTIONS(1228), + [aux_sym_include_once_expression_token1] = ACTIONS(1228), + [aux_sym_require_expression_token1] = ACTIONS(1228), + [aux_sym_require_once_expression_token1] = ACTIONS(1228), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1226), + [sym__automatic_semicolon] = ACTIONS(1230), }, - [472] = { - [sym_text_interpolation] = STATE(472), + [463] = { + [sym_text_interpolation] = STATE(463), [ts_builtin_sym_end] = ACTIONS(1232), [sym_name] = ACTIONS(1234), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1236), [aux_sym_function_static_declaration_token1] = ACTIONS(1234), [aux_sym_global_declaration_token1] = ACTIONS(1234), [aux_sym_namespace_definition_token1] = ACTIONS(1234), @@ -69519,8691 +68963,9849 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_require_once_expression_token1] = ACTIONS(1234), [sym_comment] = ACTIONS(5), [sym_grit_metavariable] = ACTIONS(1232), + [sym__automatic_semicolon] = ACTIONS(1236), + }, + [464] = { + [sym_text_interpolation] = STATE(464), + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_name] = ACTIONS(1240), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1238), + [aux_sym_function_static_declaration_token1] = ACTIONS(1240), + [aux_sym_global_declaration_token1] = ACTIONS(1240), + [aux_sym_namespace_definition_token1] = ACTIONS(1240), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1240), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1240), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1240), + [anon_sym_BSLASH] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [aux_sym_trait_declaration_token1] = ACTIONS(1240), + [aux_sym_interface_declaration_token1] = ACTIONS(1240), + [aux_sym_enum_declaration_token1] = ACTIONS(1240), + [aux_sym_enum_case_token1] = ACTIONS(1240), + [aux_sym_class_declaration_token1] = ACTIONS(1240), + [aux_sym_final_modifier_token1] = ACTIONS(1240), + [aux_sym_abstract_modifier_token1] = ACTIONS(1240), + [aux_sym_readonly_modifier_token1] = ACTIONS(1240), + [sym_var_modifier] = ACTIONS(1240), + [aux_sym_visibility_modifier_token1] = ACTIONS(1240), + [aux_sym_visibility_modifier_token2] = ACTIONS(1240), + [aux_sym_visibility_modifier_token3] = ACTIONS(1240), + [aux_sym__arrow_function_header_token1] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1238), + [aux_sym_cast_type_token1] = ACTIONS(1240), + [aux_sym_echo_statement_token1] = ACTIONS(1240), + [aux_sym_exit_statement_token1] = ACTIONS(1240), + [anon_sym_unset] = ACTIONS(1240), + [aux_sym_declare_statement_token1] = ACTIONS(1240), + [aux_sym_declare_statement_token2] = ACTIONS(1240), + [sym_float] = ACTIONS(1240), + [aux_sym_try_statement_token1] = ACTIONS(1240), + [aux_sym_goto_statement_token1] = ACTIONS(1240), + [aux_sym_continue_statement_token1] = ACTIONS(1240), + [aux_sym_break_statement_token1] = ACTIONS(1240), + [sym_integer] = ACTIONS(1240), + [aux_sym_return_statement_token1] = ACTIONS(1240), + [aux_sym_throw_expression_token1] = ACTIONS(1240), + [aux_sym_while_statement_token1] = ACTIONS(1240), + [aux_sym_while_statement_token2] = ACTIONS(1240), + [aux_sym_do_statement_token1] = ACTIONS(1240), + [aux_sym_for_statement_token1] = ACTIONS(1240), + [aux_sym_for_statement_token2] = ACTIONS(1240), + [aux_sym_foreach_statement_token1] = ACTIONS(1240), + [aux_sym_foreach_statement_token2] = ACTIONS(1240), + [aux_sym_if_statement_token1] = ACTIONS(1240), + [aux_sym_if_statement_token2] = ACTIONS(1240), + [aux_sym_else_if_clause_token1] = ACTIONS(1240), + [aux_sym_else_clause_token1] = ACTIONS(1240), + [aux_sym_match_expression_token1] = ACTIONS(1240), + [aux_sym_match_default_expression_token1] = ACTIONS(1240), + [aux_sym_switch_statement_token1] = ACTIONS(1240), + [aux_sym_switch_block_token1] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(1238), + [aux_sym_clone_expression_token1] = ACTIONS(1240), + [aux_sym_print_intrinsic_token1] = ACTIONS(1240), + [aux_sym_object_creation_expression_token1] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [aux_sym__list_destructing_token1] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_self] = ACTIONS(1240), + [anon_sym_parent] = ACTIONS(1240), + [aux_sym__argument_name_token1] = ACTIONS(1240), + [aux_sym__argument_name_token2] = ACTIONS(1240), + [anon_sym_POUND_LBRACK] = ACTIONS(1238), + [aux_sym_encapsed_string_token1] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [aux_sym_string_token1] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_LT_LT_LT] = ACTIONS(1238), + [anon_sym_BQUOTE] = ACTIONS(1238), + [anon_sym_DOLLAR] = ACTIONS(1238), + [aux_sym_yield_expression_token1] = ACTIONS(1240), + [aux_sym_include_expression_token1] = ACTIONS(1240), + [aux_sym_include_once_expression_token1] = ACTIONS(1240), + [aux_sym_require_expression_token1] = ACTIONS(1240), + [aux_sym_require_once_expression_token1] = ACTIONS(1240), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1238), + }, + [465] = { + [sym_text_interpolation] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_name] = ACTIONS(1244), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1242), + [aux_sym_function_static_declaration_token1] = ACTIONS(1244), + [aux_sym_global_declaration_token1] = ACTIONS(1244), + [aux_sym_namespace_definition_token1] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [aux_sym_trait_declaration_token1] = ACTIONS(1244), + [aux_sym_interface_declaration_token1] = ACTIONS(1244), + [aux_sym_enum_declaration_token1] = ACTIONS(1244), + [aux_sym_enum_case_token1] = ACTIONS(1244), + [aux_sym_class_declaration_token1] = ACTIONS(1244), + [aux_sym_final_modifier_token1] = ACTIONS(1244), + [aux_sym_abstract_modifier_token1] = ACTIONS(1244), + [aux_sym_readonly_modifier_token1] = ACTIONS(1244), + [aux_sym_visibility_modifier_token1] = ACTIONS(1244), + [aux_sym_visibility_modifier_token2] = ACTIONS(1244), + [aux_sym_visibility_modifier_token3] = ACTIONS(1244), + [aux_sym__arrow_function_header_token1] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1242), + [aux_sym_cast_type_token1] = ACTIONS(1244), + [aux_sym_echo_statement_token1] = ACTIONS(1244), + [aux_sym_exit_statement_token1] = ACTIONS(1244), + [anon_sym_unset] = ACTIONS(1244), + [aux_sym_declare_statement_token1] = ACTIONS(1244), + [aux_sym_declare_statement_token2] = ACTIONS(1244), + [sym_float] = ACTIONS(1244), + [aux_sym_try_statement_token1] = ACTIONS(1244), + [aux_sym_goto_statement_token1] = ACTIONS(1244), + [aux_sym_continue_statement_token1] = ACTIONS(1244), + [aux_sym_break_statement_token1] = ACTIONS(1244), + [sym_integer] = ACTIONS(1244), + [aux_sym_return_statement_token1] = ACTIONS(1244), + [aux_sym_throw_expression_token1] = ACTIONS(1244), + [aux_sym_while_statement_token1] = ACTIONS(1244), + [aux_sym_while_statement_token2] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(1244), + [aux_sym_for_statement_token1] = ACTIONS(1244), + [aux_sym_for_statement_token2] = ACTIONS(1244), + [aux_sym_foreach_statement_token1] = ACTIONS(1244), + [aux_sym_foreach_statement_token2] = ACTIONS(1244), + [aux_sym_if_statement_token1] = ACTIONS(1244), + [aux_sym_if_statement_token2] = ACTIONS(1244), + [aux_sym_else_if_clause_token1] = ACTIONS(1244), + [aux_sym_else_clause_token1] = ACTIONS(1244), + [aux_sym_match_expression_token1] = ACTIONS(1244), + [aux_sym_match_default_expression_token1] = ACTIONS(1244), + [aux_sym_switch_statement_token1] = ACTIONS(1244), + [aux_sym_switch_block_token1] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_AT] = ACTIONS(1242), + [aux_sym_clone_expression_token1] = ACTIONS(1244), + [aux_sym_print_intrinsic_token1] = ACTIONS(1244), + [aux_sym_object_creation_expression_token1] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [aux_sym__list_destructing_token1] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_self] = ACTIONS(1244), + [anon_sym_parent] = ACTIONS(1244), + [aux_sym__argument_name_token1] = ACTIONS(1244), + [aux_sym__argument_name_token2] = ACTIONS(1244), + [anon_sym_POUND_LBRACK] = ACTIONS(1242), + [aux_sym_encapsed_string_token1] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [aux_sym_string_token1] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_LT_LT_LT] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [anon_sym_DOLLAR] = ACTIONS(1242), + [aux_sym_yield_expression_token1] = ACTIONS(1244), + [aux_sym_include_expression_token1] = ACTIONS(1244), + [aux_sym_include_once_expression_token1] = ACTIONS(1244), + [aux_sym_require_expression_token1] = ACTIONS(1244), + [aux_sym_require_once_expression_token1] = ACTIONS(1244), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1242), + }, + [466] = { + [sym_text_interpolation] = STATE(466), + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_name] = ACTIONS(1248), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1246), + [aux_sym_function_static_declaration_token1] = ACTIONS(1248), + [aux_sym_global_declaration_token1] = ACTIONS(1248), + [aux_sym_namespace_definition_token1] = ACTIONS(1248), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1248), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1248), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1248), + [anon_sym_BSLASH] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [aux_sym_trait_declaration_token1] = ACTIONS(1248), + [aux_sym_interface_declaration_token1] = ACTIONS(1248), + [aux_sym_enum_declaration_token1] = ACTIONS(1248), + [aux_sym_enum_case_token1] = ACTIONS(1248), + [aux_sym_class_declaration_token1] = ACTIONS(1248), + [aux_sym_final_modifier_token1] = ACTIONS(1248), + [aux_sym_abstract_modifier_token1] = ACTIONS(1248), + [aux_sym_readonly_modifier_token1] = ACTIONS(1248), + [aux_sym_visibility_modifier_token1] = ACTIONS(1248), + [aux_sym_visibility_modifier_token2] = ACTIONS(1248), + [aux_sym_visibility_modifier_token3] = ACTIONS(1248), + [aux_sym__arrow_function_header_token1] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1246), + [aux_sym_cast_type_token1] = ACTIONS(1248), + [aux_sym_echo_statement_token1] = ACTIONS(1248), + [aux_sym_exit_statement_token1] = ACTIONS(1248), + [anon_sym_unset] = ACTIONS(1248), + [aux_sym_declare_statement_token1] = ACTIONS(1248), + [aux_sym_declare_statement_token2] = ACTIONS(1248), + [sym_float] = ACTIONS(1248), + [aux_sym_try_statement_token1] = ACTIONS(1248), + [aux_sym_goto_statement_token1] = ACTIONS(1248), + [aux_sym_continue_statement_token1] = ACTIONS(1248), + [aux_sym_break_statement_token1] = ACTIONS(1248), + [sym_integer] = ACTIONS(1248), + [aux_sym_return_statement_token1] = ACTIONS(1248), + [aux_sym_throw_expression_token1] = ACTIONS(1248), + [aux_sym_while_statement_token1] = ACTIONS(1248), + [aux_sym_while_statement_token2] = ACTIONS(1248), + [aux_sym_do_statement_token1] = ACTIONS(1248), + [aux_sym_for_statement_token1] = ACTIONS(1248), + [aux_sym_for_statement_token2] = ACTIONS(1248), + [aux_sym_foreach_statement_token1] = ACTIONS(1248), + [aux_sym_foreach_statement_token2] = ACTIONS(1248), + [aux_sym_if_statement_token1] = ACTIONS(1248), + [aux_sym_if_statement_token2] = ACTIONS(1248), + [aux_sym_else_if_clause_token1] = ACTIONS(1248), + [aux_sym_else_clause_token1] = ACTIONS(1248), + [aux_sym_match_expression_token1] = ACTIONS(1248), + [aux_sym_match_default_expression_token1] = ACTIONS(1248), + [aux_sym_switch_statement_token1] = ACTIONS(1248), + [aux_sym_switch_block_token1] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_AT] = ACTIONS(1246), + [aux_sym_clone_expression_token1] = ACTIONS(1248), + [aux_sym_print_intrinsic_token1] = ACTIONS(1248), + [aux_sym_object_creation_expression_token1] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [aux_sym__list_destructing_token1] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_self] = ACTIONS(1248), + [anon_sym_parent] = ACTIONS(1248), + [aux_sym__argument_name_token1] = ACTIONS(1248), + [aux_sym__argument_name_token2] = ACTIONS(1248), + [anon_sym_POUND_LBRACK] = ACTIONS(1246), + [aux_sym_encapsed_string_token1] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [aux_sym_string_token1] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_LT_LT_LT] = ACTIONS(1246), + [anon_sym_BQUOTE] = ACTIONS(1246), + [anon_sym_DOLLAR] = ACTIONS(1246), + [aux_sym_yield_expression_token1] = ACTIONS(1248), + [aux_sym_include_expression_token1] = ACTIONS(1248), + [aux_sym_include_once_expression_token1] = ACTIONS(1248), + [aux_sym_require_expression_token1] = ACTIONS(1248), + [aux_sym_require_once_expression_token1] = ACTIONS(1248), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1246), + }, + [467] = { + [sym_text_interpolation] = STATE(467), + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_name] = ACTIONS(1252), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1250), + [aux_sym_function_static_declaration_token1] = ACTIONS(1252), + [aux_sym_global_declaration_token1] = ACTIONS(1252), + [aux_sym_namespace_definition_token1] = ACTIONS(1252), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1252), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1252), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1252), + [anon_sym_BSLASH] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [aux_sym_trait_declaration_token1] = ACTIONS(1252), + [aux_sym_interface_declaration_token1] = ACTIONS(1252), + [aux_sym_enum_declaration_token1] = ACTIONS(1252), + [aux_sym_enum_case_token1] = ACTIONS(1252), + [aux_sym_class_declaration_token1] = ACTIONS(1252), + [aux_sym_final_modifier_token1] = ACTIONS(1252), + [aux_sym_abstract_modifier_token1] = ACTIONS(1252), + [aux_sym_readonly_modifier_token1] = ACTIONS(1252), + [aux_sym_visibility_modifier_token1] = ACTIONS(1252), + [aux_sym_visibility_modifier_token2] = ACTIONS(1252), + [aux_sym_visibility_modifier_token3] = ACTIONS(1252), + [aux_sym__arrow_function_header_token1] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1250), + [aux_sym_cast_type_token1] = ACTIONS(1252), + [aux_sym_echo_statement_token1] = ACTIONS(1252), + [aux_sym_exit_statement_token1] = ACTIONS(1252), + [anon_sym_unset] = ACTIONS(1252), + [aux_sym_declare_statement_token1] = ACTIONS(1252), + [aux_sym_declare_statement_token2] = ACTIONS(1252), + [sym_float] = ACTIONS(1252), + [aux_sym_try_statement_token1] = ACTIONS(1252), + [aux_sym_goto_statement_token1] = ACTIONS(1252), + [aux_sym_continue_statement_token1] = ACTIONS(1252), + [aux_sym_break_statement_token1] = ACTIONS(1252), + [sym_integer] = ACTIONS(1252), + [aux_sym_return_statement_token1] = ACTIONS(1252), + [aux_sym_throw_expression_token1] = ACTIONS(1252), + [aux_sym_while_statement_token1] = ACTIONS(1252), + [aux_sym_while_statement_token2] = ACTIONS(1252), + [aux_sym_do_statement_token1] = ACTIONS(1252), + [aux_sym_for_statement_token1] = ACTIONS(1252), + [aux_sym_for_statement_token2] = ACTIONS(1252), + [aux_sym_foreach_statement_token1] = ACTIONS(1252), + [aux_sym_foreach_statement_token2] = ACTIONS(1252), + [aux_sym_if_statement_token1] = ACTIONS(1252), + [aux_sym_if_statement_token2] = ACTIONS(1252), + [aux_sym_else_if_clause_token1] = ACTIONS(1252), + [aux_sym_else_clause_token1] = ACTIONS(1252), + [aux_sym_match_expression_token1] = ACTIONS(1252), + [aux_sym_match_default_expression_token1] = ACTIONS(1252), + [aux_sym_switch_statement_token1] = ACTIONS(1252), + [aux_sym_switch_block_token1] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_AT] = ACTIONS(1250), + [aux_sym_clone_expression_token1] = ACTIONS(1252), + [aux_sym_print_intrinsic_token1] = ACTIONS(1252), + [aux_sym_object_creation_expression_token1] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [aux_sym__list_destructing_token1] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_self] = ACTIONS(1252), + [anon_sym_parent] = ACTIONS(1252), + [aux_sym__argument_name_token1] = ACTIONS(1252), + [aux_sym__argument_name_token2] = ACTIONS(1252), + [anon_sym_POUND_LBRACK] = ACTIONS(1250), + [aux_sym_encapsed_string_token1] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [aux_sym_string_token1] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_LT_LT_LT] = ACTIONS(1250), + [anon_sym_BQUOTE] = ACTIONS(1250), + [anon_sym_DOLLAR] = ACTIONS(1250), + [aux_sym_yield_expression_token1] = ACTIONS(1252), + [aux_sym_include_expression_token1] = ACTIONS(1252), + [aux_sym_include_once_expression_token1] = ACTIONS(1252), + [aux_sym_require_expression_token1] = ACTIONS(1252), + [aux_sym_require_once_expression_token1] = ACTIONS(1252), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1250), + }, + [468] = { + [sym_text_interpolation] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_name] = ACTIONS(1256), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1254), + [aux_sym_function_static_declaration_token1] = ACTIONS(1256), + [aux_sym_global_declaration_token1] = ACTIONS(1256), + [aux_sym_namespace_definition_token1] = ACTIONS(1256), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1256), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1256), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1256), + [anon_sym_BSLASH] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [aux_sym_trait_declaration_token1] = ACTIONS(1256), + [aux_sym_interface_declaration_token1] = ACTIONS(1256), + [aux_sym_enum_declaration_token1] = ACTIONS(1256), + [aux_sym_enum_case_token1] = ACTIONS(1256), + [aux_sym_class_declaration_token1] = ACTIONS(1256), + [aux_sym_final_modifier_token1] = ACTIONS(1256), + [aux_sym_abstract_modifier_token1] = ACTIONS(1256), + [aux_sym_readonly_modifier_token1] = ACTIONS(1256), + [aux_sym_visibility_modifier_token1] = ACTIONS(1256), + [aux_sym_visibility_modifier_token2] = ACTIONS(1256), + [aux_sym_visibility_modifier_token3] = ACTIONS(1256), + [aux_sym__arrow_function_header_token1] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1254), + [aux_sym_cast_type_token1] = ACTIONS(1256), + [aux_sym_echo_statement_token1] = ACTIONS(1256), + [aux_sym_exit_statement_token1] = ACTIONS(1256), + [anon_sym_unset] = ACTIONS(1256), + [aux_sym_declare_statement_token1] = ACTIONS(1256), + [aux_sym_declare_statement_token2] = ACTIONS(1256), + [sym_float] = ACTIONS(1256), + [aux_sym_try_statement_token1] = ACTIONS(1256), + [aux_sym_goto_statement_token1] = ACTIONS(1256), + [aux_sym_continue_statement_token1] = ACTIONS(1256), + [aux_sym_break_statement_token1] = ACTIONS(1256), + [sym_integer] = ACTIONS(1256), + [aux_sym_return_statement_token1] = ACTIONS(1256), + [aux_sym_throw_expression_token1] = ACTIONS(1256), + [aux_sym_while_statement_token1] = ACTIONS(1256), + [aux_sym_while_statement_token2] = ACTIONS(1256), + [aux_sym_do_statement_token1] = ACTIONS(1256), + [aux_sym_for_statement_token1] = ACTIONS(1256), + [aux_sym_for_statement_token2] = ACTIONS(1256), + [aux_sym_foreach_statement_token1] = ACTIONS(1256), + [aux_sym_foreach_statement_token2] = ACTIONS(1256), + [aux_sym_if_statement_token1] = ACTIONS(1256), + [aux_sym_if_statement_token2] = ACTIONS(1256), + [aux_sym_else_if_clause_token1] = ACTIONS(1256), + [aux_sym_else_clause_token1] = ACTIONS(1256), + [aux_sym_match_expression_token1] = ACTIONS(1256), + [aux_sym_match_default_expression_token1] = ACTIONS(1256), + [aux_sym_switch_statement_token1] = ACTIONS(1256), + [aux_sym_switch_block_token1] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_AT] = ACTIONS(1254), + [aux_sym_clone_expression_token1] = ACTIONS(1256), + [aux_sym_print_intrinsic_token1] = ACTIONS(1256), + [aux_sym_object_creation_expression_token1] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [aux_sym__list_destructing_token1] = ACTIONS(1256), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_self] = ACTIONS(1256), + [anon_sym_parent] = ACTIONS(1256), + [aux_sym__argument_name_token1] = ACTIONS(1256), + [aux_sym__argument_name_token2] = ACTIONS(1256), + [anon_sym_POUND_LBRACK] = ACTIONS(1254), + [aux_sym_encapsed_string_token1] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [aux_sym_string_token1] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_LT_LT_LT] = ACTIONS(1254), + [anon_sym_BQUOTE] = ACTIONS(1254), + [anon_sym_DOLLAR] = ACTIONS(1254), + [aux_sym_yield_expression_token1] = ACTIONS(1256), + [aux_sym_include_expression_token1] = ACTIONS(1256), + [aux_sym_include_once_expression_token1] = ACTIONS(1256), + [aux_sym_require_expression_token1] = ACTIONS(1256), + [aux_sym_require_once_expression_token1] = ACTIONS(1256), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1254), + }, + [469] = { + [sym_text_interpolation] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_name] = ACTIONS(1260), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1258), + [aux_sym_function_static_declaration_token1] = ACTIONS(1260), + [aux_sym_global_declaration_token1] = ACTIONS(1260), + [aux_sym_namespace_definition_token1] = ACTIONS(1260), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1260), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1260), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1260), + [anon_sym_BSLASH] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [aux_sym_trait_declaration_token1] = ACTIONS(1260), + [aux_sym_interface_declaration_token1] = ACTIONS(1260), + [aux_sym_enum_declaration_token1] = ACTIONS(1260), + [aux_sym_enum_case_token1] = ACTIONS(1260), + [aux_sym_class_declaration_token1] = ACTIONS(1260), + [aux_sym_final_modifier_token1] = ACTIONS(1260), + [aux_sym_abstract_modifier_token1] = ACTIONS(1260), + [aux_sym_readonly_modifier_token1] = ACTIONS(1260), + [aux_sym_visibility_modifier_token1] = ACTIONS(1260), + [aux_sym_visibility_modifier_token2] = ACTIONS(1260), + [aux_sym_visibility_modifier_token3] = ACTIONS(1260), + [aux_sym__arrow_function_header_token1] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1258), + [aux_sym_cast_type_token1] = ACTIONS(1260), + [aux_sym_echo_statement_token1] = ACTIONS(1260), + [aux_sym_exit_statement_token1] = ACTIONS(1260), + [anon_sym_unset] = ACTIONS(1260), + [aux_sym_declare_statement_token1] = ACTIONS(1260), + [aux_sym_declare_statement_token2] = ACTIONS(1260), + [sym_float] = ACTIONS(1260), + [aux_sym_try_statement_token1] = ACTIONS(1260), + [aux_sym_goto_statement_token1] = ACTIONS(1260), + [aux_sym_continue_statement_token1] = ACTIONS(1260), + [aux_sym_break_statement_token1] = ACTIONS(1260), + [sym_integer] = ACTIONS(1260), + [aux_sym_return_statement_token1] = ACTIONS(1260), + [aux_sym_throw_expression_token1] = ACTIONS(1260), + [aux_sym_while_statement_token1] = ACTIONS(1260), + [aux_sym_while_statement_token2] = ACTIONS(1260), + [aux_sym_do_statement_token1] = ACTIONS(1260), + [aux_sym_for_statement_token1] = ACTIONS(1260), + [aux_sym_for_statement_token2] = ACTIONS(1260), + [aux_sym_foreach_statement_token1] = ACTIONS(1260), + [aux_sym_foreach_statement_token2] = ACTIONS(1260), + [aux_sym_if_statement_token1] = ACTIONS(1260), + [aux_sym_if_statement_token2] = ACTIONS(1260), + [aux_sym_else_if_clause_token1] = ACTIONS(1260), + [aux_sym_else_clause_token1] = ACTIONS(1260), + [aux_sym_match_expression_token1] = ACTIONS(1260), + [aux_sym_match_default_expression_token1] = ACTIONS(1260), + [aux_sym_switch_statement_token1] = ACTIONS(1260), + [aux_sym_switch_block_token1] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1258), + [aux_sym_clone_expression_token1] = ACTIONS(1260), + [aux_sym_print_intrinsic_token1] = ACTIONS(1260), + [aux_sym_object_creation_expression_token1] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [aux_sym__list_destructing_token1] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_self] = ACTIONS(1260), + [anon_sym_parent] = ACTIONS(1260), + [aux_sym__argument_name_token1] = ACTIONS(1260), + [aux_sym__argument_name_token2] = ACTIONS(1260), + [anon_sym_POUND_LBRACK] = ACTIONS(1258), + [aux_sym_encapsed_string_token1] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [aux_sym_string_token1] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_BQUOTE] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1258), + [aux_sym_yield_expression_token1] = ACTIONS(1260), + [aux_sym_include_expression_token1] = ACTIONS(1260), + [aux_sym_include_once_expression_token1] = ACTIONS(1260), + [aux_sym_require_expression_token1] = ACTIONS(1260), + [aux_sym_require_once_expression_token1] = ACTIONS(1260), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1258), + }, + [470] = { + [sym_text_interpolation] = STATE(470), + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_name] = ACTIONS(1264), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1262), + [aux_sym_function_static_declaration_token1] = ACTIONS(1264), + [aux_sym_global_declaration_token1] = ACTIONS(1264), + [aux_sym_namespace_definition_token1] = ACTIONS(1264), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1264), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1264), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1264), + [anon_sym_BSLASH] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [aux_sym_trait_declaration_token1] = ACTIONS(1264), + [aux_sym_interface_declaration_token1] = ACTIONS(1264), + [aux_sym_enum_declaration_token1] = ACTIONS(1264), + [aux_sym_enum_case_token1] = ACTIONS(1264), + [aux_sym_class_declaration_token1] = ACTIONS(1264), + [aux_sym_final_modifier_token1] = ACTIONS(1264), + [aux_sym_abstract_modifier_token1] = ACTIONS(1264), + [aux_sym_readonly_modifier_token1] = ACTIONS(1264), + [aux_sym_visibility_modifier_token1] = ACTIONS(1264), + [aux_sym_visibility_modifier_token2] = ACTIONS(1264), + [aux_sym_visibility_modifier_token3] = ACTIONS(1264), + [aux_sym__arrow_function_header_token1] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1262), + [aux_sym_cast_type_token1] = ACTIONS(1264), + [aux_sym_echo_statement_token1] = ACTIONS(1264), + [aux_sym_exit_statement_token1] = ACTIONS(1264), + [anon_sym_unset] = ACTIONS(1264), + [aux_sym_declare_statement_token1] = ACTIONS(1264), + [aux_sym_declare_statement_token2] = ACTIONS(1264), + [sym_float] = ACTIONS(1264), + [aux_sym_try_statement_token1] = ACTIONS(1264), + [aux_sym_goto_statement_token1] = ACTIONS(1264), + [aux_sym_continue_statement_token1] = ACTIONS(1264), + [aux_sym_break_statement_token1] = ACTIONS(1264), + [sym_integer] = ACTIONS(1264), + [aux_sym_return_statement_token1] = ACTIONS(1264), + [aux_sym_throw_expression_token1] = ACTIONS(1264), + [aux_sym_while_statement_token1] = ACTIONS(1264), + [aux_sym_while_statement_token2] = ACTIONS(1264), + [aux_sym_do_statement_token1] = ACTIONS(1264), + [aux_sym_for_statement_token1] = ACTIONS(1264), + [aux_sym_for_statement_token2] = ACTIONS(1264), + [aux_sym_foreach_statement_token1] = ACTIONS(1264), + [aux_sym_foreach_statement_token2] = ACTIONS(1264), + [aux_sym_if_statement_token1] = ACTIONS(1264), + [aux_sym_if_statement_token2] = ACTIONS(1264), + [aux_sym_else_if_clause_token1] = ACTIONS(1264), + [aux_sym_else_clause_token1] = ACTIONS(1264), + [aux_sym_match_expression_token1] = ACTIONS(1264), + [aux_sym_match_default_expression_token1] = ACTIONS(1264), + [aux_sym_switch_statement_token1] = ACTIONS(1264), + [aux_sym_switch_block_token1] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(1262), + [aux_sym_clone_expression_token1] = ACTIONS(1264), + [aux_sym_print_intrinsic_token1] = ACTIONS(1264), + [aux_sym_object_creation_expression_token1] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [aux_sym__list_destructing_token1] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_self] = ACTIONS(1264), + [anon_sym_parent] = ACTIONS(1264), + [aux_sym__argument_name_token1] = ACTIONS(1264), + [aux_sym__argument_name_token2] = ACTIONS(1264), + [anon_sym_POUND_LBRACK] = ACTIONS(1262), + [aux_sym_encapsed_string_token1] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [aux_sym_string_token1] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_LT_LT_LT] = ACTIONS(1262), + [anon_sym_BQUOTE] = ACTIONS(1262), + [anon_sym_DOLLAR] = ACTIONS(1262), + [aux_sym_yield_expression_token1] = ACTIONS(1264), + [aux_sym_include_expression_token1] = ACTIONS(1264), + [aux_sym_include_once_expression_token1] = ACTIONS(1264), + [aux_sym_require_expression_token1] = ACTIONS(1264), + [aux_sym_require_once_expression_token1] = ACTIONS(1264), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1262), + }, + [471] = { + [sym_text_interpolation] = STATE(471), + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_name] = ACTIONS(1268), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1266), + [aux_sym_function_static_declaration_token1] = ACTIONS(1268), + [aux_sym_global_declaration_token1] = ACTIONS(1268), + [aux_sym_namespace_definition_token1] = ACTIONS(1268), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1268), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1268), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1268), + [anon_sym_BSLASH] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [aux_sym_trait_declaration_token1] = ACTIONS(1268), + [aux_sym_interface_declaration_token1] = ACTIONS(1268), + [aux_sym_enum_declaration_token1] = ACTIONS(1268), + [aux_sym_enum_case_token1] = ACTIONS(1268), + [aux_sym_class_declaration_token1] = ACTIONS(1268), + [aux_sym_final_modifier_token1] = ACTIONS(1268), + [aux_sym_abstract_modifier_token1] = ACTIONS(1268), + [aux_sym_readonly_modifier_token1] = ACTIONS(1268), + [aux_sym_visibility_modifier_token1] = ACTIONS(1268), + [aux_sym_visibility_modifier_token2] = ACTIONS(1268), + [aux_sym_visibility_modifier_token3] = ACTIONS(1268), + [aux_sym__arrow_function_header_token1] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1266), + [aux_sym_cast_type_token1] = ACTIONS(1268), + [aux_sym_echo_statement_token1] = ACTIONS(1268), + [aux_sym_exit_statement_token1] = ACTIONS(1268), + [anon_sym_unset] = ACTIONS(1268), + [aux_sym_declare_statement_token1] = ACTIONS(1268), + [aux_sym_declare_statement_token2] = ACTIONS(1268), + [sym_float] = ACTIONS(1268), + [aux_sym_try_statement_token1] = ACTIONS(1268), + [aux_sym_goto_statement_token1] = ACTIONS(1268), + [aux_sym_continue_statement_token1] = ACTIONS(1268), + [aux_sym_break_statement_token1] = ACTIONS(1268), + [sym_integer] = ACTIONS(1268), + [aux_sym_return_statement_token1] = ACTIONS(1268), + [aux_sym_throw_expression_token1] = ACTIONS(1268), + [aux_sym_while_statement_token1] = ACTIONS(1268), + [aux_sym_while_statement_token2] = ACTIONS(1268), + [aux_sym_do_statement_token1] = ACTIONS(1268), + [aux_sym_for_statement_token1] = ACTIONS(1268), + [aux_sym_for_statement_token2] = ACTIONS(1268), + [aux_sym_foreach_statement_token1] = ACTIONS(1268), + [aux_sym_foreach_statement_token2] = ACTIONS(1268), + [aux_sym_if_statement_token1] = ACTIONS(1268), + [aux_sym_if_statement_token2] = ACTIONS(1268), + [aux_sym_else_if_clause_token1] = ACTIONS(1268), + [aux_sym_else_clause_token1] = ACTIONS(1268), + [aux_sym_match_expression_token1] = ACTIONS(1268), + [aux_sym_match_default_expression_token1] = ACTIONS(1268), + [aux_sym_switch_statement_token1] = ACTIONS(1268), + [aux_sym_switch_block_token1] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1266), + [aux_sym_clone_expression_token1] = ACTIONS(1268), + [aux_sym_print_intrinsic_token1] = ACTIONS(1268), + [aux_sym_object_creation_expression_token1] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [aux_sym__list_destructing_token1] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_self] = ACTIONS(1268), + [anon_sym_parent] = ACTIONS(1268), + [aux_sym__argument_name_token1] = ACTIONS(1268), + [aux_sym__argument_name_token2] = ACTIONS(1268), + [anon_sym_POUND_LBRACK] = ACTIONS(1266), + [aux_sym_encapsed_string_token1] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [aux_sym_string_token1] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1266), + [aux_sym_yield_expression_token1] = ACTIONS(1268), + [aux_sym_include_expression_token1] = ACTIONS(1268), + [aux_sym_include_once_expression_token1] = ACTIONS(1268), + [aux_sym_require_expression_token1] = ACTIONS(1268), + [aux_sym_require_once_expression_token1] = ACTIONS(1268), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1266), + }, + [472] = { + [sym_text_interpolation] = STATE(472), + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_name] = ACTIONS(1272), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1270), + [aux_sym_function_static_declaration_token1] = ACTIONS(1272), + [aux_sym_global_declaration_token1] = ACTIONS(1272), + [aux_sym_namespace_definition_token1] = ACTIONS(1272), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1272), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1272), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1272), + [anon_sym_BSLASH] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [aux_sym_trait_declaration_token1] = ACTIONS(1272), + [aux_sym_interface_declaration_token1] = ACTIONS(1272), + [aux_sym_enum_declaration_token1] = ACTIONS(1272), + [aux_sym_enum_case_token1] = ACTIONS(1272), + [aux_sym_class_declaration_token1] = ACTIONS(1272), + [aux_sym_final_modifier_token1] = ACTIONS(1272), + [aux_sym_abstract_modifier_token1] = ACTIONS(1272), + [aux_sym_readonly_modifier_token1] = ACTIONS(1272), + [aux_sym_visibility_modifier_token1] = ACTIONS(1272), + [aux_sym_visibility_modifier_token2] = ACTIONS(1272), + [aux_sym_visibility_modifier_token3] = ACTIONS(1272), + [aux_sym__arrow_function_header_token1] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1270), + [aux_sym_cast_type_token1] = ACTIONS(1272), + [aux_sym_echo_statement_token1] = ACTIONS(1272), + [aux_sym_exit_statement_token1] = ACTIONS(1272), + [anon_sym_unset] = ACTIONS(1272), + [aux_sym_declare_statement_token1] = ACTIONS(1272), + [aux_sym_declare_statement_token2] = ACTIONS(1272), + [sym_float] = ACTIONS(1272), + [aux_sym_try_statement_token1] = ACTIONS(1272), + [aux_sym_goto_statement_token1] = ACTIONS(1272), + [aux_sym_continue_statement_token1] = ACTIONS(1272), + [aux_sym_break_statement_token1] = ACTIONS(1272), + [sym_integer] = ACTIONS(1272), + [aux_sym_return_statement_token1] = ACTIONS(1272), + [aux_sym_throw_expression_token1] = ACTIONS(1272), + [aux_sym_while_statement_token1] = ACTIONS(1272), + [aux_sym_while_statement_token2] = ACTIONS(1272), + [aux_sym_do_statement_token1] = ACTIONS(1272), + [aux_sym_for_statement_token1] = ACTIONS(1272), + [aux_sym_for_statement_token2] = ACTIONS(1272), + [aux_sym_foreach_statement_token1] = ACTIONS(1272), + [aux_sym_foreach_statement_token2] = ACTIONS(1272), + [aux_sym_if_statement_token1] = ACTIONS(1272), + [aux_sym_if_statement_token2] = ACTIONS(1272), + [aux_sym_else_if_clause_token1] = ACTIONS(1272), + [aux_sym_else_clause_token1] = ACTIONS(1272), + [aux_sym_match_expression_token1] = ACTIONS(1272), + [aux_sym_match_default_expression_token1] = ACTIONS(1272), + [aux_sym_switch_statement_token1] = ACTIONS(1272), + [aux_sym_switch_block_token1] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_AT] = ACTIONS(1270), + [aux_sym_clone_expression_token1] = ACTIONS(1272), + [aux_sym_print_intrinsic_token1] = ACTIONS(1272), + [aux_sym_object_creation_expression_token1] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [aux_sym__list_destructing_token1] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_self] = ACTIONS(1272), + [anon_sym_parent] = ACTIONS(1272), + [aux_sym__argument_name_token1] = ACTIONS(1272), + [aux_sym__argument_name_token2] = ACTIONS(1272), + [anon_sym_POUND_LBRACK] = ACTIONS(1270), + [aux_sym_encapsed_string_token1] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [aux_sym_string_token1] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_LT_LT_LT] = ACTIONS(1270), + [anon_sym_BQUOTE] = ACTIONS(1270), + [anon_sym_DOLLAR] = ACTIONS(1270), + [aux_sym_yield_expression_token1] = ACTIONS(1272), + [aux_sym_include_expression_token1] = ACTIONS(1272), + [aux_sym_include_once_expression_token1] = ACTIONS(1272), + [aux_sym_require_expression_token1] = ACTIONS(1272), + [aux_sym_require_once_expression_token1] = ACTIONS(1272), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1270), }, [473] = { [sym_text_interpolation] = STATE(473), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_name] = ACTIONS(1276), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1274), + [aux_sym_function_static_declaration_token1] = ACTIONS(1276), + [aux_sym_global_declaration_token1] = ACTIONS(1276), + [aux_sym_namespace_definition_token1] = ACTIONS(1276), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1276), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1276), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1276), + [anon_sym_BSLASH] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [aux_sym_trait_declaration_token1] = ACTIONS(1276), + [aux_sym_interface_declaration_token1] = ACTIONS(1276), + [aux_sym_enum_declaration_token1] = ACTIONS(1276), + [aux_sym_enum_case_token1] = ACTIONS(1276), + [aux_sym_class_declaration_token1] = ACTIONS(1276), + [aux_sym_final_modifier_token1] = ACTIONS(1276), + [aux_sym_abstract_modifier_token1] = ACTIONS(1276), + [aux_sym_readonly_modifier_token1] = ACTIONS(1276), + [aux_sym_visibility_modifier_token1] = ACTIONS(1276), + [aux_sym_visibility_modifier_token2] = ACTIONS(1276), + [aux_sym_visibility_modifier_token3] = ACTIONS(1276), + [aux_sym__arrow_function_header_token1] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1274), + [aux_sym_cast_type_token1] = ACTIONS(1276), + [aux_sym_echo_statement_token1] = ACTIONS(1276), + [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(5), + [sym_grit_metavariable] = ACTIONS(1274), }, [474] = { [sym_text_interpolation] = STATE(474), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1240), + [ts_builtin_sym_end] = ACTIONS(1186), + [sym_name] = ACTIONS(1188), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1186), + [aux_sym_function_static_declaration_token1] = ACTIONS(1188), + [aux_sym_global_declaration_token1] = ACTIONS(1188), + [aux_sym_namespace_definition_token1] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1188), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1188), + [anon_sym_BSLASH] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [aux_sym_trait_declaration_token1] = ACTIONS(1188), + [aux_sym_interface_declaration_token1] = ACTIONS(1188), + [aux_sym_enum_declaration_token1] = ACTIONS(1188), + [aux_sym_enum_case_token1] = ACTIONS(1188), + [aux_sym_class_declaration_token1] = ACTIONS(1188), + [aux_sym_final_modifier_token1] = ACTIONS(1188), + [aux_sym_abstract_modifier_token1] = ACTIONS(1188), + [aux_sym_readonly_modifier_token1] = ACTIONS(1188), + [aux_sym_visibility_modifier_token1] = ACTIONS(1188), + [aux_sym_visibility_modifier_token2] = ACTIONS(1188), + [aux_sym_visibility_modifier_token3] = ACTIONS(1188), + [aux_sym__arrow_function_header_token1] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(1186), + [aux_sym_cast_type_token1] = ACTIONS(1188), + [aux_sym_echo_statement_token1] = ACTIONS(1188), + [aux_sym_exit_statement_token1] = ACTIONS(1188), + [anon_sym_unset] = ACTIONS(1188), + [aux_sym_declare_statement_token1] = ACTIONS(1188), + [aux_sym_declare_statement_token2] = ACTIONS(1188), + [sym_float] = ACTIONS(1188), + [aux_sym_try_statement_token1] = ACTIONS(1188), + [aux_sym_goto_statement_token1] = ACTIONS(1188), + [aux_sym_continue_statement_token1] = ACTIONS(1188), + [aux_sym_break_statement_token1] = ACTIONS(1188), + [sym_integer] = ACTIONS(1188), + [aux_sym_return_statement_token1] = ACTIONS(1188), + [aux_sym_throw_expression_token1] = ACTIONS(1188), + [aux_sym_while_statement_token1] = ACTIONS(1188), + [aux_sym_while_statement_token2] = ACTIONS(1188), + [aux_sym_do_statement_token1] = ACTIONS(1188), + [aux_sym_for_statement_token1] = ACTIONS(1188), + [aux_sym_for_statement_token2] = ACTIONS(1188), + [aux_sym_foreach_statement_token1] = ACTIONS(1188), + [aux_sym_foreach_statement_token2] = ACTIONS(1188), + [aux_sym_if_statement_token1] = ACTIONS(1188), + [aux_sym_if_statement_token2] = ACTIONS(1188), + [aux_sym_else_if_clause_token1] = ACTIONS(1188), + [aux_sym_else_clause_token1] = ACTIONS(1188), + [aux_sym_match_expression_token1] = ACTIONS(1188), + [aux_sym_match_default_expression_token1] = ACTIONS(1188), + [aux_sym_switch_statement_token1] = ACTIONS(1188), + [aux_sym_switch_block_token1] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_AT] = ACTIONS(1186), + [aux_sym_clone_expression_token1] = ACTIONS(1188), + [aux_sym_print_intrinsic_token1] = ACTIONS(1188), + [aux_sym_object_creation_expression_token1] = ACTIONS(1188), + [anon_sym_DASH_DASH] = ACTIONS(1186), + [anon_sym_PLUS_PLUS] = ACTIONS(1186), + [aux_sym__list_destructing_token1] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_self] = ACTIONS(1188), + [anon_sym_parent] = ACTIONS(1188), + [aux_sym__argument_name_token1] = ACTIONS(1188), + [aux_sym__argument_name_token2] = ACTIONS(1188), + [anon_sym_POUND_LBRACK] = ACTIONS(1186), + [aux_sym_encapsed_string_token1] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(1186), + [aux_sym_string_token1] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(1186), + [anon_sym_LT_LT_LT] = ACTIONS(1186), + [anon_sym_BQUOTE] = ACTIONS(1186), + [anon_sym_DOLLAR] = ACTIONS(1186), + [aux_sym_yield_expression_token1] = ACTIONS(1188), + [aux_sym_include_expression_token1] = ACTIONS(1188), + [aux_sym_include_once_expression_token1] = ACTIONS(1188), + [aux_sym_require_expression_token1] = ACTIONS(1188), + [aux_sym_require_once_expression_token1] = ACTIONS(1188), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1186), }, [475] = { [sym_text_interpolation] = STATE(475), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_name] = ACTIONS(1280), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1278), + [aux_sym_function_static_declaration_token1] = ACTIONS(1280), + [aux_sym_global_declaration_token1] = ACTIONS(1280), + [aux_sym_namespace_definition_token1] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1280), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1280), + [anon_sym_BSLASH] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [aux_sym_trait_declaration_token1] = ACTIONS(1280), + [aux_sym_interface_declaration_token1] = ACTIONS(1280), + [aux_sym_enum_declaration_token1] = ACTIONS(1280), + [aux_sym_enum_case_token1] = ACTIONS(1280), + [aux_sym_class_declaration_token1] = ACTIONS(1280), + [aux_sym_final_modifier_token1] = ACTIONS(1280), + [aux_sym_abstract_modifier_token1] = ACTIONS(1280), + [aux_sym_readonly_modifier_token1] = ACTIONS(1280), + [aux_sym_visibility_modifier_token1] = ACTIONS(1280), + [aux_sym_visibility_modifier_token2] = ACTIONS(1280), + [aux_sym_visibility_modifier_token3] = ACTIONS(1280), + [aux_sym__arrow_function_header_token1] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1278), + [aux_sym_cast_type_token1] = ACTIONS(1280), + [aux_sym_echo_statement_token1] = ACTIONS(1280), + [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(5), + [sym_grit_metavariable] = ACTIONS(1278), }, [476] = { [sym_text_interpolation] = STATE(476), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1248), + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_name] = ACTIONS(1284), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1282), + [aux_sym_function_static_declaration_token1] = ACTIONS(1284), + [aux_sym_global_declaration_token1] = ACTIONS(1284), + [aux_sym_namespace_definition_token1] = ACTIONS(1284), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1284), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1284), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1284), + [anon_sym_BSLASH] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [aux_sym_trait_declaration_token1] = ACTIONS(1284), + [aux_sym_interface_declaration_token1] = ACTIONS(1284), + [aux_sym_enum_declaration_token1] = ACTIONS(1284), + [aux_sym_enum_case_token1] = ACTIONS(1284), + [aux_sym_class_declaration_token1] = ACTIONS(1284), + [aux_sym_final_modifier_token1] = ACTIONS(1284), + [aux_sym_abstract_modifier_token1] = ACTIONS(1284), + [aux_sym_readonly_modifier_token1] = ACTIONS(1284), + [aux_sym_visibility_modifier_token1] = ACTIONS(1284), + [aux_sym_visibility_modifier_token2] = ACTIONS(1284), + [aux_sym_visibility_modifier_token3] = ACTIONS(1284), + [aux_sym__arrow_function_header_token1] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1282), + [aux_sym_cast_type_token1] = ACTIONS(1284), + [aux_sym_echo_statement_token1] = ACTIONS(1284), + [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(5), + [sym_grit_metavariable] = ACTIONS(1282), }, [477] = { [sym_text_interpolation] = STATE(477), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1252), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_name] = ACTIONS(1288), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1286), + [aux_sym_function_static_declaration_token1] = ACTIONS(1288), + [aux_sym_global_declaration_token1] = ACTIONS(1288), + [aux_sym_namespace_definition_token1] = ACTIONS(1288), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1288), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1288), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1288), + [anon_sym_BSLASH] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [aux_sym_trait_declaration_token1] = ACTIONS(1288), + [aux_sym_interface_declaration_token1] = ACTIONS(1288), + [aux_sym_enum_declaration_token1] = ACTIONS(1288), + [aux_sym_enum_case_token1] = ACTIONS(1288), + [aux_sym_class_declaration_token1] = ACTIONS(1288), + [aux_sym_final_modifier_token1] = ACTIONS(1288), + [aux_sym_abstract_modifier_token1] = ACTIONS(1288), + [aux_sym_readonly_modifier_token1] = ACTIONS(1288), + [aux_sym_visibility_modifier_token1] = ACTIONS(1288), + [aux_sym_visibility_modifier_token2] = ACTIONS(1288), + [aux_sym_visibility_modifier_token3] = ACTIONS(1288), + [aux_sym__arrow_function_header_token1] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1286), + [aux_sym_cast_type_token1] = ACTIONS(1288), + [aux_sym_echo_statement_token1] = ACTIONS(1288), + [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(5), + [sym_grit_metavariable] = ACTIONS(1286), }, [478] = { [sym_text_interpolation] = STATE(478), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_name] = ACTIONS(1292), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1290), + [aux_sym_function_static_declaration_token1] = ACTIONS(1292), + [aux_sym_global_declaration_token1] = ACTIONS(1292), + [aux_sym_namespace_definition_token1] = ACTIONS(1292), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1292), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1292), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1292), + [anon_sym_BSLASH] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [aux_sym_trait_declaration_token1] = ACTIONS(1292), + [aux_sym_interface_declaration_token1] = ACTIONS(1292), + [aux_sym_enum_declaration_token1] = ACTIONS(1292), + [aux_sym_enum_case_token1] = ACTIONS(1292), + [aux_sym_class_declaration_token1] = ACTIONS(1292), + [aux_sym_final_modifier_token1] = ACTIONS(1292), + [aux_sym_abstract_modifier_token1] = ACTIONS(1292), + [aux_sym_readonly_modifier_token1] = ACTIONS(1292), + [aux_sym_visibility_modifier_token1] = ACTIONS(1292), + [aux_sym_visibility_modifier_token2] = ACTIONS(1292), + [aux_sym_visibility_modifier_token3] = ACTIONS(1292), + [aux_sym__arrow_function_header_token1] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1290), + [aux_sym_cast_type_token1] = ACTIONS(1292), + [aux_sym_echo_statement_token1] = ACTIONS(1292), + [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(5), + [sym_grit_metavariable] = ACTIONS(1290), }, [479] = { [sym_text_interpolation] = STATE(479), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_name] = ACTIONS(1296), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1294), + [aux_sym_function_static_declaration_token1] = ACTIONS(1296), + [aux_sym_global_declaration_token1] = ACTIONS(1296), + [aux_sym_namespace_definition_token1] = ACTIONS(1296), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1296), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1296), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1296), + [anon_sym_BSLASH] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [aux_sym_trait_declaration_token1] = ACTIONS(1296), + [aux_sym_interface_declaration_token1] = ACTIONS(1296), + [aux_sym_enum_declaration_token1] = ACTIONS(1296), + [aux_sym_enum_case_token1] = ACTIONS(1296), + [aux_sym_class_declaration_token1] = ACTIONS(1296), + [aux_sym_final_modifier_token1] = ACTIONS(1296), + [aux_sym_abstract_modifier_token1] = ACTIONS(1296), + [aux_sym_readonly_modifier_token1] = ACTIONS(1296), + [aux_sym_visibility_modifier_token1] = ACTIONS(1296), + [aux_sym_visibility_modifier_token2] = ACTIONS(1296), + [aux_sym_visibility_modifier_token3] = ACTIONS(1296), + [aux_sym__arrow_function_header_token1] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1294), + [aux_sym_cast_type_token1] = ACTIONS(1296), + [aux_sym_echo_statement_token1] = ACTIONS(1296), + [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(5), + [sym_grit_metavariable] = ACTIONS(1294), }, [480] = { [sym_text_interpolation] = STATE(480), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1264), + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_name] = ACTIONS(1300), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1298), + [aux_sym_function_static_declaration_token1] = ACTIONS(1300), + [aux_sym_global_declaration_token1] = ACTIONS(1300), + [aux_sym_namespace_definition_token1] = ACTIONS(1300), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1300), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1300), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1300), + [anon_sym_BSLASH] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [aux_sym_trait_declaration_token1] = ACTIONS(1300), + [aux_sym_interface_declaration_token1] = ACTIONS(1300), + [aux_sym_enum_declaration_token1] = ACTIONS(1300), + [aux_sym_enum_case_token1] = ACTIONS(1300), + [aux_sym_class_declaration_token1] = ACTIONS(1300), + [aux_sym_final_modifier_token1] = ACTIONS(1300), + [aux_sym_abstract_modifier_token1] = ACTIONS(1300), + [aux_sym_readonly_modifier_token1] = ACTIONS(1300), + [aux_sym_visibility_modifier_token1] = ACTIONS(1300), + [aux_sym_visibility_modifier_token2] = ACTIONS(1300), + [aux_sym_visibility_modifier_token3] = ACTIONS(1300), + [aux_sym__arrow_function_header_token1] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1298), + [aux_sym_cast_type_token1] = ACTIONS(1300), + [aux_sym_echo_statement_token1] = ACTIONS(1300), + [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(5), + [sym_grit_metavariable] = ACTIONS(1298), }, [481] = { [sym_text_interpolation] = STATE(481), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1268), + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_name] = ACTIONS(1304), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1302), + [aux_sym_function_static_declaration_token1] = ACTIONS(1304), + [aux_sym_global_declaration_token1] = ACTIONS(1304), + [aux_sym_namespace_definition_token1] = ACTIONS(1304), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1304), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1304), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1304), + [anon_sym_BSLASH] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [aux_sym_trait_declaration_token1] = ACTIONS(1304), + [aux_sym_interface_declaration_token1] = ACTIONS(1304), + [aux_sym_enum_declaration_token1] = ACTIONS(1304), + [aux_sym_enum_case_token1] = ACTIONS(1304), + [aux_sym_class_declaration_token1] = ACTIONS(1304), + [aux_sym_final_modifier_token1] = ACTIONS(1304), + [aux_sym_abstract_modifier_token1] = ACTIONS(1304), + [aux_sym_readonly_modifier_token1] = ACTIONS(1304), + [aux_sym_visibility_modifier_token1] = ACTIONS(1304), + [aux_sym_visibility_modifier_token2] = ACTIONS(1304), + [aux_sym_visibility_modifier_token3] = ACTIONS(1304), + [aux_sym__arrow_function_header_token1] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1302), + [aux_sym_cast_type_token1] = ACTIONS(1304), + [aux_sym_echo_statement_token1] = ACTIONS(1304), + [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(5), + [sym_grit_metavariable] = ACTIONS(1302), }, [482] = { [sym_text_interpolation] = STATE(482), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1272), + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_name] = ACTIONS(1308), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1306), + [aux_sym_function_static_declaration_token1] = ACTIONS(1308), + [aux_sym_global_declaration_token1] = ACTIONS(1308), + [aux_sym_namespace_definition_token1] = ACTIONS(1308), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1308), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1308), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1308), + [anon_sym_BSLASH] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [aux_sym_trait_declaration_token1] = ACTIONS(1308), + [aux_sym_interface_declaration_token1] = ACTIONS(1308), + [aux_sym_enum_declaration_token1] = ACTIONS(1308), + [aux_sym_enum_case_token1] = ACTIONS(1308), + [aux_sym_class_declaration_token1] = ACTIONS(1308), + [aux_sym_final_modifier_token1] = ACTIONS(1308), + [aux_sym_abstract_modifier_token1] = ACTIONS(1308), + [aux_sym_readonly_modifier_token1] = ACTIONS(1308), + [aux_sym_visibility_modifier_token1] = ACTIONS(1308), + [aux_sym_visibility_modifier_token2] = ACTIONS(1308), + [aux_sym_visibility_modifier_token3] = ACTIONS(1308), + [aux_sym__arrow_function_header_token1] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1306), + [aux_sym_cast_type_token1] = ACTIONS(1308), + [aux_sym_echo_statement_token1] = ACTIONS(1308), + [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(5), + [sym_grit_metavariable] = ACTIONS(1306), }, [483] = { [sym_text_interpolation] = STATE(483), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1276), + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_name] = ACTIONS(1312), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1310), + [aux_sym_function_static_declaration_token1] = ACTIONS(1312), + [aux_sym_global_declaration_token1] = ACTIONS(1312), + [aux_sym_namespace_definition_token1] = ACTIONS(1312), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1312), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1312), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1312), + [anon_sym_BSLASH] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [aux_sym_trait_declaration_token1] = ACTIONS(1312), + [aux_sym_interface_declaration_token1] = ACTIONS(1312), + [aux_sym_enum_declaration_token1] = ACTIONS(1312), + [aux_sym_enum_case_token1] = ACTIONS(1312), + [aux_sym_class_declaration_token1] = ACTIONS(1312), + [aux_sym_final_modifier_token1] = ACTIONS(1312), + [aux_sym_abstract_modifier_token1] = ACTIONS(1312), + [aux_sym_readonly_modifier_token1] = ACTIONS(1312), + [aux_sym_visibility_modifier_token1] = ACTIONS(1312), + [aux_sym_visibility_modifier_token2] = ACTIONS(1312), + [aux_sym_visibility_modifier_token3] = ACTIONS(1312), + [aux_sym__arrow_function_header_token1] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1310), + [aux_sym_cast_type_token1] = ACTIONS(1312), + [aux_sym_echo_statement_token1] = ACTIONS(1312), + [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(5), + [sym_grit_metavariable] = ACTIONS(1310), }, [484] = { [sym_text_interpolation] = STATE(484), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1264), + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_name] = ACTIONS(1316), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1314), + [aux_sym_function_static_declaration_token1] = ACTIONS(1316), + [aux_sym_global_declaration_token1] = ACTIONS(1316), + [aux_sym_namespace_definition_token1] = ACTIONS(1316), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1316), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1316), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1316), + [anon_sym_BSLASH] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [aux_sym_trait_declaration_token1] = ACTIONS(1316), + [aux_sym_interface_declaration_token1] = ACTIONS(1316), + [aux_sym_enum_declaration_token1] = ACTIONS(1316), + [aux_sym_enum_case_token1] = ACTIONS(1316), + [aux_sym_class_declaration_token1] = ACTIONS(1316), + [aux_sym_final_modifier_token1] = ACTIONS(1316), + [aux_sym_abstract_modifier_token1] = ACTIONS(1316), + [aux_sym_readonly_modifier_token1] = ACTIONS(1316), + [aux_sym_visibility_modifier_token1] = ACTIONS(1316), + [aux_sym_visibility_modifier_token2] = ACTIONS(1316), + [aux_sym_visibility_modifier_token3] = ACTIONS(1316), + [aux_sym__arrow_function_header_token1] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1314), + [aux_sym_cast_type_token1] = ACTIONS(1316), + [aux_sym_echo_statement_token1] = ACTIONS(1316), + [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(5), + [sym_grit_metavariable] = ACTIONS(1314), }, [485] = { [sym_text_interpolation] = STATE(485), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1280), + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_name] = ACTIONS(1320), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1318), + [aux_sym_function_static_declaration_token1] = ACTIONS(1320), + [aux_sym_global_declaration_token1] = ACTIONS(1320), + [aux_sym_namespace_definition_token1] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1320), + [anon_sym_BSLASH] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [aux_sym_trait_declaration_token1] = ACTIONS(1320), + [aux_sym_interface_declaration_token1] = ACTIONS(1320), + [aux_sym_enum_declaration_token1] = ACTIONS(1320), + [aux_sym_enum_case_token1] = ACTIONS(1320), + [aux_sym_class_declaration_token1] = ACTIONS(1320), + [aux_sym_final_modifier_token1] = ACTIONS(1320), + [aux_sym_abstract_modifier_token1] = ACTIONS(1320), + [aux_sym_readonly_modifier_token1] = ACTIONS(1320), + [aux_sym_visibility_modifier_token1] = ACTIONS(1320), + [aux_sym_visibility_modifier_token2] = ACTIONS(1320), + [aux_sym_visibility_modifier_token3] = ACTIONS(1320), + [aux_sym__arrow_function_header_token1] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1318), + [aux_sym_cast_type_token1] = ACTIONS(1320), + [aux_sym_echo_statement_token1] = ACTIONS(1320), + [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(5), + [sym_grit_metavariable] = ACTIONS(1318), }, [486] = { [sym_text_interpolation] = STATE(486), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1284), + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_name] = ACTIONS(1324), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1322), + [aux_sym_function_static_declaration_token1] = ACTIONS(1324), + [aux_sym_global_declaration_token1] = ACTIONS(1324), + [aux_sym_namespace_definition_token1] = ACTIONS(1324), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1324), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1324), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1324), + [anon_sym_BSLASH] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [aux_sym_trait_declaration_token1] = ACTIONS(1324), + [aux_sym_interface_declaration_token1] = ACTIONS(1324), + [aux_sym_enum_declaration_token1] = ACTIONS(1324), + [aux_sym_enum_case_token1] = ACTIONS(1324), + [aux_sym_class_declaration_token1] = ACTIONS(1324), + [aux_sym_final_modifier_token1] = ACTIONS(1324), + [aux_sym_abstract_modifier_token1] = ACTIONS(1324), + [aux_sym_readonly_modifier_token1] = ACTIONS(1324), + [aux_sym_visibility_modifier_token1] = ACTIONS(1324), + [aux_sym_visibility_modifier_token2] = ACTIONS(1324), + [aux_sym_visibility_modifier_token3] = ACTIONS(1324), + [aux_sym__arrow_function_header_token1] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1322), + [aux_sym_cast_type_token1] = ACTIONS(1324), + [aux_sym_echo_statement_token1] = ACTIONS(1324), + [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(5), + [sym_grit_metavariable] = ACTIONS(1322), }, [487] = { [sym_text_interpolation] = STATE(487), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1288), + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_name] = ACTIONS(1320), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1318), + [aux_sym_function_static_declaration_token1] = ACTIONS(1320), + [aux_sym_global_declaration_token1] = ACTIONS(1320), + [aux_sym_namespace_definition_token1] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1320), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1320), + [anon_sym_BSLASH] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [aux_sym_trait_declaration_token1] = ACTIONS(1320), + [aux_sym_interface_declaration_token1] = ACTIONS(1320), + [aux_sym_enum_declaration_token1] = ACTIONS(1320), + [aux_sym_enum_case_token1] = ACTIONS(1320), + [aux_sym_class_declaration_token1] = ACTIONS(1320), + [aux_sym_final_modifier_token1] = ACTIONS(1320), + [aux_sym_abstract_modifier_token1] = ACTIONS(1320), + [aux_sym_readonly_modifier_token1] = ACTIONS(1320), + [aux_sym_visibility_modifier_token1] = ACTIONS(1320), + [aux_sym_visibility_modifier_token2] = ACTIONS(1320), + [aux_sym_visibility_modifier_token3] = ACTIONS(1320), + [aux_sym__arrow_function_header_token1] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1318), + [aux_sym_cast_type_token1] = ACTIONS(1320), + [aux_sym_echo_statement_token1] = ACTIONS(1320), + [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(5), + [sym_grit_metavariable] = ACTIONS(1318), }, [488] = { [sym_text_interpolation] = STATE(488), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1292), + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_name] = ACTIONS(1328), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1326), + [aux_sym_function_static_declaration_token1] = ACTIONS(1328), + [aux_sym_global_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_definition_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1328), + [anon_sym_BSLASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [aux_sym_trait_declaration_token1] = ACTIONS(1328), + [aux_sym_interface_declaration_token1] = ACTIONS(1328), + [aux_sym_enum_declaration_token1] = ACTIONS(1328), + [aux_sym_enum_case_token1] = ACTIONS(1328), + [aux_sym_class_declaration_token1] = ACTIONS(1328), + [aux_sym_final_modifier_token1] = ACTIONS(1328), + [aux_sym_abstract_modifier_token1] = ACTIONS(1328), + [aux_sym_readonly_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token2] = ACTIONS(1328), + [aux_sym_visibility_modifier_token3] = ACTIONS(1328), + [aux_sym__arrow_function_header_token1] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_cast_type_token1] = ACTIONS(1328), + [aux_sym_echo_statement_token1] = ACTIONS(1328), + [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(5), + [sym_grit_metavariable] = ACTIONS(1326), }, [489] = { [sym_text_interpolation] = STATE(489), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_name] = ACTIONS(1328), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1326), + [aux_sym_function_static_declaration_token1] = ACTIONS(1328), + [aux_sym_global_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_definition_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1328), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1328), + [anon_sym_BSLASH] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [aux_sym_trait_declaration_token1] = ACTIONS(1328), + [aux_sym_interface_declaration_token1] = ACTIONS(1328), + [aux_sym_enum_declaration_token1] = ACTIONS(1328), + [aux_sym_enum_case_token1] = ACTIONS(1328), + [aux_sym_class_declaration_token1] = ACTIONS(1328), + [aux_sym_final_modifier_token1] = ACTIONS(1328), + [aux_sym_abstract_modifier_token1] = ACTIONS(1328), + [aux_sym_readonly_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token1] = ACTIONS(1328), + [aux_sym_visibility_modifier_token2] = ACTIONS(1328), + [aux_sym_visibility_modifier_token3] = ACTIONS(1328), + [aux_sym__arrow_function_header_token1] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1326), + [aux_sym_cast_type_token1] = ACTIONS(1328), + [aux_sym_echo_statement_token1] = ACTIONS(1328), + [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(5), + [sym_grit_metavariable] = ACTIONS(1326), }, [490] = { [sym_text_interpolation] = STATE(490), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_name] = ACTIONS(1332), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1330), + [aux_sym_function_static_declaration_token1] = ACTIONS(1332), + [aux_sym_global_declaration_token1] = ACTIONS(1332), + [aux_sym_namespace_definition_token1] = ACTIONS(1332), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1332), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1332), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1332), + [anon_sym_BSLASH] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [aux_sym_trait_declaration_token1] = ACTIONS(1332), + [aux_sym_interface_declaration_token1] = ACTIONS(1332), + [aux_sym_enum_declaration_token1] = ACTIONS(1332), + [aux_sym_enum_case_token1] = ACTIONS(1332), + [aux_sym_class_declaration_token1] = ACTIONS(1332), + [aux_sym_final_modifier_token1] = ACTIONS(1332), + [aux_sym_abstract_modifier_token1] = ACTIONS(1332), + [aux_sym_readonly_modifier_token1] = ACTIONS(1332), + [aux_sym_visibility_modifier_token1] = ACTIONS(1332), + [aux_sym_visibility_modifier_token2] = ACTIONS(1332), + [aux_sym_visibility_modifier_token3] = ACTIONS(1332), + [aux_sym__arrow_function_header_token1] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1330), + [aux_sym_cast_type_token1] = ACTIONS(1332), + [aux_sym_echo_statement_token1] = ACTIONS(1332), + [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(5), + [sym_grit_metavariable] = ACTIONS(1330), }, [491] = { [sym_text_interpolation] = STATE(491), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1304), + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_name] = ACTIONS(1336), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1334), + [aux_sym_function_static_declaration_token1] = ACTIONS(1336), + [aux_sym_global_declaration_token1] = ACTIONS(1336), + [aux_sym_namespace_definition_token1] = ACTIONS(1336), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1336), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1336), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1336), + [anon_sym_BSLASH] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [aux_sym_trait_declaration_token1] = ACTIONS(1336), + [aux_sym_interface_declaration_token1] = ACTIONS(1336), + [aux_sym_enum_declaration_token1] = ACTIONS(1336), + [aux_sym_enum_case_token1] = ACTIONS(1336), + [aux_sym_class_declaration_token1] = ACTIONS(1336), + [aux_sym_final_modifier_token1] = ACTIONS(1336), + [aux_sym_abstract_modifier_token1] = ACTIONS(1336), + [aux_sym_readonly_modifier_token1] = ACTIONS(1336), + [aux_sym_visibility_modifier_token1] = ACTIONS(1336), + [aux_sym_visibility_modifier_token2] = ACTIONS(1336), + [aux_sym_visibility_modifier_token3] = ACTIONS(1336), + [aux_sym__arrow_function_header_token1] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1334), + [aux_sym_cast_type_token1] = ACTIONS(1336), + [aux_sym_echo_statement_token1] = ACTIONS(1336), + [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(5), + [sym_grit_metavariable] = ACTIONS(1334), }, [492] = { [sym_text_interpolation] = STATE(492), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_name] = ACTIONS(1340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1338), + [aux_sym_function_static_declaration_token1] = ACTIONS(1340), + [aux_sym_global_declaration_token1] = ACTIONS(1340), + [aux_sym_namespace_definition_token1] = ACTIONS(1340), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1340), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1340), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1340), + [anon_sym_BSLASH] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [aux_sym_trait_declaration_token1] = ACTIONS(1340), + [aux_sym_interface_declaration_token1] = ACTIONS(1340), + [aux_sym_enum_declaration_token1] = ACTIONS(1340), + [aux_sym_enum_case_token1] = ACTIONS(1340), + [aux_sym_class_declaration_token1] = ACTIONS(1340), + [aux_sym_final_modifier_token1] = ACTIONS(1340), + [aux_sym_abstract_modifier_token1] = ACTIONS(1340), + [aux_sym_readonly_modifier_token1] = ACTIONS(1340), + [aux_sym_visibility_modifier_token1] = ACTIONS(1340), + [aux_sym_visibility_modifier_token2] = ACTIONS(1340), + [aux_sym_visibility_modifier_token3] = ACTIONS(1340), + [aux_sym__arrow_function_header_token1] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1338), + [aux_sym_cast_type_token1] = ACTIONS(1340), + [aux_sym_echo_statement_token1] = ACTIONS(1340), + [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(5), + [sym_grit_metavariable] = ACTIONS(1338), }, [493] = { [sym_text_interpolation] = STATE(493), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1312), + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_name] = ACTIONS(1344), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1342), + [aux_sym_function_static_declaration_token1] = ACTIONS(1344), + [aux_sym_global_declaration_token1] = ACTIONS(1344), + [aux_sym_namespace_definition_token1] = ACTIONS(1344), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1344), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1344), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1344), + [anon_sym_BSLASH] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [aux_sym_trait_declaration_token1] = ACTIONS(1344), + [aux_sym_interface_declaration_token1] = ACTIONS(1344), + [aux_sym_enum_declaration_token1] = ACTIONS(1344), + [aux_sym_enum_case_token1] = ACTIONS(1344), + [aux_sym_class_declaration_token1] = ACTIONS(1344), + [aux_sym_final_modifier_token1] = ACTIONS(1344), + [aux_sym_abstract_modifier_token1] = ACTIONS(1344), + [aux_sym_readonly_modifier_token1] = ACTIONS(1344), + [aux_sym_visibility_modifier_token1] = ACTIONS(1344), + [aux_sym_visibility_modifier_token2] = ACTIONS(1344), + [aux_sym_visibility_modifier_token3] = ACTIONS(1344), + [aux_sym__arrow_function_header_token1] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1342), + [aux_sym_cast_type_token1] = ACTIONS(1344), + [aux_sym_echo_statement_token1] = ACTIONS(1344), + [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(5), + [sym_grit_metavariable] = ACTIONS(1342), }, [494] = { [sym_text_interpolation] = STATE(494), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1316), + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_name] = ACTIONS(1348), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1346), + [aux_sym_function_static_declaration_token1] = ACTIONS(1348), + [aux_sym_global_declaration_token1] = ACTIONS(1348), + [aux_sym_namespace_definition_token1] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [aux_sym_trait_declaration_token1] = ACTIONS(1348), + [aux_sym_interface_declaration_token1] = ACTIONS(1348), + [aux_sym_enum_declaration_token1] = ACTIONS(1348), + [aux_sym_enum_case_token1] = ACTIONS(1348), + [aux_sym_class_declaration_token1] = ACTIONS(1348), + [aux_sym_final_modifier_token1] = ACTIONS(1348), + [aux_sym_abstract_modifier_token1] = ACTIONS(1348), + [aux_sym_readonly_modifier_token1] = ACTIONS(1348), + [aux_sym_visibility_modifier_token1] = ACTIONS(1348), + [aux_sym_visibility_modifier_token2] = ACTIONS(1348), + [aux_sym_visibility_modifier_token3] = ACTIONS(1348), + [aux_sym__arrow_function_header_token1] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1346), + [aux_sym_cast_type_token1] = ACTIONS(1348), + [aux_sym_echo_statement_token1] = ACTIONS(1348), + [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(5), + [sym_grit_metavariable] = ACTIONS(1346), }, [495] = { [sym_text_interpolation] = STATE(495), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_name] = ACTIONS(1348), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1346), + [aux_sym_function_static_declaration_token1] = ACTIONS(1348), + [aux_sym_global_declaration_token1] = ACTIONS(1348), + [aux_sym_namespace_definition_token1] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1348), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [aux_sym_trait_declaration_token1] = ACTIONS(1348), + [aux_sym_interface_declaration_token1] = ACTIONS(1348), + [aux_sym_enum_declaration_token1] = ACTIONS(1348), + [aux_sym_enum_case_token1] = ACTIONS(1348), + [aux_sym_class_declaration_token1] = ACTIONS(1348), + [aux_sym_final_modifier_token1] = ACTIONS(1348), + [aux_sym_abstract_modifier_token1] = ACTIONS(1348), + [aux_sym_readonly_modifier_token1] = ACTIONS(1348), + [aux_sym_visibility_modifier_token1] = ACTIONS(1348), + [aux_sym_visibility_modifier_token2] = ACTIONS(1348), + [aux_sym_visibility_modifier_token3] = ACTIONS(1348), + [aux_sym__arrow_function_header_token1] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1346), + [aux_sym_cast_type_token1] = ACTIONS(1348), + [aux_sym_echo_statement_token1] = ACTIONS(1348), + [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(5), + [sym_grit_metavariable] = ACTIONS(1346), }, [496] = { [sym_text_interpolation] = STATE(496), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_name] = ACTIONS(1352), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1350), + [aux_sym_function_static_declaration_token1] = ACTIONS(1352), + [aux_sym_global_declaration_token1] = ACTIONS(1352), + [aux_sym_namespace_definition_token1] = ACTIONS(1352), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1352), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1352), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1352), + [anon_sym_BSLASH] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [aux_sym_trait_declaration_token1] = ACTIONS(1352), + [aux_sym_interface_declaration_token1] = ACTIONS(1352), + [aux_sym_enum_declaration_token1] = ACTIONS(1352), + [aux_sym_enum_case_token1] = ACTIONS(1352), + [aux_sym_class_declaration_token1] = ACTIONS(1352), + [aux_sym_final_modifier_token1] = ACTIONS(1352), + [aux_sym_abstract_modifier_token1] = ACTIONS(1352), + [aux_sym_readonly_modifier_token1] = ACTIONS(1352), + [aux_sym_visibility_modifier_token1] = ACTIONS(1352), + [aux_sym_visibility_modifier_token2] = ACTIONS(1352), + [aux_sym_visibility_modifier_token3] = ACTIONS(1352), + [aux_sym__arrow_function_header_token1] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1350), + [aux_sym_cast_type_token1] = ACTIONS(1352), + [aux_sym_echo_statement_token1] = ACTIONS(1352), + [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(5), + [sym_grit_metavariable] = ACTIONS(1350), }, [497] = { [sym_text_interpolation] = STATE(497), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1324), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_name] = ACTIONS(1356), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1354), + [aux_sym_function_static_declaration_token1] = ACTIONS(1356), + [aux_sym_global_declaration_token1] = ACTIONS(1356), + [aux_sym_namespace_definition_token1] = ACTIONS(1356), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1356), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1356), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [aux_sym_trait_declaration_token1] = ACTIONS(1356), + [aux_sym_interface_declaration_token1] = ACTIONS(1356), + [aux_sym_enum_declaration_token1] = ACTIONS(1356), + [aux_sym_enum_case_token1] = ACTIONS(1356), + [aux_sym_class_declaration_token1] = ACTIONS(1356), + [aux_sym_final_modifier_token1] = ACTIONS(1356), + [aux_sym_abstract_modifier_token1] = ACTIONS(1356), + [aux_sym_readonly_modifier_token1] = ACTIONS(1356), + [aux_sym_visibility_modifier_token1] = ACTIONS(1356), + [aux_sym_visibility_modifier_token2] = ACTIONS(1356), + [aux_sym_visibility_modifier_token3] = ACTIONS(1356), + [aux_sym__arrow_function_header_token1] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [aux_sym_cast_type_token1] = ACTIONS(1356), + [aux_sym_echo_statement_token1] = ACTIONS(1356), + [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(5), + [sym_grit_metavariable] = ACTIONS(1354), }, [498] = { [sym_text_interpolation] = STATE(498), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1328), + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_name] = ACTIONS(1360), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1358), + [aux_sym_function_static_declaration_token1] = ACTIONS(1360), + [aux_sym_global_declaration_token1] = ACTIONS(1360), + [aux_sym_namespace_definition_token1] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1360), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [aux_sym_trait_declaration_token1] = ACTIONS(1360), + [aux_sym_interface_declaration_token1] = ACTIONS(1360), + [aux_sym_enum_declaration_token1] = ACTIONS(1360), + [aux_sym_enum_case_token1] = ACTIONS(1360), + [aux_sym_class_declaration_token1] = ACTIONS(1360), + [aux_sym_final_modifier_token1] = ACTIONS(1360), + [aux_sym_abstract_modifier_token1] = ACTIONS(1360), + [aux_sym_readonly_modifier_token1] = ACTIONS(1360), + [aux_sym_visibility_modifier_token1] = ACTIONS(1360), + [aux_sym_visibility_modifier_token2] = ACTIONS(1360), + [aux_sym_visibility_modifier_token3] = ACTIONS(1360), + [aux_sym__arrow_function_header_token1] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1358), + [aux_sym_cast_type_token1] = ACTIONS(1360), + [aux_sym_echo_statement_token1] = ACTIONS(1360), + [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(5), + [sym_grit_metavariable] = ACTIONS(1358), }, [499] = { [sym_text_interpolation] = STATE(499), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_name] = ACTIONS(1364), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1362), + [aux_sym_function_static_declaration_token1] = ACTIONS(1364), + [aux_sym_global_declaration_token1] = ACTIONS(1364), + [aux_sym_namespace_definition_token1] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1364), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1364), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [aux_sym_trait_declaration_token1] = ACTIONS(1364), + [aux_sym_interface_declaration_token1] = ACTIONS(1364), + [aux_sym_enum_declaration_token1] = ACTIONS(1364), + [aux_sym_enum_case_token1] = ACTIONS(1364), + [aux_sym_class_declaration_token1] = ACTIONS(1364), + [aux_sym_final_modifier_token1] = ACTIONS(1364), + [aux_sym_abstract_modifier_token1] = ACTIONS(1364), + [aux_sym_readonly_modifier_token1] = ACTIONS(1364), + [aux_sym_visibility_modifier_token1] = ACTIONS(1364), + [aux_sym_visibility_modifier_token2] = ACTIONS(1364), + [aux_sym_visibility_modifier_token3] = ACTIONS(1364), + [aux_sym__arrow_function_header_token1] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1362), + [aux_sym_cast_type_token1] = ACTIONS(1364), + [aux_sym_echo_statement_token1] = ACTIONS(1364), + [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(5), + [sym_grit_metavariable] = ACTIONS(1362), }, [500] = { [sym_text_interpolation] = STATE(500), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1336), + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_name] = ACTIONS(1368), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1366), + [aux_sym_function_static_declaration_token1] = ACTIONS(1368), + [aux_sym_global_declaration_token1] = ACTIONS(1368), + [aux_sym_namespace_definition_token1] = ACTIONS(1368), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1368), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1368), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1368), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [aux_sym_trait_declaration_token1] = ACTIONS(1368), + [aux_sym_interface_declaration_token1] = ACTIONS(1368), + [aux_sym_enum_declaration_token1] = ACTIONS(1368), + [aux_sym_enum_case_token1] = ACTIONS(1368), + [aux_sym_class_declaration_token1] = ACTIONS(1368), + [aux_sym_final_modifier_token1] = ACTIONS(1368), + [aux_sym_abstract_modifier_token1] = ACTIONS(1368), + [aux_sym_readonly_modifier_token1] = ACTIONS(1368), + [aux_sym_visibility_modifier_token1] = ACTIONS(1368), + [aux_sym_visibility_modifier_token2] = ACTIONS(1368), + [aux_sym_visibility_modifier_token3] = ACTIONS(1368), + [aux_sym__arrow_function_header_token1] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1366), + [aux_sym_cast_type_token1] = ACTIONS(1368), + [aux_sym_echo_statement_token1] = ACTIONS(1368), + [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(5), + [sym_grit_metavariable] = ACTIONS(1366), }, [501] = { [sym_text_interpolation] = STATE(501), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1340), + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_name] = ACTIONS(1372), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1370), + [aux_sym_function_static_declaration_token1] = ACTIONS(1372), + [aux_sym_global_declaration_token1] = ACTIONS(1372), + [aux_sym_namespace_definition_token1] = ACTIONS(1372), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1372), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1372), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1372), + [anon_sym_BSLASH] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [aux_sym_trait_declaration_token1] = ACTIONS(1372), + [aux_sym_interface_declaration_token1] = ACTIONS(1372), + [aux_sym_enum_declaration_token1] = ACTIONS(1372), + [aux_sym_enum_case_token1] = ACTIONS(1372), + [aux_sym_class_declaration_token1] = ACTIONS(1372), + [aux_sym_final_modifier_token1] = ACTIONS(1372), + [aux_sym_abstract_modifier_token1] = ACTIONS(1372), + [aux_sym_readonly_modifier_token1] = ACTIONS(1372), + [aux_sym_visibility_modifier_token1] = ACTIONS(1372), + [aux_sym_visibility_modifier_token2] = ACTIONS(1372), + [aux_sym_visibility_modifier_token3] = ACTIONS(1372), + [aux_sym__arrow_function_header_token1] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1370), + [aux_sym_cast_type_token1] = ACTIONS(1372), + [aux_sym_echo_statement_token1] = ACTIONS(1372), + [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(5), + [sym_grit_metavariable] = ACTIONS(1370), }, [502] = { [sym_text_interpolation] = STATE(502), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1344), + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_name] = ACTIONS(1376), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1374), + [aux_sym_function_static_declaration_token1] = ACTIONS(1376), + [aux_sym_global_declaration_token1] = ACTIONS(1376), + [aux_sym_namespace_definition_token1] = ACTIONS(1376), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1376), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1376), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1376), + [anon_sym_BSLASH] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [aux_sym_trait_declaration_token1] = ACTIONS(1376), + [aux_sym_interface_declaration_token1] = ACTIONS(1376), + [aux_sym_enum_declaration_token1] = ACTIONS(1376), + [aux_sym_enum_case_token1] = ACTIONS(1376), + [aux_sym_class_declaration_token1] = ACTIONS(1376), + [aux_sym_final_modifier_token1] = ACTIONS(1376), + [aux_sym_abstract_modifier_token1] = ACTIONS(1376), + [aux_sym_readonly_modifier_token1] = ACTIONS(1376), + [aux_sym_visibility_modifier_token1] = ACTIONS(1376), + [aux_sym_visibility_modifier_token2] = ACTIONS(1376), + [aux_sym_visibility_modifier_token3] = ACTIONS(1376), + [aux_sym__arrow_function_header_token1] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1374), + [aux_sym_cast_type_token1] = ACTIONS(1376), + [aux_sym_echo_statement_token1] = ACTIONS(1376), + [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(5), + [sym_grit_metavariable] = ACTIONS(1374), }, [503] = { [sym_text_interpolation] = STATE(503), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1348), + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_name] = ACTIONS(1380), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1378), + [aux_sym_function_static_declaration_token1] = ACTIONS(1380), + [aux_sym_global_declaration_token1] = ACTIONS(1380), + [aux_sym_namespace_definition_token1] = ACTIONS(1380), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1380), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1380), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1380), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [aux_sym_trait_declaration_token1] = ACTIONS(1380), + [aux_sym_interface_declaration_token1] = ACTIONS(1380), + [aux_sym_enum_declaration_token1] = ACTIONS(1380), + [aux_sym_enum_case_token1] = ACTIONS(1380), + [aux_sym_class_declaration_token1] = ACTIONS(1380), + [aux_sym_final_modifier_token1] = ACTIONS(1380), + [aux_sym_abstract_modifier_token1] = ACTIONS(1380), + [aux_sym_readonly_modifier_token1] = ACTIONS(1380), + [aux_sym_visibility_modifier_token1] = ACTIONS(1380), + [aux_sym_visibility_modifier_token2] = ACTIONS(1380), + [aux_sym_visibility_modifier_token3] = ACTIONS(1380), + [aux_sym__arrow_function_header_token1] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1378), + [aux_sym_cast_type_token1] = ACTIONS(1380), + [aux_sym_echo_statement_token1] = ACTIONS(1380), + [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(5), + [sym_grit_metavariable] = ACTIONS(1378), }, [504] = { [sym_text_interpolation] = STATE(504), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1352), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_name] = ACTIONS(1384), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1382), + [aux_sym_function_static_declaration_token1] = ACTIONS(1384), + [aux_sym_global_declaration_token1] = ACTIONS(1384), + [aux_sym_namespace_definition_token1] = ACTIONS(1384), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1384), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1384), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1384), + [anon_sym_BSLASH] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [aux_sym_trait_declaration_token1] = ACTIONS(1384), + [aux_sym_interface_declaration_token1] = ACTIONS(1384), + [aux_sym_enum_declaration_token1] = ACTIONS(1384), + [aux_sym_enum_case_token1] = ACTIONS(1384), + [aux_sym_class_declaration_token1] = ACTIONS(1384), + [aux_sym_final_modifier_token1] = ACTIONS(1384), + [aux_sym_abstract_modifier_token1] = ACTIONS(1384), + [aux_sym_readonly_modifier_token1] = ACTIONS(1384), + [aux_sym_visibility_modifier_token1] = ACTIONS(1384), + [aux_sym_visibility_modifier_token2] = ACTIONS(1384), + [aux_sym_visibility_modifier_token3] = ACTIONS(1384), + [aux_sym__arrow_function_header_token1] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [aux_sym_cast_type_token1] = ACTIONS(1384), + [aux_sym_echo_statement_token1] = ACTIONS(1384), + [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(5), + [sym_grit_metavariable] = ACTIONS(1382), }, [505] = { [sym_text_interpolation] = STATE(505), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_name] = ACTIONS(1388), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1386), + [aux_sym_function_static_declaration_token1] = ACTIONS(1388), + [aux_sym_global_declaration_token1] = ACTIONS(1388), + [aux_sym_namespace_definition_token1] = ACTIONS(1388), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1388), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1388), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1388), + [anon_sym_BSLASH] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [aux_sym_trait_declaration_token1] = ACTIONS(1388), + [aux_sym_interface_declaration_token1] = ACTIONS(1388), + [aux_sym_enum_declaration_token1] = ACTIONS(1388), + [aux_sym_enum_case_token1] = ACTIONS(1388), + [aux_sym_class_declaration_token1] = ACTIONS(1388), + [aux_sym_final_modifier_token1] = ACTIONS(1388), + [aux_sym_abstract_modifier_token1] = ACTIONS(1388), + [aux_sym_readonly_modifier_token1] = ACTIONS(1388), + [aux_sym_visibility_modifier_token1] = ACTIONS(1388), + [aux_sym_visibility_modifier_token2] = ACTIONS(1388), + [aux_sym_visibility_modifier_token3] = ACTIONS(1388), + [aux_sym__arrow_function_header_token1] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1386), + [aux_sym_cast_type_token1] = ACTIONS(1388), + [aux_sym_echo_statement_token1] = ACTIONS(1388), + [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(5), + [sym_grit_metavariable] = ACTIONS(1386), }, [506] = { [sym_text_interpolation] = STATE(506), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1360), + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_name] = ACTIONS(1392), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1390), + [aux_sym_function_static_declaration_token1] = ACTIONS(1392), + [aux_sym_global_declaration_token1] = ACTIONS(1392), + [aux_sym_namespace_definition_token1] = ACTIONS(1392), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1392), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1392), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1392), + [anon_sym_BSLASH] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [aux_sym_trait_declaration_token1] = ACTIONS(1392), + [aux_sym_interface_declaration_token1] = ACTIONS(1392), + [aux_sym_enum_declaration_token1] = ACTIONS(1392), + [aux_sym_enum_case_token1] = ACTIONS(1392), + [aux_sym_class_declaration_token1] = ACTIONS(1392), + [aux_sym_final_modifier_token1] = ACTIONS(1392), + [aux_sym_abstract_modifier_token1] = ACTIONS(1392), + [aux_sym_readonly_modifier_token1] = ACTIONS(1392), + [aux_sym_visibility_modifier_token1] = ACTIONS(1392), + [aux_sym_visibility_modifier_token2] = ACTIONS(1392), + [aux_sym_visibility_modifier_token3] = ACTIONS(1392), + [aux_sym__arrow_function_header_token1] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1390), + [aux_sym_cast_type_token1] = ACTIONS(1392), + [aux_sym_echo_statement_token1] = ACTIONS(1392), + [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(5), + [sym_grit_metavariable] = ACTIONS(1390), }, [507] = { [sym_text_interpolation] = STATE(507), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1364), + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_name] = ACTIONS(1396), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1394), + [aux_sym_function_static_declaration_token1] = ACTIONS(1396), + [aux_sym_global_declaration_token1] = ACTIONS(1396), + [aux_sym_namespace_definition_token1] = ACTIONS(1396), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1396), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1396), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1396), + [anon_sym_BSLASH] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [aux_sym_trait_declaration_token1] = ACTIONS(1396), + [aux_sym_interface_declaration_token1] = ACTIONS(1396), + [aux_sym_enum_declaration_token1] = ACTIONS(1396), + [aux_sym_enum_case_token1] = ACTIONS(1396), + [aux_sym_class_declaration_token1] = ACTIONS(1396), + [aux_sym_final_modifier_token1] = ACTIONS(1396), + [aux_sym_abstract_modifier_token1] = ACTIONS(1396), + [aux_sym_readonly_modifier_token1] = ACTIONS(1396), + [aux_sym_visibility_modifier_token1] = ACTIONS(1396), + [aux_sym_visibility_modifier_token2] = ACTIONS(1396), + [aux_sym_visibility_modifier_token3] = ACTIONS(1396), + [aux_sym__arrow_function_header_token1] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1394), + [aux_sym_cast_type_token1] = ACTIONS(1396), + [aux_sym_echo_statement_token1] = ACTIONS(1396), + [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(5), + [sym_grit_metavariable] = ACTIONS(1394), }, [508] = { [sym_text_interpolation] = STATE(508), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_name] = ACTIONS(1400), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1398), + [aux_sym_function_static_declaration_token1] = ACTIONS(1400), + [aux_sym_global_declaration_token1] = ACTIONS(1400), + [aux_sym_namespace_definition_token1] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1400), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1400), + [anon_sym_BSLASH] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [aux_sym_trait_declaration_token1] = ACTIONS(1400), + [aux_sym_interface_declaration_token1] = ACTIONS(1400), + [aux_sym_enum_declaration_token1] = ACTIONS(1400), + [aux_sym_enum_case_token1] = ACTIONS(1400), + [aux_sym_class_declaration_token1] = ACTIONS(1400), + [aux_sym_final_modifier_token1] = ACTIONS(1400), + [aux_sym_abstract_modifier_token1] = ACTIONS(1400), + [aux_sym_readonly_modifier_token1] = ACTIONS(1400), + [aux_sym_visibility_modifier_token1] = ACTIONS(1400), + [aux_sym_visibility_modifier_token2] = ACTIONS(1400), + [aux_sym_visibility_modifier_token3] = ACTIONS(1400), + [aux_sym__arrow_function_header_token1] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [aux_sym_cast_type_token1] = ACTIONS(1400), + [aux_sym_echo_statement_token1] = ACTIONS(1400), + [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(5), + [sym_grit_metavariable] = ACTIONS(1398), }, [509] = { [sym_text_interpolation] = STATE(509), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1372), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_name] = ACTIONS(1404), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1402), + [aux_sym_function_static_declaration_token1] = ACTIONS(1404), + [aux_sym_global_declaration_token1] = ACTIONS(1404), + [aux_sym_namespace_definition_token1] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1404), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1404), + [anon_sym_BSLASH] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [aux_sym_trait_declaration_token1] = ACTIONS(1404), + [aux_sym_interface_declaration_token1] = ACTIONS(1404), + [aux_sym_enum_declaration_token1] = ACTIONS(1404), + [aux_sym_enum_case_token1] = ACTIONS(1404), + [aux_sym_class_declaration_token1] = ACTIONS(1404), + [aux_sym_final_modifier_token1] = ACTIONS(1404), + [aux_sym_abstract_modifier_token1] = ACTIONS(1404), + [aux_sym_readonly_modifier_token1] = ACTIONS(1404), + [aux_sym_visibility_modifier_token1] = ACTIONS(1404), + [aux_sym_visibility_modifier_token2] = ACTIONS(1404), + [aux_sym_visibility_modifier_token3] = ACTIONS(1404), + [aux_sym__arrow_function_header_token1] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1402), + [aux_sym_cast_type_token1] = ACTIONS(1404), + [aux_sym_echo_statement_token1] = ACTIONS(1404), + [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(5), + [sym_grit_metavariable] = ACTIONS(1402), }, [510] = { [sym_text_interpolation] = STATE(510), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1376), + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_name] = ACTIONS(1408), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1406), + [aux_sym_function_static_declaration_token1] = ACTIONS(1408), + [aux_sym_global_declaration_token1] = ACTIONS(1408), + [aux_sym_namespace_definition_token1] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1408), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1408), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [aux_sym_trait_declaration_token1] = ACTIONS(1408), + [aux_sym_interface_declaration_token1] = ACTIONS(1408), + [aux_sym_enum_declaration_token1] = ACTIONS(1408), + [aux_sym_enum_case_token1] = ACTIONS(1408), + [aux_sym_class_declaration_token1] = ACTIONS(1408), + [aux_sym_final_modifier_token1] = ACTIONS(1408), + [aux_sym_abstract_modifier_token1] = ACTIONS(1408), + [aux_sym_readonly_modifier_token1] = ACTIONS(1408), + [aux_sym_visibility_modifier_token1] = ACTIONS(1408), + [aux_sym_visibility_modifier_token2] = ACTIONS(1408), + [aux_sym_visibility_modifier_token3] = ACTIONS(1408), + [aux_sym__arrow_function_header_token1] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1406), + [aux_sym_cast_type_token1] = ACTIONS(1408), + [aux_sym_echo_statement_token1] = ACTIONS(1408), + [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(5), + [sym_grit_metavariable] = ACTIONS(1406), }, [511] = { [sym_text_interpolation] = STATE(511), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1380), + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_name] = ACTIONS(1412), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1410), + [aux_sym_function_static_declaration_token1] = ACTIONS(1412), + [aux_sym_global_declaration_token1] = ACTIONS(1412), + [aux_sym_namespace_definition_token1] = ACTIONS(1412), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1412), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1412), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [aux_sym_trait_declaration_token1] = ACTIONS(1412), + [aux_sym_interface_declaration_token1] = ACTIONS(1412), + [aux_sym_enum_declaration_token1] = ACTIONS(1412), + [aux_sym_enum_case_token1] = ACTIONS(1412), + [aux_sym_class_declaration_token1] = ACTIONS(1412), + [aux_sym_final_modifier_token1] = ACTIONS(1412), + [aux_sym_abstract_modifier_token1] = ACTIONS(1412), + [aux_sym_readonly_modifier_token1] = ACTIONS(1412), + [aux_sym_visibility_modifier_token1] = ACTIONS(1412), + [aux_sym_visibility_modifier_token2] = ACTIONS(1412), + [aux_sym_visibility_modifier_token3] = ACTIONS(1412), + [aux_sym__arrow_function_header_token1] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1410), + [aux_sym_cast_type_token1] = ACTIONS(1412), + [aux_sym_echo_statement_token1] = ACTIONS(1412), + [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(5), + [sym_grit_metavariable] = ACTIONS(1410), }, [512] = { [sym_text_interpolation] = STATE(512), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1384), + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_name] = ACTIONS(1416), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1414), + [aux_sym_function_static_declaration_token1] = ACTIONS(1416), + [aux_sym_global_declaration_token1] = ACTIONS(1416), + [aux_sym_namespace_definition_token1] = ACTIONS(1416), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1416), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1416), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [aux_sym_trait_declaration_token1] = ACTIONS(1416), + [aux_sym_interface_declaration_token1] = ACTIONS(1416), + [aux_sym_enum_declaration_token1] = ACTIONS(1416), + [aux_sym_enum_case_token1] = ACTIONS(1416), + [aux_sym_class_declaration_token1] = ACTIONS(1416), + [aux_sym_final_modifier_token1] = ACTIONS(1416), + [aux_sym_abstract_modifier_token1] = ACTIONS(1416), + [aux_sym_readonly_modifier_token1] = ACTIONS(1416), + [aux_sym_visibility_modifier_token1] = ACTIONS(1416), + [aux_sym_visibility_modifier_token2] = ACTIONS(1416), + [aux_sym_visibility_modifier_token3] = ACTIONS(1416), + [aux_sym__arrow_function_header_token1] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1414), + [aux_sym_cast_type_token1] = ACTIONS(1416), + [aux_sym_echo_statement_token1] = ACTIONS(1416), + [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(5), + [sym_grit_metavariable] = ACTIONS(1414), }, [513] = { [sym_text_interpolation] = STATE(513), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1388), + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_name] = ACTIONS(1420), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1418), + [aux_sym_function_static_declaration_token1] = ACTIONS(1420), + [aux_sym_global_declaration_token1] = ACTIONS(1420), + [aux_sym_namespace_definition_token1] = ACTIONS(1420), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1420), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1420), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1420), + [anon_sym_BSLASH] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [aux_sym_trait_declaration_token1] = ACTIONS(1420), + [aux_sym_interface_declaration_token1] = ACTIONS(1420), + [aux_sym_enum_declaration_token1] = ACTIONS(1420), + [aux_sym_enum_case_token1] = ACTIONS(1420), + [aux_sym_class_declaration_token1] = ACTIONS(1420), + [aux_sym_final_modifier_token1] = ACTIONS(1420), + [aux_sym_abstract_modifier_token1] = ACTIONS(1420), + [aux_sym_readonly_modifier_token1] = ACTIONS(1420), + [aux_sym_visibility_modifier_token1] = ACTIONS(1420), + [aux_sym_visibility_modifier_token2] = ACTIONS(1420), + [aux_sym_visibility_modifier_token3] = ACTIONS(1420), + [aux_sym__arrow_function_header_token1] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1418), + [aux_sym_cast_type_token1] = ACTIONS(1420), + [aux_sym_echo_statement_token1] = ACTIONS(1420), + [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(5), + [sym_grit_metavariable] = ACTIONS(1418), }, [514] = { [sym_text_interpolation] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_name] = ACTIONS(1104), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1102), - [aux_sym_function_static_declaration_token1] = ACTIONS(1104), - [aux_sym_global_declaration_token1] = ACTIONS(1104), - [aux_sym_namespace_definition_token1] = ACTIONS(1104), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1104), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1104), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1104), - [anon_sym_BSLASH] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_RBRACE] = ACTIONS(1102), - [aux_sym_trait_declaration_token1] = ACTIONS(1104), - [aux_sym_interface_declaration_token1] = ACTIONS(1104), - [aux_sym_enum_declaration_token1] = ACTIONS(1104), - [aux_sym_enum_case_token1] = ACTIONS(1104), - [aux_sym_class_declaration_token1] = ACTIONS(1104), - [aux_sym_final_modifier_token1] = ACTIONS(1104), - [aux_sym_abstract_modifier_token1] = ACTIONS(1104), - [aux_sym_readonly_modifier_token1] = ACTIONS(1104), - [aux_sym_visibility_modifier_token1] = ACTIONS(1104), - [aux_sym_visibility_modifier_token2] = ACTIONS(1104), - [aux_sym_visibility_modifier_token3] = ACTIONS(1104), - [aux_sym__arrow_function_header_token1] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1102), - [aux_sym_cast_type_token1] = ACTIONS(1104), - [aux_sym_echo_statement_token1] = ACTIONS(1104), - [aux_sym_exit_statement_token1] = ACTIONS(1104), - [anon_sym_unset] = ACTIONS(1104), - [aux_sym_declare_statement_token1] = ACTIONS(1104), - [aux_sym_declare_statement_token2] = ACTIONS(1104), - [sym_float] = ACTIONS(1104), - [aux_sym_try_statement_token1] = ACTIONS(1104), - [aux_sym_goto_statement_token1] = ACTIONS(1104), - [aux_sym_continue_statement_token1] = ACTIONS(1104), - [aux_sym_break_statement_token1] = ACTIONS(1104), - [sym_integer] = ACTIONS(1104), - [aux_sym_return_statement_token1] = ACTIONS(1104), - [aux_sym_throw_expression_token1] = ACTIONS(1104), - [aux_sym_while_statement_token1] = ACTIONS(1104), - [aux_sym_while_statement_token2] = ACTIONS(1104), - [aux_sym_do_statement_token1] = ACTIONS(1104), - [aux_sym_for_statement_token1] = ACTIONS(1104), - [aux_sym_for_statement_token2] = ACTIONS(1104), - [aux_sym_foreach_statement_token1] = ACTIONS(1104), - [aux_sym_foreach_statement_token2] = ACTIONS(1104), - [aux_sym_if_statement_token1] = ACTIONS(1104), - [aux_sym_if_statement_token2] = ACTIONS(1104), - [aux_sym_else_if_clause_token1] = ACTIONS(1104), - [aux_sym_else_clause_token1] = ACTIONS(1104), - [aux_sym_match_expression_token1] = ACTIONS(1104), - [aux_sym_match_default_expression_token1] = ACTIONS(1104), - [aux_sym_switch_statement_token1] = ACTIONS(1104), - [aux_sym_switch_block_token1] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1102), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_AT] = ACTIONS(1102), - [aux_sym_clone_expression_token1] = ACTIONS(1104), - [aux_sym_print_intrinsic_token1] = ACTIONS(1104), - [aux_sym_object_creation_expression_token1] = ACTIONS(1104), - [anon_sym_DASH_DASH] = ACTIONS(1102), - [anon_sym_PLUS_PLUS] = ACTIONS(1102), - [aux_sym__list_destructing_token1] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_self] = ACTIONS(1104), - [anon_sym_parent] = ACTIONS(1104), - [aux_sym__argument_name_token1] = ACTIONS(1104), - [aux_sym__argument_name_token2] = ACTIONS(1104), - [anon_sym_POUND_LBRACK] = ACTIONS(1102), - [aux_sym_encapsed_string_token1] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [aux_sym_string_token1] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1102), - [anon_sym_LT_LT_LT] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [aux_sym_yield_expression_token1] = ACTIONS(1104), - [aux_sym_include_expression_token1] = ACTIONS(1104), - [aux_sym_include_once_expression_token1] = ACTIONS(1104), - [aux_sym_require_expression_token1] = ACTIONS(1104), - [aux_sym_require_once_expression_token1] = ACTIONS(1104), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_name] = ACTIONS(1424), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1422), + [aux_sym_function_static_declaration_token1] = ACTIONS(1424), + [aux_sym_global_declaration_token1] = ACTIONS(1424), + [aux_sym_namespace_definition_token1] = ACTIONS(1424), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1424), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1424), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [aux_sym_trait_declaration_token1] = ACTIONS(1424), + [aux_sym_interface_declaration_token1] = ACTIONS(1424), + [aux_sym_enum_declaration_token1] = ACTIONS(1424), + [aux_sym_enum_case_token1] = ACTIONS(1424), + [aux_sym_class_declaration_token1] = ACTIONS(1424), + [aux_sym_final_modifier_token1] = ACTIONS(1424), + [aux_sym_abstract_modifier_token1] = ACTIONS(1424), + [aux_sym_readonly_modifier_token1] = ACTIONS(1424), + [aux_sym_visibility_modifier_token1] = ACTIONS(1424), + [aux_sym_visibility_modifier_token2] = ACTIONS(1424), + [aux_sym_visibility_modifier_token3] = ACTIONS(1424), + [aux_sym__arrow_function_header_token1] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1422), + [aux_sym_cast_type_token1] = ACTIONS(1424), + [aux_sym_echo_statement_token1] = ACTIONS(1424), + [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(5), + [sym_grit_metavariable] = ACTIONS(1422), }, [515] = { [sym_text_interpolation] = STATE(515), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1392), + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_name] = ACTIONS(1428), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1426), + [aux_sym_function_static_declaration_token1] = ACTIONS(1428), + [aux_sym_global_declaration_token1] = ACTIONS(1428), + [aux_sym_namespace_definition_token1] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1428), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [aux_sym_trait_declaration_token1] = ACTIONS(1428), + [aux_sym_interface_declaration_token1] = ACTIONS(1428), + [aux_sym_enum_declaration_token1] = ACTIONS(1428), + [aux_sym_enum_case_token1] = ACTIONS(1428), + [aux_sym_class_declaration_token1] = ACTIONS(1428), + [aux_sym_final_modifier_token1] = ACTIONS(1428), + [aux_sym_abstract_modifier_token1] = ACTIONS(1428), + [aux_sym_readonly_modifier_token1] = ACTIONS(1428), + [aux_sym_visibility_modifier_token1] = ACTIONS(1428), + [aux_sym_visibility_modifier_token2] = ACTIONS(1428), + [aux_sym_visibility_modifier_token3] = ACTIONS(1428), + [aux_sym__arrow_function_header_token1] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1426), + [aux_sym_cast_type_token1] = ACTIONS(1428), + [aux_sym_echo_statement_token1] = ACTIONS(1428), + [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(5), + [sym_grit_metavariable] = ACTIONS(1426), }, [516] = { [sym_text_interpolation] = STATE(516), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_name] = ACTIONS(1432), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1430), + [aux_sym_function_static_declaration_token1] = ACTIONS(1432), + [aux_sym_global_declaration_token1] = ACTIONS(1432), + [aux_sym_namespace_definition_token1] = ACTIONS(1432), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1432), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1432), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1432), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [aux_sym_trait_declaration_token1] = ACTIONS(1432), + [aux_sym_interface_declaration_token1] = ACTIONS(1432), + [aux_sym_enum_declaration_token1] = ACTIONS(1432), + [aux_sym_enum_case_token1] = ACTIONS(1432), + [aux_sym_class_declaration_token1] = ACTIONS(1432), + [aux_sym_final_modifier_token1] = ACTIONS(1432), + [aux_sym_abstract_modifier_token1] = ACTIONS(1432), + [aux_sym_readonly_modifier_token1] = ACTIONS(1432), + [aux_sym_visibility_modifier_token1] = ACTIONS(1432), + [aux_sym_visibility_modifier_token2] = ACTIONS(1432), + [aux_sym_visibility_modifier_token3] = ACTIONS(1432), + [aux_sym__arrow_function_header_token1] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1430), + [aux_sym_cast_type_token1] = ACTIONS(1432), + [aux_sym_echo_statement_token1] = ACTIONS(1432), + [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(5), + [sym_grit_metavariable] = ACTIONS(1430), }, [517] = { [sym_text_interpolation] = STATE(517), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_name] = ACTIONS(1436), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1434), + [aux_sym_function_static_declaration_token1] = ACTIONS(1436), + [aux_sym_global_declaration_token1] = ACTIONS(1436), + [aux_sym_namespace_definition_token1] = ACTIONS(1436), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1436), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1436), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [aux_sym_trait_declaration_token1] = ACTIONS(1436), + [aux_sym_interface_declaration_token1] = ACTIONS(1436), + [aux_sym_enum_declaration_token1] = ACTIONS(1436), + [aux_sym_enum_case_token1] = ACTIONS(1436), + [aux_sym_class_declaration_token1] = ACTIONS(1436), + [aux_sym_final_modifier_token1] = ACTIONS(1436), + [aux_sym_abstract_modifier_token1] = ACTIONS(1436), + [aux_sym_readonly_modifier_token1] = ACTIONS(1436), + [aux_sym_visibility_modifier_token1] = ACTIONS(1436), + [aux_sym_visibility_modifier_token2] = ACTIONS(1436), + [aux_sym_visibility_modifier_token3] = ACTIONS(1436), + [aux_sym__arrow_function_header_token1] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1434), + [aux_sym_cast_type_token1] = ACTIONS(1436), + [aux_sym_echo_statement_token1] = ACTIONS(1436), + [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(5), + [sym_grit_metavariable] = ACTIONS(1434), }, [518] = { [sym_text_interpolation] = STATE(518), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_name] = ACTIONS(1440), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1438), + [aux_sym_function_static_declaration_token1] = ACTIONS(1440), + [aux_sym_global_declaration_token1] = ACTIONS(1440), + [aux_sym_namespace_definition_token1] = ACTIONS(1440), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1440), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1440), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1440), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [aux_sym_trait_declaration_token1] = ACTIONS(1440), + [aux_sym_interface_declaration_token1] = ACTIONS(1440), + [aux_sym_enum_declaration_token1] = ACTIONS(1440), + [aux_sym_enum_case_token1] = ACTIONS(1440), + [aux_sym_class_declaration_token1] = ACTIONS(1440), + [aux_sym_final_modifier_token1] = ACTIONS(1440), + [aux_sym_abstract_modifier_token1] = ACTIONS(1440), + [aux_sym_readonly_modifier_token1] = ACTIONS(1440), + [aux_sym_visibility_modifier_token1] = ACTIONS(1440), + [aux_sym_visibility_modifier_token2] = ACTIONS(1440), + [aux_sym_visibility_modifier_token3] = ACTIONS(1440), + [aux_sym__arrow_function_header_token1] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1438), + [aux_sym_cast_type_token1] = ACTIONS(1440), + [aux_sym_echo_statement_token1] = ACTIONS(1440), + [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(5), + [sym_grit_metavariable] = ACTIONS(1438), }, [519] = { [sym_text_interpolation] = STATE(519), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1408), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_name] = ACTIONS(1444), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1442), + [aux_sym_function_static_declaration_token1] = ACTIONS(1444), + [aux_sym_global_declaration_token1] = ACTIONS(1444), + [aux_sym_namespace_definition_token1] = ACTIONS(1444), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1444), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1444), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [aux_sym_trait_declaration_token1] = ACTIONS(1444), + [aux_sym_interface_declaration_token1] = ACTIONS(1444), + [aux_sym_enum_declaration_token1] = ACTIONS(1444), + [aux_sym_enum_case_token1] = ACTIONS(1444), + [aux_sym_class_declaration_token1] = ACTIONS(1444), + [aux_sym_final_modifier_token1] = ACTIONS(1444), + [aux_sym_abstract_modifier_token1] = ACTIONS(1444), + [aux_sym_readonly_modifier_token1] = ACTIONS(1444), + [aux_sym_visibility_modifier_token1] = ACTIONS(1444), + [aux_sym_visibility_modifier_token2] = ACTIONS(1444), + [aux_sym_visibility_modifier_token3] = ACTIONS(1444), + [aux_sym__arrow_function_header_token1] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1442), + [aux_sym_cast_type_token1] = ACTIONS(1444), + [aux_sym_echo_statement_token1] = ACTIONS(1444), + [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(5), + [sym_grit_metavariable] = ACTIONS(1442), }, [520] = { [sym_text_interpolation] = STATE(520), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1144), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_name] = ACTIONS(1448), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1446), + [aux_sym_function_static_declaration_token1] = ACTIONS(1448), + [aux_sym_global_declaration_token1] = ACTIONS(1448), + [aux_sym_namespace_definition_token1] = ACTIONS(1448), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1448), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1448), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1448), + [anon_sym_BSLASH] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [aux_sym_trait_declaration_token1] = ACTIONS(1448), + [aux_sym_interface_declaration_token1] = ACTIONS(1448), + [aux_sym_enum_declaration_token1] = ACTIONS(1448), + [aux_sym_enum_case_token1] = ACTIONS(1448), + [aux_sym_class_declaration_token1] = ACTIONS(1448), + [aux_sym_final_modifier_token1] = ACTIONS(1448), + [aux_sym_abstract_modifier_token1] = ACTIONS(1448), + [aux_sym_readonly_modifier_token1] = ACTIONS(1448), + [aux_sym_visibility_modifier_token1] = ACTIONS(1448), + [aux_sym_visibility_modifier_token2] = ACTIONS(1448), + [aux_sym_visibility_modifier_token3] = ACTIONS(1448), + [aux_sym__arrow_function_header_token1] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1446), + [aux_sym_cast_type_token1] = ACTIONS(1448), + [aux_sym_echo_statement_token1] = ACTIONS(1448), + [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(5), + [sym_grit_metavariable] = ACTIONS(1446), }, [521] = { [sym_text_interpolation] = STATE(521), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1412), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_name] = ACTIONS(1452), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1450), + [aux_sym_function_static_declaration_token1] = ACTIONS(1452), + [aux_sym_global_declaration_token1] = ACTIONS(1452), + [aux_sym_namespace_definition_token1] = ACTIONS(1452), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1452), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1452), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1452), + [anon_sym_BSLASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [aux_sym_trait_declaration_token1] = ACTIONS(1452), + [aux_sym_interface_declaration_token1] = ACTIONS(1452), + [aux_sym_enum_declaration_token1] = ACTIONS(1452), + [aux_sym_enum_case_token1] = ACTIONS(1452), + [aux_sym_class_declaration_token1] = ACTIONS(1452), + [aux_sym_final_modifier_token1] = ACTIONS(1452), + [aux_sym_abstract_modifier_token1] = ACTIONS(1452), + [aux_sym_readonly_modifier_token1] = ACTIONS(1452), + [aux_sym_visibility_modifier_token1] = ACTIONS(1452), + [aux_sym_visibility_modifier_token2] = ACTIONS(1452), + [aux_sym_visibility_modifier_token3] = ACTIONS(1452), + [aux_sym__arrow_function_header_token1] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1450), + [aux_sym_cast_type_token1] = ACTIONS(1452), + [aux_sym_echo_statement_token1] = ACTIONS(1452), + [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(5), + [sym_grit_metavariable] = ACTIONS(1450), }, [522] = { [sym_text_interpolation] = STATE(522), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_name] = ACTIONS(1122), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1120), + [aux_sym_function_static_declaration_token1] = ACTIONS(1122), + [aux_sym_global_declaration_token1] = ACTIONS(1122), + [aux_sym_namespace_definition_token1] = ACTIONS(1122), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1122), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1122), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1122), + [anon_sym_BSLASH] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [aux_sym_trait_declaration_token1] = ACTIONS(1122), + [aux_sym_interface_declaration_token1] = ACTIONS(1122), + [aux_sym_enum_declaration_token1] = ACTIONS(1122), + [aux_sym_enum_case_token1] = ACTIONS(1122), + [aux_sym_class_declaration_token1] = ACTIONS(1122), + [aux_sym_final_modifier_token1] = ACTIONS(1122), + [aux_sym_abstract_modifier_token1] = ACTIONS(1122), + [aux_sym_readonly_modifier_token1] = ACTIONS(1122), + [aux_sym_visibility_modifier_token1] = ACTIONS(1122), + [aux_sym_visibility_modifier_token2] = ACTIONS(1122), + [aux_sym_visibility_modifier_token3] = ACTIONS(1122), + [aux_sym__arrow_function_header_token1] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1120), + [aux_sym_cast_type_token1] = ACTIONS(1122), + [aux_sym_echo_statement_token1] = ACTIONS(1122), + [aux_sym_exit_statement_token1] = ACTIONS(1122), + [anon_sym_unset] = ACTIONS(1122), + [aux_sym_declare_statement_token1] = ACTIONS(1122), + [aux_sym_declare_statement_token2] = ACTIONS(1122), + [sym_float] = ACTIONS(1122), + [aux_sym_try_statement_token1] = ACTIONS(1122), + [aux_sym_goto_statement_token1] = ACTIONS(1122), + [aux_sym_continue_statement_token1] = ACTIONS(1122), + [aux_sym_break_statement_token1] = ACTIONS(1122), + [sym_integer] = ACTIONS(1122), + [aux_sym_return_statement_token1] = ACTIONS(1122), + [aux_sym_throw_expression_token1] = ACTIONS(1122), + [aux_sym_while_statement_token1] = ACTIONS(1122), + [aux_sym_while_statement_token2] = ACTIONS(1122), + [aux_sym_do_statement_token1] = ACTIONS(1122), + [aux_sym_for_statement_token1] = ACTIONS(1122), + [aux_sym_for_statement_token2] = ACTIONS(1122), + [aux_sym_foreach_statement_token1] = ACTIONS(1122), + [aux_sym_foreach_statement_token2] = ACTIONS(1122), + [aux_sym_if_statement_token1] = ACTIONS(1122), + [aux_sym_if_statement_token2] = ACTIONS(1122), + [aux_sym_else_if_clause_token1] = ACTIONS(1122), + [aux_sym_else_clause_token1] = ACTIONS(1122), + [aux_sym_match_expression_token1] = ACTIONS(1122), + [aux_sym_match_default_expression_token1] = ACTIONS(1122), + [aux_sym_switch_statement_token1] = ACTIONS(1122), + [aux_sym_switch_block_token1] = ACTIONS(1122), + [anon_sym_PLUS] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1120), + [aux_sym_clone_expression_token1] = ACTIONS(1122), + [aux_sym_print_intrinsic_token1] = ACTIONS(1122), + [aux_sym_object_creation_expression_token1] = ACTIONS(1122), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [aux_sym__list_destructing_token1] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_self] = ACTIONS(1122), + [anon_sym_parent] = ACTIONS(1122), + [aux_sym__argument_name_token1] = ACTIONS(1122), + [aux_sym__argument_name_token2] = ACTIONS(1122), + [anon_sym_POUND_LBRACK] = ACTIONS(1120), + [aux_sym_encapsed_string_token1] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [aux_sym_string_token1] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_LT_LT_LT] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [aux_sym_yield_expression_token1] = ACTIONS(1122), + [aux_sym_include_expression_token1] = ACTIONS(1122), + [aux_sym_include_once_expression_token1] = ACTIONS(1122), + [aux_sym_require_expression_token1] = ACTIONS(1122), + [aux_sym_require_once_expression_token1] = ACTIONS(1122), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1120), }, [523] = { [sym_text_interpolation] = STATE(523), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_name] = ACTIONS(1456), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1454), + [aux_sym_function_static_declaration_token1] = ACTIONS(1456), + [aux_sym_global_declaration_token1] = ACTIONS(1456), + [aux_sym_namespace_definition_token1] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1456), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [aux_sym_trait_declaration_token1] = ACTIONS(1456), + [aux_sym_interface_declaration_token1] = ACTIONS(1456), + [aux_sym_enum_declaration_token1] = ACTIONS(1456), + [aux_sym_enum_case_token1] = ACTIONS(1456), + [aux_sym_class_declaration_token1] = ACTIONS(1456), + [aux_sym_final_modifier_token1] = ACTIONS(1456), + [aux_sym_abstract_modifier_token1] = ACTIONS(1456), + [aux_sym_readonly_modifier_token1] = ACTIONS(1456), + [aux_sym_visibility_modifier_token1] = ACTIONS(1456), + [aux_sym_visibility_modifier_token2] = ACTIONS(1456), + [aux_sym_visibility_modifier_token3] = ACTIONS(1456), + [aux_sym__arrow_function_header_token1] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1454), + [aux_sym_cast_type_token1] = ACTIONS(1456), + [aux_sym_echo_statement_token1] = ACTIONS(1456), + [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(5), + [sym_grit_metavariable] = ACTIONS(1454), }, [524] = { [sym_text_interpolation] = STATE(524), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1416), + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_name] = ACTIONS(1460), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1458), + [aux_sym_function_static_declaration_token1] = ACTIONS(1460), + [aux_sym_global_declaration_token1] = ACTIONS(1460), + [aux_sym_namespace_definition_token1] = ACTIONS(1460), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1460), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1460), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1460), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [aux_sym_trait_declaration_token1] = ACTIONS(1460), + [aux_sym_interface_declaration_token1] = ACTIONS(1460), + [aux_sym_enum_declaration_token1] = ACTIONS(1460), + [aux_sym_enum_case_token1] = ACTIONS(1460), + [aux_sym_class_declaration_token1] = ACTIONS(1460), + [aux_sym_final_modifier_token1] = ACTIONS(1460), + [aux_sym_abstract_modifier_token1] = ACTIONS(1460), + [aux_sym_readonly_modifier_token1] = ACTIONS(1460), + [aux_sym_visibility_modifier_token1] = ACTIONS(1460), + [aux_sym_visibility_modifier_token2] = ACTIONS(1460), + [aux_sym_visibility_modifier_token3] = ACTIONS(1460), + [aux_sym__arrow_function_header_token1] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1458), + [aux_sym_cast_type_token1] = ACTIONS(1460), + [aux_sym_echo_statement_token1] = ACTIONS(1460), + [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(5), + [sym_grit_metavariable] = ACTIONS(1458), }, [525] = { [sym_text_interpolation] = STATE(525), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_name] = ACTIONS(1464), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1462), + [aux_sym_function_static_declaration_token1] = ACTIONS(1464), + [aux_sym_global_declaration_token1] = ACTIONS(1464), + [aux_sym_namespace_definition_token1] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1464), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [aux_sym_trait_declaration_token1] = ACTIONS(1464), + [aux_sym_interface_declaration_token1] = ACTIONS(1464), + [aux_sym_enum_declaration_token1] = ACTIONS(1464), + [aux_sym_enum_case_token1] = ACTIONS(1464), + [aux_sym_class_declaration_token1] = ACTIONS(1464), + [aux_sym_final_modifier_token1] = ACTIONS(1464), + [aux_sym_abstract_modifier_token1] = ACTIONS(1464), + [aux_sym_readonly_modifier_token1] = ACTIONS(1464), + [aux_sym_visibility_modifier_token1] = ACTIONS(1464), + [aux_sym_visibility_modifier_token2] = ACTIONS(1464), + [aux_sym_visibility_modifier_token3] = ACTIONS(1464), + [aux_sym__arrow_function_header_token1] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [aux_sym_cast_type_token1] = ACTIONS(1464), + [aux_sym_echo_statement_token1] = ACTIONS(1464), + [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(5), + [sym_grit_metavariable] = ACTIONS(1462), }, [526] = { [sym_text_interpolation] = STATE(526), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_name] = ACTIONS(1244), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1242), + [aux_sym_function_static_declaration_token1] = ACTIONS(1244), + [aux_sym_global_declaration_token1] = ACTIONS(1244), + [aux_sym_namespace_definition_token1] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1244), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1244), + [anon_sym_BSLASH] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [aux_sym_trait_declaration_token1] = ACTIONS(1244), + [aux_sym_interface_declaration_token1] = ACTIONS(1244), + [aux_sym_enum_declaration_token1] = ACTIONS(1244), + [aux_sym_enum_case_token1] = ACTIONS(1244), + [aux_sym_class_declaration_token1] = ACTIONS(1244), + [aux_sym_final_modifier_token1] = ACTIONS(1244), + [aux_sym_abstract_modifier_token1] = ACTIONS(1244), + [aux_sym_readonly_modifier_token1] = ACTIONS(1244), + [aux_sym_visibility_modifier_token1] = ACTIONS(1244), + [aux_sym_visibility_modifier_token2] = ACTIONS(1244), + [aux_sym_visibility_modifier_token3] = ACTIONS(1244), + [aux_sym__arrow_function_header_token1] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1242), + [aux_sym_cast_type_token1] = ACTIONS(1244), + [aux_sym_echo_statement_token1] = ACTIONS(1244), + [aux_sym_exit_statement_token1] = ACTIONS(1244), + [anon_sym_unset] = ACTIONS(1244), + [aux_sym_declare_statement_token1] = ACTIONS(1244), + [aux_sym_declare_statement_token2] = ACTIONS(1244), + [sym_float] = ACTIONS(1244), + [aux_sym_try_statement_token1] = ACTIONS(1244), + [aux_sym_goto_statement_token1] = ACTIONS(1244), + [aux_sym_continue_statement_token1] = ACTIONS(1244), + [aux_sym_break_statement_token1] = ACTIONS(1244), + [sym_integer] = ACTIONS(1244), + [aux_sym_return_statement_token1] = ACTIONS(1244), + [aux_sym_throw_expression_token1] = ACTIONS(1244), + [aux_sym_while_statement_token1] = ACTIONS(1244), + [aux_sym_while_statement_token2] = ACTIONS(1244), + [aux_sym_do_statement_token1] = ACTIONS(1244), + [aux_sym_for_statement_token1] = ACTIONS(1244), + [aux_sym_for_statement_token2] = ACTIONS(1244), + [aux_sym_foreach_statement_token1] = ACTIONS(1244), + [aux_sym_foreach_statement_token2] = ACTIONS(1244), + [aux_sym_if_statement_token1] = ACTIONS(1244), + [aux_sym_if_statement_token2] = ACTIONS(1244), + [aux_sym_else_if_clause_token1] = ACTIONS(1244), + [aux_sym_else_clause_token1] = ACTIONS(1244), + [aux_sym_match_expression_token1] = ACTIONS(1244), + [aux_sym_match_default_expression_token1] = ACTIONS(1244), + [aux_sym_switch_statement_token1] = ACTIONS(1244), + [aux_sym_switch_block_token1] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_AT] = ACTIONS(1242), + [aux_sym_clone_expression_token1] = ACTIONS(1244), + [aux_sym_print_intrinsic_token1] = ACTIONS(1244), + [aux_sym_object_creation_expression_token1] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [aux_sym__list_destructing_token1] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_self] = ACTIONS(1244), + [anon_sym_parent] = ACTIONS(1244), + [aux_sym__argument_name_token1] = ACTIONS(1244), + [aux_sym__argument_name_token2] = ACTIONS(1244), + [anon_sym_POUND_LBRACK] = ACTIONS(1242), + [aux_sym_encapsed_string_token1] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [aux_sym_string_token1] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_LT_LT_LT] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [anon_sym_DOLLAR] = ACTIONS(1242), + [aux_sym_yield_expression_token1] = ACTIONS(1244), + [aux_sym_include_expression_token1] = ACTIONS(1244), + [aux_sym_include_once_expression_token1] = ACTIONS(1244), + [aux_sym_require_expression_token1] = ACTIONS(1244), + [aux_sym_require_once_expression_token1] = ACTIONS(1244), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1242), }, [527] = { [sym_text_interpolation] = STATE(527), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_name] = ACTIONS(1468), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1466), + [aux_sym_function_static_declaration_token1] = ACTIONS(1468), + [aux_sym_global_declaration_token1] = ACTIONS(1468), + [aux_sym_namespace_definition_token1] = ACTIONS(1468), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1468), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1468), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [aux_sym_trait_declaration_token1] = ACTIONS(1468), + [aux_sym_interface_declaration_token1] = ACTIONS(1468), + [aux_sym_enum_declaration_token1] = ACTIONS(1468), + [aux_sym_enum_case_token1] = ACTIONS(1468), + [aux_sym_class_declaration_token1] = ACTIONS(1468), + [aux_sym_final_modifier_token1] = ACTIONS(1468), + [aux_sym_abstract_modifier_token1] = ACTIONS(1468), + [aux_sym_readonly_modifier_token1] = ACTIONS(1468), + [aux_sym_visibility_modifier_token1] = ACTIONS(1468), + [aux_sym_visibility_modifier_token2] = ACTIONS(1468), + [aux_sym_visibility_modifier_token3] = ACTIONS(1468), + [aux_sym__arrow_function_header_token1] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1466), + [aux_sym_cast_type_token1] = ACTIONS(1468), + [aux_sym_echo_statement_token1] = ACTIONS(1468), + [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(5), + [sym_grit_metavariable] = ACTIONS(1466), }, [528] = { [sym_text_interpolation] = STATE(528), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_name] = ACTIONS(1472), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1470), + [aux_sym_function_static_declaration_token1] = ACTIONS(1472), + [aux_sym_global_declaration_token1] = ACTIONS(1472), + [aux_sym_namespace_definition_token1] = ACTIONS(1472), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1472), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1472), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [aux_sym_trait_declaration_token1] = ACTIONS(1472), + [aux_sym_interface_declaration_token1] = ACTIONS(1472), + [aux_sym_enum_declaration_token1] = ACTIONS(1472), + [aux_sym_enum_case_token1] = ACTIONS(1472), + [aux_sym_class_declaration_token1] = ACTIONS(1472), + [aux_sym_final_modifier_token1] = ACTIONS(1472), + [aux_sym_abstract_modifier_token1] = ACTIONS(1472), + [aux_sym_readonly_modifier_token1] = ACTIONS(1472), + [aux_sym_visibility_modifier_token1] = ACTIONS(1472), + [aux_sym_visibility_modifier_token2] = ACTIONS(1472), + [aux_sym_visibility_modifier_token3] = ACTIONS(1472), + [aux_sym__arrow_function_header_token1] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1470), + [aux_sym_cast_type_token1] = ACTIONS(1472), + [aux_sym_echo_statement_token1] = ACTIONS(1472), + [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(5), + [sym_grit_metavariable] = ACTIONS(1470), }, [529] = { [sym_text_interpolation] = STATE(529), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1276), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_name] = ACTIONS(1476), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1474), + [aux_sym_function_static_declaration_token1] = ACTIONS(1476), + [aux_sym_global_declaration_token1] = ACTIONS(1476), + [aux_sym_namespace_definition_token1] = ACTIONS(1476), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1476), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1476), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [aux_sym_trait_declaration_token1] = ACTIONS(1476), + [aux_sym_interface_declaration_token1] = ACTIONS(1476), + [aux_sym_enum_declaration_token1] = ACTIONS(1476), + [aux_sym_enum_case_token1] = ACTIONS(1476), + [aux_sym_class_declaration_token1] = ACTIONS(1476), + [aux_sym_final_modifier_token1] = ACTIONS(1476), + [aux_sym_abstract_modifier_token1] = ACTIONS(1476), + [aux_sym_readonly_modifier_token1] = ACTIONS(1476), + [aux_sym_visibility_modifier_token1] = ACTIONS(1476), + [aux_sym_visibility_modifier_token2] = ACTIONS(1476), + [aux_sym_visibility_modifier_token3] = ACTIONS(1476), + [aux_sym__arrow_function_header_token1] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [aux_sym_cast_type_token1] = ACTIONS(1476), + [aux_sym_echo_statement_token1] = ACTIONS(1476), + [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(5), + [sym_grit_metavariable] = ACTIONS(1474), }, [530] = { [sym_text_interpolation] = STATE(530), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_name] = ACTIONS(1480), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1478), + [aux_sym_function_static_declaration_token1] = ACTIONS(1480), + [aux_sym_global_declaration_token1] = ACTIONS(1480), + [aux_sym_namespace_definition_token1] = ACTIONS(1480), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1480), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1480), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [aux_sym_trait_declaration_token1] = ACTIONS(1480), + [aux_sym_interface_declaration_token1] = ACTIONS(1480), + [aux_sym_enum_declaration_token1] = ACTIONS(1480), + [aux_sym_enum_case_token1] = ACTIONS(1480), + [aux_sym_class_declaration_token1] = ACTIONS(1480), + [aux_sym_final_modifier_token1] = ACTIONS(1480), + [aux_sym_abstract_modifier_token1] = ACTIONS(1480), + [aux_sym_readonly_modifier_token1] = ACTIONS(1480), + [aux_sym_visibility_modifier_token1] = ACTIONS(1480), + [aux_sym_visibility_modifier_token2] = ACTIONS(1480), + [aux_sym_visibility_modifier_token3] = ACTIONS(1480), + [aux_sym__arrow_function_header_token1] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [aux_sym_cast_type_token1] = ACTIONS(1480), + [aux_sym_echo_statement_token1] = ACTIONS(1480), + [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(5), + [sym_grit_metavariable] = ACTIONS(1478), }, [531] = { [sym_text_interpolation] = STATE(531), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_name] = ACTIONS(1484), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1482), + [aux_sym_function_static_declaration_token1] = ACTIONS(1484), + [aux_sym_global_declaration_token1] = ACTIONS(1484), + [aux_sym_namespace_definition_token1] = ACTIONS(1484), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1484), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1484), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [aux_sym_trait_declaration_token1] = ACTIONS(1484), + [aux_sym_interface_declaration_token1] = ACTIONS(1484), + [aux_sym_enum_declaration_token1] = ACTIONS(1484), + [aux_sym_enum_case_token1] = ACTIONS(1484), + [aux_sym_class_declaration_token1] = ACTIONS(1484), + [aux_sym_final_modifier_token1] = ACTIONS(1484), + [aux_sym_abstract_modifier_token1] = ACTIONS(1484), + [aux_sym_readonly_modifier_token1] = ACTIONS(1484), + [aux_sym_visibility_modifier_token1] = ACTIONS(1484), + [aux_sym_visibility_modifier_token2] = ACTIONS(1484), + [aux_sym_visibility_modifier_token3] = ACTIONS(1484), + [aux_sym__arrow_function_header_token1] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1482), + [aux_sym_cast_type_token1] = ACTIONS(1484), + [aux_sym_echo_statement_token1] = ACTIONS(1484), + [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(5), + [sym_grit_metavariable] = ACTIONS(1482), }, [532] = { [sym_text_interpolation] = STATE(532), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_name] = ACTIONS(1488), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [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(5), + [sym_grit_metavariable] = ACTIONS(1486), }, [533] = { [sym_text_interpolation] = STATE(533), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_name] = ACTIONS(1492), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [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(5), + [sym_grit_metavariable] = ACTIONS(1490), }, [534] = { [sym_text_interpolation] = STATE(534), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_name] = ACTIONS(1492), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [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(5), + [sym_grit_metavariable] = ACTIONS(1490), }, [535] = { [sym_text_interpolation] = STATE(535), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_name] = ACTIONS(1496), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [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(5), + [sym_grit_metavariable] = ACTIONS(1494), }, [536] = { [sym_text_interpolation] = STATE(536), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_name] = ACTIONS(1500), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [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(5), + [sym_grit_metavariable] = ACTIONS(1498), }, [537] = { [sym_text_interpolation] = STATE(537), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_name] = ACTIONS(1504), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [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(5), + [sym_grit_metavariable] = ACTIONS(1502), }, [538] = { [sym_text_interpolation] = STATE(538), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_name] = ACTIONS(1508), + [anon_sym_QMARK_GT] = ACTIONS(3), + [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), + [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(5), + [sym_grit_metavariable] = ACTIONS(1506), }, [539] = { [sym_text_interpolation] = STATE(539), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_name] = ACTIONS(1512), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1510), + [aux_sym_function_static_declaration_token1] = ACTIONS(1512), + [aux_sym_global_declaration_token1] = ACTIONS(1512), + [aux_sym_namespace_definition_token1] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [aux_sym_trait_declaration_token1] = ACTIONS(1512), + [aux_sym_interface_declaration_token1] = ACTIONS(1512), + [aux_sym_enum_declaration_token1] = ACTIONS(1512), + [aux_sym_enum_case_token1] = ACTIONS(1512), + [aux_sym_class_declaration_token1] = ACTIONS(1512), + [aux_sym_final_modifier_token1] = ACTIONS(1512), + [aux_sym_abstract_modifier_token1] = ACTIONS(1512), + [aux_sym_readonly_modifier_token1] = ACTIONS(1512), + [aux_sym_visibility_modifier_token1] = ACTIONS(1512), + [aux_sym_visibility_modifier_token2] = ACTIONS(1512), + [aux_sym_visibility_modifier_token3] = ACTIONS(1512), + [aux_sym__arrow_function_header_token1] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1510), + [aux_sym_cast_type_token1] = ACTIONS(1512), + [aux_sym_echo_statement_token1] = ACTIONS(1512), + [aux_sym_exit_statement_token1] = ACTIONS(1512), + [anon_sym_unset] = ACTIONS(1512), + [aux_sym_declare_statement_token1] = ACTIONS(1512), + [aux_sym_declare_statement_token2] = ACTIONS(1512), + [sym_float] = ACTIONS(1512), + [aux_sym_try_statement_token1] = ACTIONS(1512), + [aux_sym_goto_statement_token1] = ACTIONS(1512), + [aux_sym_continue_statement_token1] = ACTIONS(1512), + [aux_sym_break_statement_token1] = ACTIONS(1512), + [sym_integer] = ACTIONS(1512), + [aux_sym_return_statement_token1] = ACTIONS(1512), + [aux_sym_throw_expression_token1] = ACTIONS(1512), + [aux_sym_while_statement_token1] = ACTIONS(1512), + [aux_sym_while_statement_token2] = ACTIONS(1512), + [aux_sym_do_statement_token1] = ACTIONS(1512), + [aux_sym_for_statement_token1] = ACTIONS(1512), + [aux_sym_for_statement_token2] = ACTIONS(1512), + [aux_sym_foreach_statement_token1] = ACTIONS(1512), + [aux_sym_foreach_statement_token2] = ACTIONS(1512), + [aux_sym_if_statement_token1] = ACTIONS(1512), + [aux_sym_if_statement_token2] = ACTIONS(1512), + [aux_sym_else_if_clause_token1] = ACTIONS(1512), + [aux_sym_else_clause_token1] = ACTIONS(1512), + [aux_sym_match_expression_token1] = ACTIONS(1512), + [aux_sym_match_default_expression_token1] = ACTIONS(1512), + [aux_sym_switch_statement_token1] = ACTIONS(1512), + [aux_sym_switch_block_token1] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [aux_sym_clone_expression_token1] = ACTIONS(1512), + [aux_sym_print_intrinsic_token1] = ACTIONS(1512), + [aux_sym_object_creation_expression_token1] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [aux_sym__list_destructing_token1] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_self] = ACTIONS(1512), + [anon_sym_parent] = ACTIONS(1512), + [aux_sym__argument_name_token1] = ACTIONS(1512), + [aux_sym__argument_name_token2] = ACTIONS(1512), + [anon_sym_POUND_LBRACK] = ACTIONS(1510), + [aux_sym_encapsed_string_token1] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_LT_LT_LT] = ACTIONS(1510), + [anon_sym_BQUOTE] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [aux_sym_yield_expression_token1] = ACTIONS(1512), + [aux_sym_include_expression_token1] = ACTIONS(1512), + [aux_sym_include_once_expression_token1] = ACTIONS(1512), + [aux_sym_require_expression_token1] = ACTIONS(1512), + [aux_sym_require_once_expression_token1] = ACTIONS(1512), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1510), }, [540] = { [sym_text_interpolation] = STATE(540), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_name] = ACTIONS(1516), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1514), + [aux_sym_function_static_declaration_token1] = ACTIONS(1516), + [aux_sym_global_declaration_token1] = ACTIONS(1516), + [aux_sym_namespace_definition_token1] = ACTIONS(1516), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1516), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1516), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1516), + [anon_sym_BSLASH] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [aux_sym_trait_declaration_token1] = ACTIONS(1516), + [aux_sym_interface_declaration_token1] = ACTIONS(1516), + [aux_sym_enum_declaration_token1] = ACTIONS(1516), + [aux_sym_enum_case_token1] = ACTIONS(1516), + [aux_sym_class_declaration_token1] = ACTIONS(1516), + [aux_sym_final_modifier_token1] = ACTIONS(1516), + [aux_sym_abstract_modifier_token1] = ACTIONS(1516), + [aux_sym_readonly_modifier_token1] = ACTIONS(1516), + [aux_sym_visibility_modifier_token1] = ACTIONS(1516), + [aux_sym_visibility_modifier_token2] = ACTIONS(1516), + [aux_sym_visibility_modifier_token3] = ACTIONS(1516), + [aux_sym__arrow_function_header_token1] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1514), + [aux_sym_cast_type_token1] = ACTIONS(1516), + [aux_sym_echo_statement_token1] = ACTIONS(1516), + [aux_sym_exit_statement_token1] = ACTIONS(1516), + [anon_sym_unset] = ACTIONS(1516), + [aux_sym_declare_statement_token1] = ACTIONS(1516), + [aux_sym_declare_statement_token2] = ACTIONS(1516), + [sym_float] = ACTIONS(1516), + [aux_sym_try_statement_token1] = ACTIONS(1516), + [aux_sym_goto_statement_token1] = ACTIONS(1516), + [aux_sym_continue_statement_token1] = ACTIONS(1516), + [aux_sym_break_statement_token1] = ACTIONS(1516), + [sym_integer] = ACTIONS(1516), + [aux_sym_return_statement_token1] = ACTIONS(1516), + [aux_sym_throw_expression_token1] = ACTIONS(1516), + [aux_sym_while_statement_token1] = ACTIONS(1516), + [aux_sym_while_statement_token2] = ACTIONS(1516), + [aux_sym_do_statement_token1] = ACTIONS(1516), + [aux_sym_for_statement_token1] = ACTIONS(1516), + [aux_sym_for_statement_token2] = ACTIONS(1516), + [aux_sym_foreach_statement_token1] = ACTIONS(1516), + [aux_sym_foreach_statement_token2] = ACTIONS(1516), + [aux_sym_if_statement_token1] = ACTIONS(1516), + [aux_sym_if_statement_token2] = ACTIONS(1516), + [aux_sym_else_if_clause_token1] = ACTIONS(1516), + [aux_sym_else_clause_token1] = ACTIONS(1516), + [aux_sym_match_expression_token1] = ACTIONS(1516), + [aux_sym_match_default_expression_token1] = ACTIONS(1516), + [aux_sym_switch_statement_token1] = ACTIONS(1516), + [aux_sym_switch_block_token1] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_AT] = ACTIONS(1514), + [aux_sym_clone_expression_token1] = ACTIONS(1516), + [aux_sym_print_intrinsic_token1] = ACTIONS(1516), + [aux_sym_object_creation_expression_token1] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [aux_sym__list_destructing_token1] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_self] = ACTIONS(1516), + [anon_sym_parent] = ACTIONS(1516), + [aux_sym__argument_name_token1] = ACTIONS(1516), + [aux_sym__argument_name_token2] = ACTIONS(1516), + [anon_sym_POUND_LBRACK] = ACTIONS(1514), + [aux_sym_encapsed_string_token1] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [aux_sym_string_token1] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_LT_LT_LT] = ACTIONS(1514), + [anon_sym_BQUOTE] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1514), + [aux_sym_yield_expression_token1] = ACTIONS(1516), + [aux_sym_include_expression_token1] = ACTIONS(1516), + [aux_sym_include_once_expression_token1] = ACTIONS(1516), + [aux_sym_require_expression_token1] = ACTIONS(1516), + [aux_sym_require_once_expression_token1] = ACTIONS(1516), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1514), }, [541] = { [sym_text_interpolation] = STATE(541), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_name] = ACTIONS(1520), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1518), + [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(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [aux_sym_trait_declaration_token1] = ACTIONS(1520), + [aux_sym_interface_declaration_token1] = ACTIONS(1520), + [aux_sym_enum_declaration_token1] = ACTIONS(1520), + [aux_sym_enum_case_token1] = ACTIONS(1520), + [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), + [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(1518), + [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), + [aux_sym_declare_statement_token2] = 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_while_statement_token2] = ACTIONS(1520), + [aux_sym_do_statement_token1] = ACTIONS(1520), + [aux_sym_for_statement_token1] = ACTIONS(1520), + [aux_sym_for_statement_token2] = ACTIONS(1520), + [aux_sym_foreach_statement_token1] = ACTIONS(1520), + [aux_sym_foreach_statement_token2] = ACTIONS(1520), + [aux_sym_if_statement_token1] = ACTIONS(1520), + [aux_sym_if_statement_token2] = ACTIONS(1520), + [aux_sym_else_if_clause_token1] = ACTIONS(1520), + [aux_sym_else_clause_token1] = ACTIONS(1520), + [aux_sym_match_expression_token1] = ACTIONS(1520), + [aux_sym_match_default_expression_token1] = ACTIONS(1520), + [aux_sym_switch_statement_token1] = ACTIONS(1520), + [aux_sym_switch_block_token1] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_AT] = ACTIONS(1518), + [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(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [aux_sym__list_destructing_token1] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1518), + [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(1518), + [aux_sym_encapsed_string_token1] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [aux_sym_string_token1] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_LT_LT_LT] = ACTIONS(1518), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [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), + [sym_grit_metavariable] = ACTIONS(1518), }, [542] = { [sym_text_interpolation] = STATE(542), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_name] = ACTIONS(1512), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1510), + [aux_sym_function_static_declaration_token1] = ACTIONS(1512), + [aux_sym_global_declaration_token1] = ACTIONS(1512), + [aux_sym_namespace_definition_token1] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1512), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [aux_sym_trait_declaration_token1] = ACTIONS(1512), + [aux_sym_interface_declaration_token1] = ACTIONS(1512), + [aux_sym_enum_declaration_token1] = ACTIONS(1512), + [aux_sym_enum_case_token1] = ACTIONS(1512), + [aux_sym_class_declaration_token1] = ACTIONS(1512), + [aux_sym_final_modifier_token1] = ACTIONS(1512), + [aux_sym_abstract_modifier_token1] = ACTIONS(1512), + [aux_sym_readonly_modifier_token1] = ACTIONS(1512), + [aux_sym_visibility_modifier_token1] = ACTIONS(1512), + [aux_sym_visibility_modifier_token2] = ACTIONS(1512), + [aux_sym_visibility_modifier_token3] = ACTIONS(1512), + [aux_sym__arrow_function_header_token1] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1510), + [aux_sym_cast_type_token1] = ACTIONS(1512), + [aux_sym_echo_statement_token1] = ACTIONS(1512), + [aux_sym_exit_statement_token1] = ACTIONS(1512), + [anon_sym_unset] = ACTIONS(1512), + [aux_sym_declare_statement_token1] = ACTIONS(1512), + [aux_sym_declare_statement_token2] = ACTIONS(1512), + [sym_float] = ACTIONS(1512), + [aux_sym_try_statement_token1] = ACTIONS(1512), + [aux_sym_goto_statement_token1] = ACTIONS(1512), + [aux_sym_continue_statement_token1] = ACTIONS(1512), + [aux_sym_break_statement_token1] = ACTIONS(1512), + [sym_integer] = ACTIONS(1512), + [aux_sym_return_statement_token1] = ACTIONS(1512), + [aux_sym_throw_expression_token1] = ACTIONS(1512), + [aux_sym_while_statement_token1] = ACTIONS(1512), + [aux_sym_while_statement_token2] = ACTIONS(1512), + [aux_sym_do_statement_token1] = ACTIONS(1512), + [aux_sym_for_statement_token1] = ACTIONS(1512), + [aux_sym_for_statement_token2] = ACTIONS(1512), + [aux_sym_foreach_statement_token1] = ACTIONS(1512), + [aux_sym_foreach_statement_token2] = ACTIONS(1512), + [aux_sym_if_statement_token1] = ACTIONS(1512), + [aux_sym_if_statement_token2] = ACTIONS(1512), + [aux_sym_else_if_clause_token1] = ACTIONS(1512), + [aux_sym_else_clause_token1] = ACTIONS(1512), + [aux_sym_match_expression_token1] = ACTIONS(1512), + [aux_sym_match_default_expression_token1] = ACTIONS(1512), + [aux_sym_switch_statement_token1] = ACTIONS(1512), + [aux_sym_switch_block_token1] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [aux_sym_clone_expression_token1] = ACTIONS(1512), + [aux_sym_print_intrinsic_token1] = ACTIONS(1512), + [aux_sym_object_creation_expression_token1] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [aux_sym__list_destructing_token1] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_self] = ACTIONS(1512), + [anon_sym_parent] = ACTIONS(1512), + [aux_sym__argument_name_token1] = ACTIONS(1512), + [aux_sym__argument_name_token2] = ACTIONS(1512), + [anon_sym_POUND_LBRACK] = ACTIONS(1510), + [aux_sym_encapsed_string_token1] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_LT_LT_LT] = ACTIONS(1510), + [anon_sym_BQUOTE] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [aux_sym_yield_expression_token1] = ACTIONS(1512), + [aux_sym_include_expression_token1] = ACTIONS(1512), + [aux_sym_include_once_expression_token1] = ACTIONS(1512), + [aux_sym_require_expression_token1] = ACTIONS(1512), + [aux_sym_require_once_expression_token1] = ACTIONS(1512), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1510), }, [543] = { [sym_text_interpolation] = STATE(543), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_name] = ACTIONS(1520), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1518), + [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(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [aux_sym_trait_declaration_token1] = ACTIONS(1520), + [aux_sym_interface_declaration_token1] = ACTIONS(1520), + [aux_sym_enum_declaration_token1] = ACTIONS(1520), + [aux_sym_enum_case_token1] = ACTIONS(1520), + [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), + [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(1518), + [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), + [aux_sym_declare_statement_token2] = 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_while_statement_token2] = ACTIONS(1520), + [aux_sym_do_statement_token1] = ACTIONS(1520), + [aux_sym_for_statement_token1] = ACTIONS(1520), + [aux_sym_for_statement_token2] = ACTIONS(1520), + [aux_sym_foreach_statement_token1] = ACTIONS(1520), + [aux_sym_foreach_statement_token2] = ACTIONS(1520), + [aux_sym_if_statement_token1] = ACTIONS(1520), + [aux_sym_if_statement_token2] = ACTIONS(1520), + [aux_sym_else_if_clause_token1] = ACTIONS(1520), + [aux_sym_else_clause_token1] = ACTIONS(1520), + [aux_sym_match_expression_token1] = ACTIONS(1520), + [aux_sym_match_default_expression_token1] = ACTIONS(1520), + [aux_sym_switch_statement_token1] = ACTIONS(1520), + [aux_sym_switch_block_token1] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_AT] = ACTIONS(1518), + [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(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [aux_sym__list_destructing_token1] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1518), + [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(1518), + [aux_sym_encapsed_string_token1] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [aux_sym_string_token1] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_LT_LT_LT] = ACTIONS(1518), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [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), + [sym_grit_metavariable] = ACTIONS(1518), }, [544] = { [sym_text_interpolation] = STATE(544), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_name] = ACTIONS(1524), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1522), + [aux_sym_function_static_declaration_token1] = ACTIONS(1524), + [aux_sym_global_declaration_token1] = ACTIONS(1524), + [aux_sym_namespace_definition_token1] = ACTIONS(1524), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1524), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1524), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [aux_sym_trait_declaration_token1] = ACTIONS(1524), + [aux_sym_interface_declaration_token1] = ACTIONS(1524), + [aux_sym_enum_declaration_token1] = ACTIONS(1524), + [aux_sym_enum_case_token1] = ACTIONS(1524), + [aux_sym_class_declaration_token1] = ACTIONS(1524), + [aux_sym_final_modifier_token1] = ACTIONS(1524), + [aux_sym_abstract_modifier_token1] = ACTIONS(1524), + [aux_sym_readonly_modifier_token1] = ACTIONS(1524), + [aux_sym_visibility_modifier_token1] = ACTIONS(1524), + [aux_sym_visibility_modifier_token2] = ACTIONS(1524), + [aux_sym_visibility_modifier_token3] = ACTIONS(1524), + [aux_sym__arrow_function_header_token1] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1522), + [aux_sym_cast_type_token1] = ACTIONS(1524), + [aux_sym_echo_statement_token1] = ACTIONS(1524), + [aux_sym_exit_statement_token1] = ACTIONS(1524), + [anon_sym_unset] = ACTIONS(1524), + [aux_sym_declare_statement_token1] = ACTIONS(1524), + [aux_sym_declare_statement_token2] = ACTIONS(1524), + [sym_float] = ACTIONS(1524), + [aux_sym_try_statement_token1] = ACTIONS(1524), + [aux_sym_goto_statement_token1] = ACTIONS(1524), + [aux_sym_continue_statement_token1] = ACTIONS(1524), + [aux_sym_break_statement_token1] = ACTIONS(1524), + [sym_integer] = ACTIONS(1524), + [aux_sym_return_statement_token1] = ACTIONS(1524), + [aux_sym_throw_expression_token1] = ACTIONS(1524), + [aux_sym_while_statement_token1] = ACTIONS(1524), + [aux_sym_while_statement_token2] = ACTIONS(1524), + [aux_sym_do_statement_token1] = ACTIONS(1524), + [aux_sym_for_statement_token1] = ACTIONS(1524), + [aux_sym_for_statement_token2] = ACTIONS(1524), + [aux_sym_foreach_statement_token1] = ACTIONS(1524), + [aux_sym_foreach_statement_token2] = ACTIONS(1524), + [aux_sym_if_statement_token1] = ACTIONS(1524), + [aux_sym_if_statement_token2] = ACTIONS(1524), + [aux_sym_else_if_clause_token1] = ACTIONS(1524), + [aux_sym_else_clause_token1] = ACTIONS(1524), + [aux_sym_match_expression_token1] = ACTIONS(1524), + [aux_sym_match_default_expression_token1] = ACTIONS(1524), + [aux_sym_switch_statement_token1] = ACTIONS(1524), + [aux_sym_switch_block_token1] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [aux_sym_clone_expression_token1] = ACTIONS(1524), + [aux_sym_print_intrinsic_token1] = ACTIONS(1524), + [aux_sym_object_creation_expression_token1] = ACTIONS(1524), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [aux_sym__list_destructing_token1] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_self] = ACTIONS(1524), + [anon_sym_parent] = ACTIONS(1524), + [aux_sym__argument_name_token1] = ACTIONS(1524), + [aux_sym__argument_name_token2] = ACTIONS(1524), + [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(1524), + [aux_sym_include_expression_token1] = ACTIONS(1524), + [aux_sym_include_once_expression_token1] = ACTIONS(1524), + [aux_sym_require_expression_token1] = ACTIONS(1524), + [aux_sym_require_once_expression_token1] = ACTIONS(1524), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1522), }, [545] = { [sym_text_interpolation] = STATE(545), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_name] = ACTIONS(1528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1526), + [aux_sym_function_static_declaration_token1] = ACTIONS(1528), + [aux_sym_global_declaration_token1] = ACTIONS(1528), + [aux_sym_namespace_definition_token1] = ACTIONS(1528), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1528), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1528), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1528), + [anon_sym_BSLASH] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [aux_sym_trait_declaration_token1] = ACTIONS(1528), + [aux_sym_interface_declaration_token1] = ACTIONS(1528), + [aux_sym_enum_declaration_token1] = ACTIONS(1528), + [aux_sym_enum_case_token1] = ACTIONS(1528), + [aux_sym_class_declaration_token1] = ACTIONS(1528), + [aux_sym_final_modifier_token1] = ACTIONS(1528), + [aux_sym_abstract_modifier_token1] = ACTIONS(1528), + [aux_sym_readonly_modifier_token1] = ACTIONS(1528), + [aux_sym_visibility_modifier_token1] = ACTIONS(1528), + [aux_sym_visibility_modifier_token2] = ACTIONS(1528), + [aux_sym_visibility_modifier_token3] = ACTIONS(1528), + [aux_sym__arrow_function_header_token1] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1526), + [aux_sym_cast_type_token1] = ACTIONS(1528), + [aux_sym_echo_statement_token1] = ACTIONS(1528), + [aux_sym_exit_statement_token1] = ACTIONS(1528), + [anon_sym_unset] = ACTIONS(1528), + [aux_sym_declare_statement_token1] = ACTIONS(1528), + [aux_sym_declare_statement_token2] = ACTIONS(1528), + [sym_float] = ACTIONS(1528), + [aux_sym_try_statement_token1] = ACTIONS(1528), + [aux_sym_goto_statement_token1] = ACTIONS(1528), + [aux_sym_continue_statement_token1] = ACTIONS(1528), + [aux_sym_break_statement_token1] = ACTIONS(1528), + [sym_integer] = ACTIONS(1528), + [aux_sym_return_statement_token1] = ACTIONS(1528), + [aux_sym_throw_expression_token1] = ACTIONS(1528), + [aux_sym_while_statement_token1] = ACTIONS(1528), + [aux_sym_while_statement_token2] = ACTIONS(1528), + [aux_sym_do_statement_token1] = ACTIONS(1528), + [aux_sym_for_statement_token1] = ACTIONS(1528), + [aux_sym_for_statement_token2] = ACTIONS(1528), + [aux_sym_foreach_statement_token1] = ACTIONS(1528), + [aux_sym_foreach_statement_token2] = ACTIONS(1528), + [aux_sym_if_statement_token1] = ACTIONS(1528), + [aux_sym_if_statement_token2] = ACTIONS(1528), + [aux_sym_else_if_clause_token1] = ACTIONS(1528), + [aux_sym_else_clause_token1] = ACTIONS(1528), + [aux_sym_match_expression_token1] = ACTIONS(1528), + [aux_sym_match_default_expression_token1] = ACTIONS(1528), + [aux_sym_switch_statement_token1] = ACTIONS(1528), + [aux_sym_switch_block_token1] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [aux_sym_clone_expression_token1] = ACTIONS(1528), + [aux_sym_print_intrinsic_token1] = ACTIONS(1528), + [aux_sym_object_creation_expression_token1] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1526), + [anon_sym_PLUS_PLUS] = ACTIONS(1526), + [aux_sym__list_destructing_token1] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_self] = ACTIONS(1528), + [anon_sym_parent] = ACTIONS(1528), + [aux_sym__argument_name_token1] = ACTIONS(1528), + [aux_sym__argument_name_token2] = ACTIONS(1528), + [anon_sym_POUND_LBRACK] = ACTIONS(1526), + [aux_sym_encapsed_string_token1] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [aux_sym_string_token1] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_LT_LT_LT] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [aux_sym_yield_expression_token1] = ACTIONS(1528), + [aux_sym_include_expression_token1] = ACTIONS(1528), + [aux_sym_include_once_expression_token1] = ACTIONS(1528), + [aux_sym_require_expression_token1] = ACTIONS(1528), + [aux_sym_require_once_expression_token1] = ACTIONS(1528), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1526), }, [546] = { [sym_text_interpolation] = STATE(546), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_name] = ACTIONS(1532), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1530), + [aux_sym_function_static_declaration_token1] = ACTIONS(1532), + [aux_sym_global_declaration_token1] = ACTIONS(1532), + [aux_sym_namespace_definition_token1] = ACTIONS(1532), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1532), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1532), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1532), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [aux_sym_trait_declaration_token1] = ACTIONS(1532), + [aux_sym_interface_declaration_token1] = ACTIONS(1532), + [aux_sym_enum_declaration_token1] = ACTIONS(1532), + [aux_sym_enum_case_token1] = ACTIONS(1532), + [aux_sym_class_declaration_token1] = ACTIONS(1532), + [aux_sym_final_modifier_token1] = ACTIONS(1532), + [aux_sym_abstract_modifier_token1] = ACTIONS(1532), + [aux_sym_readonly_modifier_token1] = ACTIONS(1532), + [aux_sym_visibility_modifier_token1] = ACTIONS(1532), + [aux_sym_visibility_modifier_token2] = ACTIONS(1532), + [aux_sym_visibility_modifier_token3] = ACTIONS(1532), + [aux_sym__arrow_function_header_token1] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1530), + [aux_sym_cast_type_token1] = ACTIONS(1532), + [aux_sym_echo_statement_token1] = ACTIONS(1532), + [aux_sym_exit_statement_token1] = ACTIONS(1532), + [anon_sym_unset] = ACTIONS(1532), + [aux_sym_declare_statement_token1] = ACTIONS(1532), + [aux_sym_declare_statement_token2] = ACTIONS(1532), + [sym_float] = ACTIONS(1532), + [aux_sym_try_statement_token1] = ACTIONS(1532), + [aux_sym_goto_statement_token1] = ACTIONS(1532), + [aux_sym_continue_statement_token1] = ACTIONS(1532), + [aux_sym_break_statement_token1] = ACTIONS(1532), + [sym_integer] = ACTIONS(1532), + [aux_sym_return_statement_token1] = ACTIONS(1532), + [aux_sym_throw_expression_token1] = ACTIONS(1532), + [aux_sym_while_statement_token1] = ACTIONS(1532), + [aux_sym_while_statement_token2] = ACTIONS(1532), + [aux_sym_do_statement_token1] = ACTIONS(1532), + [aux_sym_for_statement_token1] = ACTIONS(1532), + [aux_sym_for_statement_token2] = ACTIONS(1532), + [aux_sym_foreach_statement_token1] = ACTIONS(1532), + [aux_sym_foreach_statement_token2] = ACTIONS(1532), + [aux_sym_if_statement_token1] = ACTIONS(1532), + [aux_sym_if_statement_token2] = ACTIONS(1532), + [aux_sym_else_if_clause_token1] = ACTIONS(1532), + [aux_sym_else_clause_token1] = ACTIONS(1532), + [aux_sym_match_expression_token1] = ACTIONS(1532), + [aux_sym_match_default_expression_token1] = ACTIONS(1532), + [aux_sym_switch_statement_token1] = ACTIONS(1532), + [aux_sym_switch_block_token1] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_AT] = ACTIONS(1530), + [aux_sym_clone_expression_token1] = ACTIONS(1532), + [aux_sym_print_intrinsic_token1] = ACTIONS(1532), + [aux_sym_object_creation_expression_token1] = ACTIONS(1532), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [aux_sym__list_destructing_token1] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_self] = ACTIONS(1532), + [anon_sym_parent] = ACTIONS(1532), + [aux_sym__argument_name_token1] = ACTIONS(1532), + [aux_sym__argument_name_token2] = ACTIONS(1532), + [anon_sym_POUND_LBRACK] = ACTIONS(1530), + [aux_sym_encapsed_string_token1] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [aux_sym_string_token1] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_LT_LT_LT] = ACTIONS(1530), + [anon_sym_BQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1530), + [aux_sym_yield_expression_token1] = ACTIONS(1532), + [aux_sym_include_expression_token1] = ACTIONS(1532), + [aux_sym_include_once_expression_token1] = ACTIONS(1532), + [aux_sym_require_expression_token1] = ACTIONS(1532), + [aux_sym_require_once_expression_token1] = ACTIONS(1532), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1530), }, [547] = { [sym_text_interpolation] = STATE(547), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_name] = ACTIONS(1536), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1534), + [aux_sym_function_static_declaration_token1] = ACTIONS(1536), + [aux_sym_global_declaration_token1] = ACTIONS(1536), + [aux_sym_namespace_definition_token1] = ACTIONS(1536), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1536), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1536), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [aux_sym_trait_declaration_token1] = ACTIONS(1536), + [aux_sym_interface_declaration_token1] = ACTIONS(1536), + [aux_sym_enum_declaration_token1] = ACTIONS(1536), + [aux_sym_enum_case_token1] = ACTIONS(1536), + [aux_sym_class_declaration_token1] = ACTIONS(1536), + [aux_sym_final_modifier_token1] = ACTIONS(1536), + [aux_sym_abstract_modifier_token1] = ACTIONS(1536), + [aux_sym_readonly_modifier_token1] = ACTIONS(1536), + [aux_sym_visibility_modifier_token1] = ACTIONS(1536), + [aux_sym_visibility_modifier_token2] = ACTIONS(1536), + [aux_sym_visibility_modifier_token3] = ACTIONS(1536), + [aux_sym__arrow_function_header_token1] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1534), + [aux_sym_cast_type_token1] = ACTIONS(1536), + [aux_sym_echo_statement_token1] = ACTIONS(1536), + [aux_sym_exit_statement_token1] = ACTIONS(1536), + [anon_sym_unset] = ACTIONS(1536), + [aux_sym_declare_statement_token1] = ACTIONS(1536), + [aux_sym_declare_statement_token2] = ACTIONS(1536), + [sym_float] = ACTIONS(1536), + [aux_sym_try_statement_token1] = ACTIONS(1536), + [aux_sym_goto_statement_token1] = ACTIONS(1536), + [aux_sym_continue_statement_token1] = ACTIONS(1536), + [aux_sym_break_statement_token1] = ACTIONS(1536), + [sym_integer] = ACTIONS(1536), + [aux_sym_return_statement_token1] = ACTIONS(1536), + [aux_sym_throw_expression_token1] = ACTIONS(1536), + [aux_sym_while_statement_token1] = ACTIONS(1536), + [aux_sym_while_statement_token2] = ACTIONS(1536), + [aux_sym_do_statement_token1] = ACTIONS(1536), + [aux_sym_for_statement_token1] = ACTIONS(1536), + [aux_sym_for_statement_token2] = ACTIONS(1536), + [aux_sym_foreach_statement_token1] = ACTIONS(1536), + [aux_sym_foreach_statement_token2] = ACTIONS(1536), + [aux_sym_if_statement_token1] = ACTIONS(1536), + [aux_sym_if_statement_token2] = ACTIONS(1536), + [aux_sym_else_if_clause_token1] = ACTIONS(1536), + [aux_sym_else_clause_token1] = ACTIONS(1536), + [aux_sym_match_expression_token1] = ACTIONS(1536), + [aux_sym_match_default_expression_token1] = ACTIONS(1536), + [aux_sym_switch_statement_token1] = ACTIONS(1536), + [aux_sym_switch_block_token1] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), + [aux_sym_clone_expression_token1] = ACTIONS(1536), + [aux_sym_print_intrinsic_token1] = ACTIONS(1536), + [aux_sym_object_creation_expression_token1] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1534), + [anon_sym_PLUS_PLUS] = ACTIONS(1534), + [aux_sym__list_destructing_token1] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_self] = ACTIONS(1536), + [anon_sym_parent] = ACTIONS(1536), + [aux_sym__argument_name_token1] = ACTIONS(1536), + [aux_sym__argument_name_token2] = ACTIONS(1536), + [anon_sym_POUND_LBRACK] = ACTIONS(1534), + [aux_sym_encapsed_string_token1] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [aux_sym_string_token1] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_LT_LT_LT] = ACTIONS(1534), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [aux_sym_yield_expression_token1] = ACTIONS(1536), + [aux_sym_include_expression_token1] = ACTIONS(1536), + [aux_sym_include_once_expression_token1] = ACTIONS(1536), + [aux_sym_require_expression_token1] = ACTIONS(1536), + [aux_sym_require_once_expression_token1] = ACTIONS(1536), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1534), }, [548] = { [sym_text_interpolation] = STATE(548), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_name] = ACTIONS(1540), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1538), + [aux_sym_function_static_declaration_token1] = ACTIONS(1540), + [aux_sym_global_declaration_token1] = ACTIONS(1540), + [aux_sym_namespace_definition_token1] = ACTIONS(1540), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1540), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1540), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [aux_sym_trait_declaration_token1] = ACTIONS(1540), + [aux_sym_interface_declaration_token1] = ACTIONS(1540), + [aux_sym_enum_declaration_token1] = ACTIONS(1540), + [aux_sym_enum_case_token1] = ACTIONS(1540), + [aux_sym_class_declaration_token1] = ACTIONS(1540), + [aux_sym_final_modifier_token1] = ACTIONS(1540), + [aux_sym_abstract_modifier_token1] = ACTIONS(1540), + [aux_sym_readonly_modifier_token1] = ACTIONS(1540), + [aux_sym_visibility_modifier_token1] = ACTIONS(1540), + [aux_sym_visibility_modifier_token2] = ACTIONS(1540), + [aux_sym_visibility_modifier_token3] = ACTIONS(1540), + [aux_sym__arrow_function_header_token1] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1538), + [aux_sym_cast_type_token1] = ACTIONS(1540), + [aux_sym_echo_statement_token1] = ACTIONS(1540), + [aux_sym_exit_statement_token1] = ACTIONS(1540), + [anon_sym_unset] = ACTIONS(1540), + [aux_sym_declare_statement_token1] = ACTIONS(1540), + [aux_sym_declare_statement_token2] = ACTIONS(1540), + [sym_float] = ACTIONS(1540), + [aux_sym_try_statement_token1] = ACTIONS(1540), + [aux_sym_goto_statement_token1] = ACTIONS(1540), + [aux_sym_continue_statement_token1] = ACTIONS(1540), + [aux_sym_break_statement_token1] = ACTIONS(1540), + [sym_integer] = ACTIONS(1540), + [aux_sym_return_statement_token1] = ACTIONS(1540), + [aux_sym_throw_expression_token1] = ACTIONS(1540), + [aux_sym_while_statement_token1] = ACTIONS(1540), + [aux_sym_while_statement_token2] = ACTIONS(1540), + [aux_sym_do_statement_token1] = ACTIONS(1540), + [aux_sym_for_statement_token1] = ACTIONS(1540), + [aux_sym_for_statement_token2] = ACTIONS(1540), + [aux_sym_foreach_statement_token1] = ACTIONS(1540), + [aux_sym_foreach_statement_token2] = ACTIONS(1540), + [aux_sym_if_statement_token1] = ACTIONS(1540), + [aux_sym_if_statement_token2] = ACTIONS(1540), + [aux_sym_else_if_clause_token1] = ACTIONS(1540), + [aux_sym_else_clause_token1] = ACTIONS(1540), + [aux_sym_match_expression_token1] = ACTIONS(1540), + [aux_sym_match_default_expression_token1] = ACTIONS(1540), + [aux_sym_switch_statement_token1] = ACTIONS(1540), + [aux_sym_switch_block_token1] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [aux_sym_clone_expression_token1] = ACTIONS(1540), + [aux_sym_print_intrinsic_token1] = ACTIONS(1540), + [aux_sym_object_creation_expression_token1] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_PLUS_PLUS] = ACTIONS(1538), + [aux_sym__list_destructing_token1] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_self] = ACTIONS(1540), + [anon_sym_parent] = ACTIONS(1540), + [aux_sym__argument_name_token1] = ACTIONS(1540), + [aux_sym__argument_name_token2] = ACTIONS(1540), + [anon_sym_POUND_LBRACK] = ACTIONS(1538), + [aux_sym_encapsed_string_token1] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [aux_sym_string_token1] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_LT_LT_LT] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [aux_sym_yield_expression_token1] = ACTIONS(1540), + [aux_sym_include_expression_token1] = ACTIONS(1540), + [aux_sym_include_once_expression_token1] = ACTIONS(1540), + [aux_sym_require_expression_token1] = ACTIONS(1540), + [aux_sym_require_once_expression_token1] = ACTIONS(1540), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1538), }, [549] = { [sym_text_interpolation] = STATE(549), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1504), + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_name] = ACTIONS(1544), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1542), + [aux_sym_function_static_declaration_token1] = ACTIONS(1544), + [aux_sym_global_declaration_token1] = ACTIONS(1544), + [aux_sym_namespace_definition_token1] = ACTIONS(1544), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1544), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1544), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1544), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [aux_sym_trait_declaration_token1] = ACTIONS(1544), + [aux_sym_interface_declaration_token1] = ACTIONS(1544), + [aux_sym_enum_declaration_token1] = ACTIONS(1544), + [aux_sym_enum_case_token1] = ACTIONS(1544), + [aux_sym_class_declaration_token1] = ACTIONS(1544), + [aux_sym_final_modifier_token1] = ACTIONS(1544), + [aux_sym_abstract_modifier_token1] = ACTIONS(1544), + [aux_sym_readonly_modifier_token1] = ACTIONS(1544), + [aux_sym_visibility_modifier_token1] = ACTIONS(1544), + [aux_sym_visibility_modifier_token2] = ACTIONS(1544), + [aux_sym_visibility_modifier_token3] = ACTIONS(1544), + [aux_sym__arrow_function_header_token1] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1542), + [aux_sym_cast_type_token1] = ACTIONS(1544), + [aux_sym_echo_statement_token1] = ACTIONS(1544), + [aux_sym_exit_statement_token1] = ACTIONS(1544), + [anon_sym_unset] = ACTIONS(1544), + [aux_sym_declare_statement_token1] = ACTIONS(1544), + [aux_sym_declare_statement_token2] = ACTIONS(1544), + [sym_float] = ACTIONS(1544), + [aux_sym_try_statement_token1] = ACTIONS(1544), + [aux_sym_goto_statement_token1] = ACTIONS(1544), + [aux_sym_continue_statement_token1] = ACTIONS(1544), + [aux_sym_break_statement_token1] = ACTIONS(1544), + [sym_integer] = ACTIONS(1544), + [aux_sym_return_statement_token1] = ACTIONS(1544), + [aux_sym_throw_expression_token1] = ACTIONS(1544), + [aux_sym_while_statement_token1] = ACTIONS(1544), + [aux_sym_while_statement_token2] = ACTIONS(1544), + [aux_sym_do_statement_token1] = ACTIONS(1544), + [aux_sym_for_statement_token1] = ACTIONS(1544), + [aux_sym_for_statement_token2] = ACTIONS(1544), + [aux_sym_foreach_statement_token1] = ACTIONS(1544), + [aux_sym_foreach_statement_token2] = ACTIONS(1544), + [aux_sym_if_statement_token1] = ACTIONS(1544), + [aux_sym_if_statement_token2] = ACTIONS(1544), + [aux_sym_else_if_clause_token1] = ACTIONS(1544), + [aux_sym_else_clause_token1] = ACTIONS(1544), + [aux_sym_match_expression_token1] = ACTIONS(1544), + [aux_sym_match_default_expression_token1] = ACTIONS(1544), + [aux_sym_switch_statement_token1] = ACTIONS(1544), + [aux_sym_switch_block_token1] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [aux_sym_clone_expression_token1] = ACTIONS(1544), + [aux_sym_print_intrinsic_token1] = ACTIONS(1544), + [aux_sym_object_creation_expression_token1] = ACTIONS(1544), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [aux_sym__list_destructing_token1] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_self] = ACTIONS(1544), + [anon_sym_parent] = ACTIONS(1544), + [aux_sym__argument_name_token1] = ACTIONS(1544), + [aux_sym__argument_name_token2] = ACTIONS(1544), + [anon_sym_POUND_LBRACK] = ACTIONS(1542), + [aux_sym_encapsed_string_token1] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [aux_sym_string_token1] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_LT_LT_LT] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [aux_sym_yield_expression_token1] = ACTIONS(1544), + [aux_sym_include_expression_token1] = ACTIONS(1544), + [aux_sym_include_once_expression_token1] = ACTIONS(1544), + [aux_sym_require_expression_token1] = ACTIONS(1544), + [aux_sym_require_once_expression_token1] = ACTIONS(1544), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1542), }, [550] = { [sym_text_interpolation] = STATE(550), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1508), + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_name] = ACTIONS(1548), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1546), + [aux_sym_function_static_declaration_token1] = ACTIONS(1548), + [aux_sym_global_declaration_token1] = ACTIONS(1548), + [aux_sym_namespace_definition_token1] = ACTIONS(1548), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1548), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1548), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [aux_sym_trait_declaration_token1] = ACTIONS(1548), + [aux_sym_interface_declaration_token1] = ACTIONS(1548), + [aux_sym_enum_declaration_token1] = ACTIONS(1548), + [aux_sym_enum_case_token1] = ACTIONS(1548), + [aux_sym_class_declaration_token1] = ACTIONS(1548), + [aux_sym_final_modifier_token1] = ACTIONS(1548), + [aux_sym_abstract_modifier_token1] = ACTIONS(1548), + [aux_sym_readonly_modifier_token1] = ACTIONS(1548), + [aux_sym_visibility_modifier_token1] = ACTIONS(1548), + [aux_sym_visibility_modifier_token2] = ACTIONS(1548), + [aux_sym_visibility_modifier_token3] = ACTIONS(1548), + [aux_sym__arrow_function_header_token1] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [aux_sym_cast_type_token1] = ACTIONS(1548), + [aux_sym_echo_statement_token1] = ACTIONS(1548), + [aux_sym_exit_statement_token1] = ACTIONS(1548), + [anon_sym_unset] = ACTIONS(1548), + [aux_sym_declare_statement_token1] = ACTIONS(1548), + [aux_sym_declare_statement_token2] = ACTIONS(1548), + [sym_float] = ACTIONS(1548), + [aux_sym_try_statement_token1] = ACTIONS(1548), + [aux_sym_goto_statement_token1] = ACTIONS(1548), + [aux_sym_continue_statement_token1] = ACTIONS(1548), + [aux_sym_break_statement_token1] = ACTIONS(1548), + [sym_integer] = ACTIONS(1548), + [aux_sym_return_statement_token1] = ACTIONS(1548), + [aux_sym_throw_expression_token1] = ACTIONS(1548), + [aux_sym_while_statement_token1] = ACTIONS(1548), + [aux_sym_while_statement_token2] = ACTIONS(1548), + [aux_sym_do_statement_token1] = ACTIONS(1548), + [aux_sym_for_statement_token1] = ACTIONS(1548), + [aux_sym_for_statement_token2] = ACTIONS(1548), + [aux_sym_foreach_statement_token1] = ACTIONS(1548), + [aux_sym_foreach_statement_token2] = ACTIONS(1548), + [aux_sym_if_statement_token1] = ACTIONS(1548), + [aux_sym_if_statement_token2] = ACTIONS(1548), + [aux_sym_else_if_clause_token1] = ACTIONS(1548), + [aux_sym_else_clause_token1] = ACTIONS(1548), + [aux_sym_match_expression_token1] = ACTIONS(1548), + [aux_sym_match_default_expression_token1] = ACTIONS(1548), + [aux_sym_switch_statement_token1] = ACTIONS(1548), + [aux_sym_switch_block_token1] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), + [aux_sym_clone_expression_token1] = ACTIONS(1548), + [aux_sym_print_intrinsic_token1] = ACTIONS(1548), + [aux_sym_object_creation_expression_token1] = ACTIONS(1548), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [aux_sym__list_destructing_token1] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_self] = ACTIONS(1548), + [anon_sym_parent] = ACTIONS(1548), + [aux_sym__argument_name_token1] = ACTIONS(1548), + [aux_sym__argument_name_token2] = ACTIONS(1548), + [anon_sym_POUND_LBRACK] = ACTIONS(1546), + [aux_sym_encapsed_string_token1] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [aux_sym_string_token1] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_LT_LT_LT] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [aux_sym_yield_expression_token1] = ACTIONS(1548), + [aux_sym_include_expression_token1] = ACTIONS(1548), + [aux_sym_include_once_expression_token1] = ACTIONS(1548), + [aux_sym_require_expression_token1] = ACTIONS(1548), + [aux_sym_require_once_expression_token1] = ACTIONS(1548), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1546), }, [551] = { [sym_text_interpolation] = STATE(551), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1512), + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_name] = ACTIONS(1552), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1550), + [aux_sym_function_static_declaration_token1] = ACTIONS(1552), + [aux_sym_global_declaration_token1] = ACTIONS(1552), + [aux_sym_namespace_definition_token1] = ACTIONS(1552), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1552), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1552), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [aux_sym_trait_declaration_token1] = ACTIONS(1552), + [aux_sym_interface_declaration_token1] = ACTIONS(1552), + [aux_sym_enum_declaration_token1] = ACTIONS(1552), + [aux_sym_enum_case_token1] = ACTIONS(1552), + [aux_sym_class_declaration_token1] = ACTIONS(1552), + [aux_sym_final_modifier_token1] = ACTIONS(1552), + [aux_sym_abstract_modifier_token1] = ACTIONS(1552), + [aux_sym_readonly_modifier_token1] = ACTIONS(1552), + [aux_sym_visibility_modifier_token1] = ACTIONS(1552), + [aux_sym_visibility_modifier_token2] = ACTIONS(1552), + [aux_sym_visibility_modifier_token3] = ACTIONS(1552), + [aux_sym__arrow_function_header_token1] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1550), + [aux_sym_cast_type_token1] = ACTIONS(1552), + [aux_sym_echo_statement_token1] = ACTIONS(1552), + [aux_sym_exit_statement_token1] = ACTIONS(1552), + [anon_sym_unset] = ACTIONS(1552), + [aux_sym_declare_statement_token1] = ACTIONS(1552), + [aux_sym_declare_statement_token2] = ACTIONS(1552), + [sym_float] = ACTIONS(1552), + [aux_sym_try_statement_token1] = ACTIONS(1552), + [aux_sym_goto_statement_token1] = ACTIONS(1552), + [aux_sym_continue_statement_token1] = ACTIONS(1552), + [aux_sym_break_statement_token1] = ACTIONS(1552), + [sym_integer] = ACTIONS(1552), + [aux_sym_return_statement_token1] = ACTIONS(1552), + [aux_sym_throw_expression_token1] = ACTIONS(1552), + [aux_sym_while_statement_token1] = ACTIONS(1552), + [aux_sym_while_statement_token2] = ACTIONS(1552), + [aux_sym_do_statement_token1] = ACTIONS(1552), + [aux_sym_for_statement_token1] = ACTIONS(1552), + [aux_sym_for_statement_token2] = ACTIONS(1552), + [aux_sym_foreach_statement_token1] = ACTIONS(1552), + [aux_sym_foreach_statement_token2] = ACTIONS(1552), + [aux_sym_if_statement_token1] = ACTIONS(1552), + [aux_sym_if_statement_token2] = ACTIONS(1552), + [aux_sym_else_if_clause_token1] = ACTIONS(1552), + [aux_sym_else_clause_token1] = ACTIONS(1552), + [aux_sym_match_expression_token1] = ACTIONS(1552), + [aux_sym_match_default_expression_token1] = ACTIONS(1552), + [aux_sym_switch_statement_token1] = ACTIONS(1552), + [aux_sym_switch_block_token1] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [aux_sym_clone_expression_token1] = ACTIONS(1552), + [aux_sym_print_intrinsic_token1] = ACTIONS(1552), + [aux_sym_object_creation_expression_token1] = ACTIONS(1552), + [anon_sym_DASH_DASH] = ACTIONS(1550), + [anon_sym_PLUS_PLUS] = ACTIONS(1550), + [aux_sym__list_destructing_token1] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_self] = ACTIONS(1552), + [anon_sym_parent] = ACTIONS(1552), + [aux_sym__argument_name_token1] = ACTIONS(1552), + [aux_sym__argument_name_token2] = ACTIONS(1552), + [anon_sym_POUND_LBRACK] = ACTIONS(1550), + [aux_sym_encapsed_string_token1] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [aux_sym_string_token1] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_LT_LT_LT] = ACTIONS(1550), + [anon_sym_BQUOTE] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1550), + [aux_sym_yield_expression_token1] = ACTIONS(1552), + [aux_sym_include_expression_token1] = ACTIONS(1552), + [aux_sym_include_once_expression_token1] = ACTIONS(1552), + [aux_sym_require_expression_token1] = ACTIONS(1552), + [aux_sym_require_once_expression_token1] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1550), }, [552] = { [sym_text_interpolation] = STATE(552), - [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), - [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), - [sym_grit_metavariable] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(1554), + [sym_name] = ACTIONS(1556), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1554), + [aux_sym_function_static_declaration_token1] = ACTIONS(1556), + [aux_sym_global_declaration_token1] = ACTIONS(1556), + [aux_sym_namespace_definition_token1] = ACTIONS(1556), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1556), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1556), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [aux_sym_trait_declaration_token1] = ACTIONS(1556), + [aux_sym_interface_declaration_token1] = ACTIONS(1556), + [aux_sym_enum_declaration_token1] = ACTIONS(1556), + [aux_sym_enum_case_token1] = ACTIONS(1556), + [aux_sym_class_declaration_token1] = ACTIONS(1556), + [aux_sym_final_modifier_token1] = ACTIONS(1556), + [aux_sym_abstract_modifier_token1] = ACTIONS(1556), + [aux_sym_readonly_modifier_token1] = ACTIONS(1556), + [aux_sym_visibility_modifier_token1] = ACTIONS(1556), + [aux_sym_visibility_modifier_token2] = ACTIONS(1556), + [aux_sym_visibility_modifier_token3] = ACTIONS(1556), + [aux_sym__arrow_function_header_token1] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1554), + [aux_sym_cast_type_token1] = ACTIONS(1556), + [aux_sym_echo_statement_token1] = ACTIONS(1556), + [aux_sym_exit_statement_token1] = ACTIONS(1556), + [anon_sym_unset] = ACTIONS(1556), + [aux_sym_declare_statement_token1] = ACTIONS(1556), + [aux_sym_declare_statement_token2] = ACTIONS(1556), + [sym_float] = ACTIONS(1556), + [aux_sym_try_statement_token1] = ACTIONS(1556), + [aux_sym_goto_statement_token1] = ACTIONS(1556), + [aux_sym_continue_statement_token1] = ACTIONS(1556), + [aux_sym_break_statement_token1] = ACTIONS(1556), + [sym_integer] = ACTIONS(1556), + [aux_sym_return_statement_token1] = ACTIONS(1556), + [aux_sym_throw_expression_token1] = ACTIONS(1556), + [aux_sym_while_statement_token1] = ACTIONS(1556), + [aux_sym_while_statement_token2] = ACTIONS(1556), + [aux_sym_do_statement_token1] = ACTIONS(1556), + [aux_sym_for_statement_token1] = ACTIONS(1556), + [aux_sym_for_statement_token2] = ACTIONS(1556), + [aux_sym_foreach_statement_token1] = ACTIONS(1556), + [aux_sym_foreach_statement_token2] = ACTIONS(1556), + [aux_sym_if_statement_token1] = ACTIONS(1556), + [aux_sym_if_statement_token2] = ACTIONS(1556), + [aux_sym_else_if_clause_token1] = ACTIONS(1556), + [aux_sym_else_clause_token1] = ACTIONS(1556), + [aux_sym_match_expression_token1] = ACTIONS(1556), + [aux_sym_match_default_expression_token1] = ACTIONS(1556), + [aux_sym_switch_statement_token1] = ACTIONS(1556), + [aux_sym_switch_block_token1] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_AT] = ACTIONS(1554), + [aux_sym_clone_expression_token1] = ACTIONS(1556), + [aux_sym_print_intrinsic_token1] = ACTIONS(1556), + [aux_sym_object_creation_expression_token1] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1554), + [anon_sym_PLUS_PLUS] = ACTIONS(1554), + [aux_sym__list_destructing_token1] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_self] = ACTIONS(1556), + [anon_sym_parent] = ACTIONS(1556), + [aux_sym__argument_name_token1] = ACTIONS(1556), + [aux_sym__argument_name_token2] = ACTIONS(1556), + [anon_sym_POUND_LBRACK] = ACTIONS(1554), + [aux_sym_encapsed_string_token1] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [aux_sym_string_token1] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_LT_LT_LT] = ACTIONS(1554), + [anon_sym_BQUOTE] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [aux_sym_yield_expression_token1] = ACTIONS(1556), + [aux_sym_include_expression_token1] = ACTIONS(1556), + [aux_sym_include_once_expression_token1] = ACTIONS(1556), + [aux_sym_require_expression_token1] = ACTIONS(1556), + [aux_sym_require_once_expression_token1] = ACTIONS(1556), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1554), }, [553] = { [sym_text_interpolation] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_name] = ACTIONS(1522), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1520), - [aux_sym_function_static_declaration_token1] = ACTIONS(1522), - [aux_sym_global_declaration_token1] = ACTIONS(1522), - [aux_sym_namespace_definition_token1] = ACTIONS(1522), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1522), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1522), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1522), - [anon_sym_BSLASH] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [aux_sym_trait_declaration_token1] = ACTIONS(1522), - [aux_sym_interface_declaration_token1] = ACTIONS(1522), - [aux_sym_enum_declaration_token1] = ACTIONS(1522), - [aux_sym_enum_case_token1] = ACTIONS(1522), - [aux_sym_class_declaration_token1] = ACTIONS(1522), - [aux_sym_final_modifier_token1] = ACTIONS(1522), - [aux_sym_abstract_modifier_token1] = ACTIONS(1522), - [aux_sym_readonly_modifier_token1] = ACTIONS(1522), - [aux_sym_visibility_modifier_token1] = ACTIONS(1522), - [aux_sym_visibility_modifier_token2] = ACTIONS(1522), - [aux_sym_visibility_modifier_token3] = ACTIONS(1522), - [aux_sym__arrow_function_header_token1] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1520), - [aux_sym_cast_type_token1] = ACTIONS(1522), - [aux_sym_echo_statement_token1] = ACTIONS(1522), - [aux_sym_exit_statement_token1] = ACTIONS(1522), - [anon_sym_unset] = ACTIONS(1522), - [aux_sym_declare_statement_token1] = ACTIONS(1522), - [aux_sym_declare_statement_token2] = ACTIONS(1522), - [sym_float] = ACTIONS(1522), - [aux_sym_try_statement_token1] = ACTIONS(1522), - [aux_sym_goto_statement_token1] = ACTIONS(1522), - [aux_sym_continue_statement_token1] = ACTIONS(1522), - [aux_sym_break_statement_token1] = ACTIONS(1522), - [sym_integer] = ACTIONS(1522), - [aux_sym_return_statement_token1] = ACTIONS(1522), - [aux_sym_throw_expression_token1] = ACTIONS(1522), - [aux_sym_while_statement_token1] = ACTIONS(1522), - [aux_sym_while_statement_token2] = ACTIONS(1522), - [aux_sym_do_statement_token1] = ACTIONS(1522), - [aux_sym_for_statement_token1] = ACTIONS(1522), - [aux_sym_for_statement_token2] = ACTIONS(1522), - [aux_sym_foreach_statement_token1] = ACTIONS(1522), - [aux_sym_foreach_statement_token2] = ACTIONS(1522), - [aux_sym_if_statement_token1] = ACTIONS(1522), - [aux_sym_if_statement_token2] = ACTIONS(1522), - [aux_sym_else_if_clause_token1] = ACTIONS(1522), - [aux_sym_else_clause_token1] = ACTIONS(1522), - [aux_sym_match_expression_token1] = ACTIONS(1522), - [aux_sym_match_default_expression_token1] = ACTIONS(1522), - [aux_sym_switch_statement_token1] = ACTIONS(1522), - [aux_sym_switch_block_token1] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [aux_sym_clone_expression_token1] = ACTIONS(1522), - [aux_sym_print_intrinsic_token1] = ACTIONS(1522), - [aux_sym_object_creation_expression_token1] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1520), - [aux_sym__list_destructing_token1] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_self] = ACTIONS(1522), - [anon_sym_parent] = ACTIONS(1522), - [aux_sym__argument_name_token1] = ACTIONS(1522), - [aux_sym__argument_name_token2] = ACTIONS(1522), - [anon_sym_POUND_LBRACK] = ACTIONS(1520), - [aux_sym_encapsed_string_token1] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [aux_sym_string_token1] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_LT_LT_LT] = ACTIONS(1520), - [anon_sym_BQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1520), - [aux_sym_yield_expression_token1] = ACTIONS(1522), - [aux_sym_include_expression_token1] = ACTIONS(1522), - [aux_sym_include_once_expression_token1] = ACTIONS(1522), - [aux_sym_require_expression_token1] = ACTIONS(1522), - [aux_sym_require_once_expression_token1] = ACTIONS(1522), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1520), + [ts_builtin_sym_end] = ACTIONS(1558), + [sym_name] = ACTIONS(1560), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1558), + [aux_sym_function_static_declaration_token1] = ACTIONS(1560), + [aux_sym_global_declaration_token1] = ACTIONS(1560), + [aux_sym_namespace_definition_token1] = ACTIONS(1560), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1560), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1560), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [aux_sym_trait_declaration_token1] = ACTIONS(1560), + [aux_sym_interface_declaration_token1] = ACTIONS(1560), + [aux_sym_enum_declaration_token1] = ACTIONS(1560), + [aux_sym_enum_case_token1] = ACTIONS(1560), + [aux_sym_class_declaration_token1] = ACTIONS(1560), + [aux_sym_final_modifier_token1] = ACTIONS(1560), + [aux_sym_abstract_modifier_token1] = ACTIONS(1560), + [aux_sym_readonly_modifier_token1] = ACTIONS(1560), + [aux_sym_visibility_modifier_token1] = ACTIONS(1560), + [aux_sym_visibility_modifier_token2] = ACTIONS(1560), + [aux_sym_visibility_modifier_token3] = ACTIONS(1560), + [aux_sym__arrow_function_header_token1] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1558), + [aux_sym_cast_type_token1] = ACTIONS(1560), + [aux_sym_echo_statement_token1] = ACTIONS(1560), + [aux_sym_exit_statement_token1] = ACTIONS(1560), + [anon_sym_unset] = ACTIONS(1560), + [aux_sym_declare_statement_token1] = ACTIONS(1560), + [aux_sym_declare_statement_token2] = ACTIONS(1560), + [sym_float] = ACTIONS(1560), + [aux_sym_try_statement_token1] = ACTIONS(1560), + [aux_sym_goto_statement_token1] = ACTIONS(1560), + [aux_sym_continue_statement_token1] = ACTIONS(1560), + [aux_sym_break_statement_token1] = ACTIONS(1560), + [sym_integer] = ACTIONS(1560), + [aux_sym_return_statement_token1] = ACTIONS(1560), + [aux_sym_throw_expression_token1] = ACTIONS(1560), + [aux_sym_while_statement_token1] = ACTIONS(1560), + [aux_sym_while_statement_token2] = ACTIONS(1560), + [aux_sym_do_statement_token1] = ACTIONS(1560), + [aux_sym_for_statement_token1] = ACTIONS(1560), + [aux_sym_for_statement_token2] = ACTIONS(1560), + [aux_sym_foreach_statement_token1] = ACTIONS(1560), + [aux_sym_foreach_statement_token2] = ACTIONS(1560), + [aux_sym_if_statement_token1] = ACTIONS(1560), + [aux_sym_if_statement_token2] = ACTIONS(1560), + [aux_sym_else_if_clause_token1] = ACTIONS(1560), + [aux_sym_else_clause_token1] = ACTIONS(1560), + [aux_sym_match_expression_token1] = ACTIONS(1560), + [aux_sym_match_default_expression_token1] = ACTIONS(1560), + [aux_sym_switch_statement_token1] = ACTIONS(1560), + [aux_sym_switch_block_token1] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(1558), + [aux_sym_clone_expression_token1] = ACTIONS(1560), + [aux_sym_print_intrinsic_token1] = ACTIONS(1560), + [aux_sym_object_creation_expression_token1] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_PLUS_PLUS] = ACTIONS(1558), + [aux_sym__list_destructing_token1] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_self] = ACTIONS(1560), + [anon_sym_parent] = ACTIONS(1560), + [aux_sym__argument_name_token1] = ACTIONS(1560), + [aux_sym__argument_name_token2] = ACTIONS(1560), + [anon_sym_POUND_LBRACK] = ACTIONS(1558), + [aux_sym_encapsed_string_token1] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [aux_sym_string_token1] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_LT_LT_LT] = ACTIONS(1558), + [anon_sym_BQUOTE] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [aux_sym_yield_expression_token1] = ACTIONS(1560), + [aux_sym_include_expression_token1] = ACTIONS(1560), + [aux_sym_include_once_expression_token1] = ACTIONS(1560), + [aux_sym_require_expression_token1] = ACTIONS(1560), + [aux_sym_require_once_expression_token1] = ACTIONS(1560), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1558), }, [554] = { [sym_text_interpolation] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_name] = ACTIONS(1526), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1524), - [aux_sym_function_static_declaration_token1] = ACTIONS(1526), - [aux_sym_global_declaration_token1] = ACTIONS(1526), - [aux_sym_namespace_definition_token1] = ACTIONS(1526), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1526), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1526), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1526), - [anon_sym_BSLASH] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [aux_sym_trait_declaration_token1] = ACTIONS(1526), - [aux_sym_interface_declaration_token1] = ACTIONS(1526), - [aux_sym_enum_declaration_token1] = ACTIONS(1526), - [aux_sym_enum_case_token1] = ACTIONS(1526), - [aux_sym_class_declaration_token1] = ACTIONS(1526), - [aux_sym_final_modifier_token1] = ACTIONS(1526), - [aux_sym_abstract_modifier_token1] = ACTIONS(1526), - [aux_sym_readonly_modifier_token1] = ACTIONS(1526), - [aux_sym_visibility_modifier_token1] = ACTIONS(1526), - [aux_sym_visibility_modifier_token2] = ACTIONS(1526), - [aux_sym_visibility_modifier_token3] = ACTIONS(1526), - [aux_sym__arrow_function_header_token1] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1524), - [aux_sym_cast_type_token1] = ACTIONS(1526), - [aux_sym_echo_statement_token1] = ACTIONS(1526), - [aux_sym_exit_statement_token1] = ACTIONS(1526), - [anon_sym_unset] = ACTIONS(1526), - [aux_sym_declare_statement_token1] = ACTIONS(1526), - [aux_sym_declare_statement_token2] = ACTIONS(1526), - [sym_float] = ACTIONS(1526), - [aux_sym_try_statement_token1] = ACTIONS(1526), - [aux_sym_goto_statement_token1] = ACTIONS(1526), - [aux_sym_continue_statement_token1] = ACTIONS(1526), - [aux_sym_break_statement_token1] = ACTIONS(1526), - [sym_integer] = ACTIONS(1526), - [aux_sym_return_statement_token1] = ACTIONS(1526), - [aux_sym_throw_expression_token1] = ACTIONS(1526), - [aux_sym_while_statement_token1] = ACTIONS(1526), - [aux_sym_while_statement_token2] = ACTIONS(1526), - [aux_sym_do_statement_token1] = ACTIONS(1526), - [aux_sym_for_statement_token1] = ACTIONS(1526), - [aux_sym_for_statement_token2] = ACTIONS(1526), - [aux_sym_foreach_statement_token1] = ACTIONS(1526), - [aux_sym_foreach_statement_token2] = ACTIONS(1526), - [aux_sym_if_statement_token1] = ACTIONS(1526), - [aux_sym_if_statement_token2] = ACTIONS(1526), - [aux_sym_else_if_clause_token1] = ACTIONS(1526), - [aux_sym_else_clause_token1] = ACTIONS(1526), - [aux_sym_match_expression_token1] = ACTIONS(1526), - [aux_sym_match_default_expression_token1] = ACTIONS(1526), - [aux_sym_switch_statement_token1] = ACTIONS(1526), - [aux_sym_switch_block_token1] = ACTIONS(1526), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [aux_sym_clone_expression_token1] = ACTIONS(1526), - [aux_sym_print_intrinsic_token1] = ACTIONS(1526), - [aux_sym_object_creation_expression_token1] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1524), - [aux_sym__list_destructing_token1] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_self] = ACTIONS(1526), - [anon_sym_parent] = ACTIONS(1526), - [aux_sym__argument_name_token1] = ACTIONS(1526), - [aux_sym__argument_name_token2] = ACTIONS(1526), - [anon_sym_POUND_LBRACK] = ACTIONS(1524), - [aux_sym_encapsed_string_token1] = ACTIONS(1524), - [anon_sym_DQUOTE] = ACTIONS(1524), - [aux_sym_string_token1] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_LT_LT_LT] = ACTIONS(1524), - [anon_sym_BQUOTE] = ACTIONS(1524), - [anon_sym_DOLLAR] = ACTIONS(1524), - [aux_sym_yield_expression_token1] = ACTIONS(1526), - [aux_sym_include_expression_token1] = ACTIONS(1526), - [aux_sym_include_once_expression_token1] = ACTIONS(1526), - [aux_sym_require_expression_token1] = ACTIONS(1526), - [aux_sym_require_once_expression_token1] = ACTIONS(1526), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_name] = ACTIONS(1564), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1562), + [aux_sym_function_static_declaration_token1] = ACTIONS(1564), + [aux_sym_global_declaration_token1] = ACTIONS(1564), + [aux_sym_namespace_definition_token1] = ACTIONS(1564), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1564), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1564), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1564), + [anon_sym_BSLASH] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [aux_sym_trait_declaration_token1] = ACTIONS(1564), + [aux_sym_interface_declaration_token1] = ACTIONS(1564), + [aux_sym_enum_declaration_token1] = ACTIONS(1564), + [aux_sym_enum_case_token1] = ACTIONS(1564), + [aux_sym_class_declaration_token1] = ACTIONS(1564), + [aux_sym_final_modifier_token1] = ACTIONS(1564), + [aux_sym_abstract_modifier_token1] = ACTIONS(1564), + [aux_sym_readonly_modifier_token1] = ACTIONS(1564), + [aux_sym_visibility_modifier_token1] = ACTIONS(1564), + [aux_sym_visibility_modifier_token2] = ACTIONS(1564), + [aux_sym_visibility_modifier_token3] = ACTIONS(1564), + [aux_sym__arrow_function_header_token1] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1562), + [aux_sym_cast_type_token1] = ACTIONS(1564), + [aux_sym_echo_statement_token1] = ACTIONS(1564), + [aux_sym_exit_statement_token1] = ACTIONS(1564), + [anon_sym_unset] = ACTIONS(1564), + [aux_sym_declare_statement_token1] = ACTIONS(1564), + [aux_sym_declare_statement_token2] = ACTIONS(1564), + [sym_float] = ACTIONS(1564), + [aux_sym_try_statement_token1] = ACTIONS(1564), + [aux_sym_goto_statement_token1] = ACTIONS(1564), + [aux_sym_continue_statement_token1] = ACTIONS(1564), + [aux_sym_break_statement_token1] = ACTIONS(1564), + [sym_integer] = ACTIONS(1564), + [aux_sym_return_statement_token1] = ACTIONS(1564), + [aux_sym_throw_expression_token1] = ACTIONS(1564), + [aux_sym_while_statement_token1] = ACTIONS(1564), + [aux_sym_while_statement_token2] = ACTIONS(1564), + [aux_sym_do_statement_token1] = ACTIONS(1564), + [aux_sym_for_statement_token1] = ACTIONS(1564), + [aux_sym_for_statement_token2] = ACTIONS(1564), + [aux_sym_foreach_statement_token1] = ACTIONS(1564), + [aux_sym_foreach_statement_token2] = ACTIONS(1564), + [aux_sym_if_statement_token1] = ACTIONS(1564), + [aux_sym_if_statement_token2] = ACTIONS(1564), + [aux_sym_else_if_clause_token1] = ACTIONS(1564), + [aux_sym_else_clause_token1] = ACTIONS(1564), + [aux_sym_match_expression_token1] = ACTIONS(1564), + [aux_sym_match_default_expression_token1] = ACTIONS(1564), + [aux_sym_switch_statement_token1] = ACTIONS(1564), + [aux_sym_switch_block_token1] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1562), + [aux_sym_clone_expression_token1] = ACTIONS(1564), + [aux_sym_print_intrinsic_token1] = ACTIONS(1564), + [aux_sym_object_creation_expression_token1] = ACTIONS(1564), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [aux_sym__list_destructing_token1] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_self] = ACTIONS(1564), + [anon_sym_parent] = ACTIONS(1564), + [aux_sym__argument_name_token1] = ACTIONS(1564), + [aux_sym__argument_name_token2] = ACTIONS(1564), + [anon_sym_POUND_LBRACK] = ACTIONS(1562), + [aux_sym_encapsed_string_token1] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [aux_sym_string_token1] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_LT_LT_LT] = ACTIONS(1562), + [anon_sym_BQUOTE] = ACTIONS(1562), + [anon_sym_DOLLAR] = ACTIONS(1562), + [aux_sym_yield_expression_token1] = ACTIONS(1564), + [aux_sym_include_expression_token1] = ACTIONS(1564), + [aux_sym_include_once_expression_token1] = ACTIONS(1564), + [aux_sym_require_expression_token1] = ACTIONS(1564), + [aux_sym_require_once_expression_token1] = ACTIONS(1564), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1562), }, [555] = { [sym_text_interpolation] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_name] = ACTIONS(1530), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1528), - [aux_sym_function_static_declaration_token1] = ACTIONS(1530), - [aux_sym_global_declaration_token1] = ACTIONS(1530), - [aux_sym_namespace_definition_token1] = ACTIONS(1530), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1530), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1530), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1530), - [anon_sym_BSLASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [aux_sym_trait_declaration_token1] = ACTIONS(1530), - [aux_sym_interface_declaration_token1] = ACTIONS(1530), - [aux_sym_enum_declaration_token1] = ACTIONS(1530), - [aux_sym_enum_case_token1] = ACTIONS(1530), - [aux_sym_class_declaration_token1] = ACTIONS(1530), - [aux_sym_final_modifier_token1] = ACTIONS(1530), - [aux_sym_abstract_modifier_token1] = ACTIONS(1530), - [aux_sym_readonly_modifier_token1] = ACTIONS(1530), - [aux_sym_visibility_modifier_token1] = ACTIONS(1530), - [aux_sym_visibility_modifier_token2] = ACTIONS(1530), - [aux_sym_visibility_modifier_token3] = ACTIONS(1530), - [aux_sym__arrow_function_header_token1] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [aux_sym_cast_type_token1] = ACTIONS(1530), - [aux_sym_echo_statement_token1] = ACTIONS(1530), - [aux_sym_exit_statement_token1] = ACTIONS(1530), - [anon_sym_unset] = ACTIONS(1530), - [aux_sym_declare_statement_token1] = ACTIONS(1530), - [aux_sym_declare_statement_token2] = ACTIONS(1530), - [sym_float] = ACTIONS(1530), - [aux_sym_try_statement_token1] = ACTIONS(1530), - [aux_sym_goto_statement_token1] = ACTIONS(1530), - [aux_sym_continue_statement_token1] = ACTIONS(1530), - [aux_sym_break_statement_token1] = ACTIONS(1530), - [sym_integer] = ACTIONS(1530), - [aux_sym_return_statement_token1] = ACTIONS(1530), - [aux_sym_throw_expression_token1] = ACTIONS(1530), - [aux_sym_while_statement_token1] = ACTIONS(1530), - [aux_sym_while_statement_token2] = ACTIONS(1530), - [aux_sym_do_statement_token1] = ACTIONS(1530), - [aux_sym_for_statement_token1] = ACTIONS(1530), - [aux_sym_for_statement_token2] = ACTIONS(1530), - [aux_sym_foreach_statement_token1] = ACTIONS(1530), - [aux_sym_foreach_statement_token2] = ACTIONS(1530), - [aux_sym_if_statement_token1] = ACTIONS(1530), - [aux_sym_if_statement_token2] = ACTIONS(1530), - [aux_sym_else_if_clause_token1] = ACTIONS(1530), - [aux_sym_else_clause_token1] = ACTIONS(1530), - [aux_sym_match_expression_token1] = ACTIONS(1530), - [aux_sym_match_default_expression_token1] = ACTIONS(1530), - [aux_sym_switch_statement_token1] = ACTIONS(1530), - [aux_sym_switch_block_token1] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [aux_sym_clone_expression_token1] = ACTIONS(1530), - [aux_sym_print_intrinsic_token1] = ACTIONS(1530), - [aux_sym_object_creation_expression_token1] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [aux_sym__list_destructing_token1] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_self] = ACTIONS(1530), - [anon_sym_parent] = ACTIONS(1530), - [aux_sym__argument_name_token1] = ACTIONS(1530), - [aux_sym__argument_name_token2] = ACTIONS(1530), - [anon_sym_POUND_LBRACK] = ACTIONS(1528), - [aux_sym_encapsed_string_token1] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [aux_sym_string_token1] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_LT_LT_LT] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [aux_sym_yield_expression_token1] = ACTIONS(1530), - [aux_sym_include_expression_token1] = ACTIONS(1530), - [aux_sym_include_once_expression_token1] = ACTIONS(1530), - [aux_sym_require_expression_token1] = ACTIONS(1530), - [aux_sym_require_once_expression_token1] = ACTIONS(1530), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_name] = ACTIONS(1568), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1566), + [aux_sym_function_static_declaration_token1] = ACTIONS(1568), + [aux_sym_global_declaration_token1] = ACTIONS(1568), + [aux_sym_namespace_definition_token1] = ACTIONS(1568), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1568), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1568), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1568), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [aux_sym_trait_declaration_token1] = ACTIONS(1568), + [aux_sym_interface_declaration_token1] = ACTIONS(1568), + [aux_sym_enum_declaration_token1] = ACTIONS(1568), + [aux_sym_enum_case_token1] = ACTIONS(1568), + [aux_sym_class_declaration_token1] = ACTIONS(1568), + [aux_sym_final_modifier_token1] = ACTIONS(1568), + [aux_sym_abstract_modifier_token1] = ACTIONS(1568), + [aux_sym_readonly_modifier_token1] = ACTIONS(1568), + [aux_sym_visibility_modifier_token1] = ACTIONS(1568), + [aux_sym_visibility_modifier_token2] = ACTIONS(1568), + [aux_sym_visibility_modifier_token3] = ACTIONS(1568), + [aux_sym__arrow_function_header_token1] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1566), + [aux_sym_cast_type_token1] = ACTIONS(1568), + [aux_sym_echo_statement_token1] = ACTIONS(1568), + [aux_sym_exit_statement_token1] = ACTIONS(1568), + [anon_sym_unset] = ACTIONS(1568), + [aux_sym_declare_statement_token1] = ACTIONS(1568), + [aux_sym_declare_statement_token2] = ACTIONS(1568), + [sym_float] = ACTIONS(1568), + [aux_sym_try_statement_token1] = ACTIONS(1568), + [aux_sym_goto_statement_token1] = ACTIONS(1568), + [aux_sym_continue_statement_token1] = ACTIONS(1568), + [aux_sym_break_statement_token1] = ACTIONS(1568), + [sym_integer] = ACTIONS(1568), + [aux_sym_return_statement_token1] = ACTIONS(1568), + [aux_sym_throw_expression_token1] = ACTIONS(1568), + [aux_sym_while_statement_token1] = ACTIONS(1568), + [aux_sym_while_statement_token2] = ACTIONS(1568), + [aux_sym_do_statement_token1] = ACTIONS(1568), + [aux_sym_for_statement_token1] = ACTIONS(1568), + [aux_sym_for_statement_token2] = ACTIONS(1568), + [aux_sym_foreach_statement_token1] = ACTIONS(1568), + [aux_sym_foreach_statement_token2] = ACTIONS(1568), + [aux_sym_if_statement_token1] = ACTIONS(1568), + [aux_sym_if_statement_token2] = ACTIONS(1568), + [aux_sym_else_if_clause_token1] = ACTIONS(1568), + [aux_sym_else_clause_token1] = ACTIONS(1568), + [aux_sym_match_expression_token1] = ACTIONS(1568), + [aux_sym_match_default_expression_token1] = ACTIONS(1568), + [aux_sym_switch_statement_token1] = ACTIONS(1568), + [aux_sym_switch_block_token1] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_AT] = ACTIONS(1566), + [aux_sym_clone_expression_token1] = ACTIONS(1568), + [aux_sym_print_intrinsic_token1] = ACTIONS(1568), + [aux_sym_object_creation_expression_token1] = ACTIONS(1568), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [aux_sym__list_destructing_token1] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_self] = ACTIONS(1568), + [anon_sym_parent] = ACTIONS(1568), + [aux_sym__argument_name_token1] = ACTIONS(1568), + [aux_sym__argument_name_token2] = ACTIONS(1568), + [anon_sym_POUND_LBRACK] = ACTIONS(1566), + [aux_sym_encapsed_string_token1] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [aux_sym_string_token1] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_LT_LT_LT] = ACTIONS(1566), + [anon_sym_BQUOTE] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1566), + [aux_sym_yield_expression_token1] = ACTIONS(1568), + [aux_sym_include_expression_token1] = ACTIONS(1568), + [aux_sym_include_once_expression_token1] = ACTIONS(1568), + [aux_sym_require_expression_token1] = ACTIONS(1568), + [aux_sym_require_once_expression_token1] = ACTIONS(1568), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1566), }, [556] = { [sym_text_interpolation] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_name] = ACTIONS(1534), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1532), - [aux_sym_function_static_declaration_token1] = ACTIONS(1534), - [aux_sym_global_declaration_token1] = ACTIONS(1534), - [aux_sym_namespace_definition_token1] = ACTIONS(1534), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1534), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1534), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1534), - [anon_sym_BSLASH] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [aux_sym_trait_declaration_token1] = ACTIONS(1534), - [aux_sym_interface_declaration_token1] = ACTIONS(1534), - [aux_sym_enum_declaration_token1] = ACTIONS(1534), - [aux_sym_enum_case_token1] = ACTIONS(1534), - [aux_sym_class_declaration_token1] = ACTIONS(1534), - [aux_sym_final_modifier_token1] = ACTIONS(1534), - [aux_sym_abstract_modifier_token1] = ACTIONS(1534), - [aux_sym_readonly_modifier_token1] = ACTIONS(1534), - [aux_sym_visibility_modifier_token1] = ACTIONS(1534), - [aux_sym_visibility_modifier_token2] = ACTIONS(1534), - [aux_sym_visibility_modifier_token3] = ACTIONS(1534), - [aux_sym__arrow_function_header_token1] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1532), - [aux_sym_cast_type_token1] = ACTIONS(1534), - [aux_sym_echo_statement_token1] = ACTIONS(1534), - [aux_sym_exit_statement_token1] = ACTIONS(1534), - [anon_sym_unset] = ACTIONS(1534), - [aux_sym_declare_statement_token1] = ACTIONS(1534), - [aux_sym_declare_statement_token2] = ACTIONS(1534), - [sym_float] = ACTIONS(1534), - [aux_sym_try_statement_token1] = ACTIONS(1534), - [aux_sym_goto_statement_token1] = ACTIONS(1534), - [aux_sym_continue_statement_token1] = ACTIONS(1534), - [aux_sym_break_statement_token1] = ACTIONS(1534), - [sym_integer] = ACTIONS(1534), - [aux_sym_return_statement_token1] = ACTIONS(1534), - [aux_sym_throw_expression_token1] = ACTIONS(1534), - [aux_sym_while_statement_token1] = ACTIONS(1534), - [aux_sym_while_statement_token2] = ACTIONS(1534), - [aux_sym_do_statement_token1] = ACTIONS(1534), - [aux_sym_for_statement_token1] = ACTIONS(1534), - [aux_sym_for_statement_token2] = ACTIONS(1534), - [aux_sym_foreach_statement_token1] = ACTIONS(1534), - [aux_sym_foreach_statement_token2] = ACTIONS(1534), - [aux_sym_if_statement_token1] = ACTIONS(1534), - [aux_sym_if_statement_token2] = ACTIONS(1534), - [aux_sym_else_if_clause_token1] = ACTIONS(1534), - [aux_sym_else_clause_token1] = ACTIONS(1534), - [aux_sym_match_expression_token1] = ACTIONS(1534), - [aux_sym_match_default_expression_token1] = ACTIONS(1534), - [aux_sym_switch_statement_token1] = ACTIONS(1534), - [aux_sym_switch_block_token1] = ACTIONS(1534), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_AT] = ACTIONS(1532), - [aux_sym_clone_expression_token1] = ACTIONS(1534), - [aux_sym_print_intrinsic_token1] = ACTIONS(1534), - [aux_sym_object_creation_expression_token1] = ACTIONS(1534), - [anon_sym_DASH_DASH] = ACTIONS(1532), - [anon_sym_PLUS_PLUS] = ACTIONS(1532), - [aux_sym__list_destructing_token1] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_self] = ACTIONS(1534), - [anon_sym_parent] = ACTIONS(1534), - [aux_sym__argument_name_token1] = ACTIONS(1534), - [aux_sym__argument_name_token2] = ACTIONS(1534), - [anon_sym_POUND_LBRACK] = ACTIONS(1532), - [aux_sym_encapsed_string_token1] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [aux_sym_string_token1] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_LT_LT_LT] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [anon_sym_DOLLAR] = ACTIONS(1532), - [aux_sym_yield_expression_token1] = ACTIONS(1534), - [aux_sym_include_expression_token1] = ACTIONS(1534), - [aux_sym_include_once_expression_token1] = ACTIONS(1534), - [aux_sym_require_expression_token1] = ACTIONS(1534), - [aux_sym_require_once_expression_token1] = ACTIONS(1534), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1532), + [ts_builtin_sym_end] = ACTIONS(1570), + [sym_name] = ACTIONS(1572), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1570), + [aux_sym_function_static_declaration_token1] = ACTIONS(1572), + [aux_sym_global_declaration_token1] = ACTIONS(1572), + [aux_sym_namespace_definition_token1] = ACTIONS(1572), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1572), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1572), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [aux_sym_trait_declaration_token1] = ACTIONS(1572), + [aux_sym_interface_declaration_token1] = ACTIONS(1572), + [aux_sym_enum_declaration_token1] = ACTIONS(1572), + [aux_sym_enum_case_token1] = ACTIONS(1572), + [aux_sym_class_declaration_token1] = ACTIONS(1572), + [aux_sym_final_modifier_token1] = ACTIONS(1572), + [aux_sym_abstract_modifier_token1] = ACTIONS(1572), + [aux_sym_readonly_modifier_token1] = ACTIONS(1572), + [aux_sym_visibility_modifier_token1] = ACTIONS(1572), + [aux_sym_visibility_modifier_token2] = ACTIONS(1572), + [aux_sym_visibility_modifier_token3] = ACTIONS(1572), + [aux_sym__arrow_function_header_token1] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1570), + [aux_sym_cast_type_token1] = ACTIONS(1572), + [aux_sym_echo_statement_token1] = ACTIONS(1572), + [aux_sym_exit_statement_token1] = ACTIONS(1572), + [anon_sym_unset] = ACTIONS(1572), + [aux_sym_declare_statement_token1] = ACTIONS(1572), + [aux_sym_declare_statement_token2] = ACTIONS(1572), + [sym_float] = ACTIONS(1572), + [aux_sym_try_statement_token1] = ACTIONS(1572), + [aux_sym_goto_statement_token1] = ACTIONS(1572), + [aux_sym_continue_statement_token1] = ACTIONS(1572), + [aux_sym_break_statement_token1] = ACTIONS(1572), + [sym_integer] = ACTIONS(1572), + [aux_sym_return_statement_token1] = ACTIONS(1572), + [aux_sym_throw_expression_token1] = ACTIONS(1572), + [aux_sym_while_statement_token1] = ACTIONS(1572), + [aux_sym_while_statement_token2] = ACTIONS(1572), + [aux_sym_do_statement_token1] = ACTIONS(1572), + [aux_sym_for_statement_token1] = ACTIONS(1572), + [aux_sym_for_statement_token2] = ACTIONS(1572), + [aux_sym_foreach_statement_token1] = ACTIONS(1572), + [aux_sym_foreach_statement_token2] = ACTIONS(1572), + [aux_sym_if_statement_token1] = ACTIONS(1572), + [aux_sym_if_statement_token2] = ACTIONS(1572), + [aux_sym_else_if_clause_token1] = ACTIONS(1572), + [aux_sym_else_clause_token1] = ACTIONS(1572), + [aux_sym_match_expression_token1] = ACTIONS(1572), + [aux_sym_match_default_expression_token1] = ACTIONS(1572), + [aux_sym_switch_statement_token1] = ACTIONS(1572), + [aux_sym_switch_block_token1] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_AT] = ACTIONS(1570), + [aux_sym_clone_expression_token1] = ACTIONS(1572), + [aux_sym_print_intrinsic_token1] = ACTIONS(1572), + [aux_sym_object_creation_expression_token1] = ACTIONS(1572), + [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1570), + [aux_sym__list_destructing_token1] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_self] = ACTIONS(1572), + [anon_sym_parent] = ACTIONS(1572), + [aux_sym__argument_name_token1] = ACTIONS(1572), + [aux_sym__argument_name_token2] = ACTIONS(1572), + [anon_sym_POUND_LBRACK] = ACTIONS(1570), + [aux_sym_encapsed_string_token1] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [aux_sym_string_token1] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_LT_LT_LT] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(1570), + [aux_sym_yield_expression_token1] = ACTIONS(1572), + [aux_sym_include_expression_token1] = ACTIONS(1572), + [aux_sym_include_once_expression_token1] = ACTIONS(1572), + [aux_sym_require_expression_token1] = ACTIONS(1572), + [aux_sym_require_once_expression_token1] = ACTIONS(1572), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1570), }, [557] = { [sym_text_interpolation] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_name] = ACTIONS(1530), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1528), - [aux_sym_function_static_declaration_token1] = ACTIONS(1530), - [aux_sym_global_declaration_token1] = ACTIONS(1530), - [aux_sym_namespace_definition_token1] = ACTIONS(1530), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1530), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1530), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1530), - [anon_sym_BSLASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [aux_sym_trait_declaration_token1] = ACTIONS(1530), - [aux_sym_interface_declaration_token1] = ACTIONS(1530), - [aux_sym_enum_declaration_token1] = ACTIONS(1530), - [aux_sym_enum_case_token1] = ACTIONS(1530), - [aux_sym_class_declaration_token1] = ACTIONS(1530), - [aux_sym_final_modifier_token1] = ACTIONS(1530), - [aux_sym_abstract_modifier_token1] = ACTIONS(1530), - [aux_sym_readonly_modifier_token1] = ACTIONS(1530), - [aux_sym_visibility_modifier_token1] = ACTIONS(1530), - [aux_sym_visibility_modifier_token2] = ACTIONS(1530), - [aux_sym_visibility_modifier_token3] = ACTIONS(1530), - [aux_sym__arrow_function_header_token1] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [aux_sym_cast_type_token1] = ACTIONS(1530), - [aux_sym_echo_statement_token1] = ACTIONS(1530), - [aux_sym_exit_statement_token1] = ACTIONS(1530), - [anon_sym_unset] = ACTIONS(1530), - [aux_sym_declare_statement_token1] = ACTIONS(1530), - [aux_sym_declare_statement_token2] = ACTIONS(1530), - [sym_float] = ACTIONS(1530), - [aux_sym_try_statement_token1] = ACTIONS(1530), - [aux_sym_goto_statement_token1] = ACTIONS(1530), - [aux_sym_continue_statement_token1] = ACTIONS(1530), - [aux_sym_break_statement_token1] = ACTIONS(1530), - [sym_integer] = ACTIONS(1530), - [aux_sym_return_statement_token1] = ACTIONS(1530), - [aux_sym_throw_expression_token1] = ACTIONS(1530), - [aux_sym_while_statement_token1] = ACTIONS(1530), - [aux_sym_while_statement_token2] = ACTIONS(1530), - [aux_sym_do_statement_token1] = ACTIONS(1530), - [aux_sym_for_statement_token1] = ACTIONS(1530), - [aux_sym_for_statement_token2] = ACTIONS(1530), - [aux_sym_foreach_statement_token1] = ACTIONS(1530), - [aux_sym_foreach_statement_token2] = ACTIONS(1530), - [aux_sym_if_statement_token1] = ACTIONS(1530), - [aux_sym_if_statement_token2] = ACTIONS(1530), - [aux_sym_else_if_clause_token1] = ACTIONS(1530), - [aux_sym_else_clause_token1] = ACTIONS(1530), - [aux_sym_match_expression_token1] = ACTIONS(1530), - [aux_sym_match_default_expression_token1] = ACTIONS(1530), - [aux_sym_switch_statement_token1] = ACTIONS(1530), - [aux_sym_switch_block_token1] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [aux_sym_clone_expression_token1] = ACTIONS(1530), - [aux_sym_print_intrinsic_token1] = ACTIONS(1530), - [aux_sym_object_creation_expression_token1] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [aux_sym__list_destructing_token1] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_self] = ACTIONS(1530), - [anon_sym_parent] = ACTIONS(1530), - [aux_sym__argument_name_token1] = ACTIONS(1530), - [aux_sym__argument_name_token2] = ACTIONS(1530), - [anon_sym_POUND_LBRACK] = ACTIONS(1528), - [aux_sym_encapsed_string_token1] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(1528), - [aux_sym_string_token1] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_LT_LT_LT] = ACTIONS(1528), - [anon_sym_BQUOTE] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1528), - [aux_sym_yield_expression_token1] = ACTIONS(1530), - [aux_sym_include_expression_token1] = ACTIONS(1530), - [aux_sym_include_once_expression_token1] = ACTIONS(1530), - [aux_sym_require_expression_token1] = ACTIONS(1530), - [aux_sym_require_once_expression_token1] = ACTIONS(1530), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1574), + [sym_name] = ACTIONS(1576), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1574), + [aux_sym_function_static_declaration_token1] = ACTIONS(1576), + [aux_sym_global_declaration_token1] = ACTIONS(1576), + [aux_sym_namespace_definition_token1] = ACTIONS(1576), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1576), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1576), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1576), + [anon_sym_BSLASH] = ACTIONS(1574), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [aux_sym_trait_declaration_token1] = ACTIONS(1576), + [aux_sym_interface_declaration_token1] = ACTIONS(1576), + [aux_sym_enum_declaration_token1] = ACTIONS(1576), + [aux_sym_enum_case_token1] = ACTIONS(1576), + [aux_sym_class_declaration_token1] = ACTIONS(1576), + [aux_sym_final_modifier_token1] = ACTIONS(1576), + [aux_sym_abstract_modifier_token1] = ACTIONS(1576), + [aux_sym_readonly_modifier_token1] = ACTIONS(1576), + [aux_sym_visibility_modifier_token1] = ACTIONS(1576), + [aux_sym_visibility_modifier_token2] = ACTIONS(1576), + [aux_sym_visibility_modifier_token3] = ACTIONS(1576), + [aux_sym__arrow_function_header_token1] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1574), + [aux_sym_cast_type_token1] = ACTIONS(1576), + [aux_sym_echo_statement_token1] = ACTIONS(1576), + [aux_sym_exit_statement_token1] = ACTIONS(1576), + [anon_sym_unset] = ACTIONS(1576), + [aux_sym_declare_statement_token1] = ACTIONS(1576), + [aux_sym_declare_statement_token2] = ACTIONS(1576), + [sym_float] = ACTIONS(1576), + [aux_sym_try_statement_token1] = ACTIONS(1576), + [aux_sym_goto_statement_token1] = ACTIONS(1576), + [aux_sym_continue_statement_token1] = ACTIONS(1576), + [aux_sym_break_statement_token1] = ACTIONS(1576), + [sym_integer] = ACTIONS(1576), + [aux_sym_return_statement_token1] = ACTIONS(1576), + [aux_sym_throw_expression_token1] = ACTIONS(1576), + [aux_sym_while_statement_token1] = ACTIONS(1576), + [aux_sym_while_statement_token2] = ACTIONS(1576), + [aux_sym_do_statement_token1] = ACTIONS(1576), + [aux_sym_for_statement_token1] = ACTIONS(1576), + [aux_sym_for_statement_token2] = ACTIONS(1576), + [aux_sym_foreach_statement_token1] = ACTIONS(1576), + [aux_sym_foreach_statement_token2] = ACTIONS(1576), + [aux_sym_if_statement_token1] = ACTIONS(1576), + [aux_sym_if_statement_token2] = ACTIONS(1576), + [aux_sym_else_if_clause_token1] = ACTIONS(1576), + [aux_sym_else_clause_token1] = ACTIONS(1576), + [aux_sym_match_expression_token1] = ACTIONS(1576), + [aux_sym_match_default_expression_token1] = ACTIONS(1576), + [aux_sym_switch_statement_token1] = ACTIONS(1576), + [aux_sym_switch_block_token1] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_AT] = ACTIONS(1574), + [aux_sym_clone_expression_token1] = ACTIONS(1576), + [aux_sym_print_intrinsic_token1] = ACTIONS(1576), + [aux_sym_object_creation_expression_token1] = ACTIONS(1576), + [anon_sym_DASH_DASH] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1574), + [aux_sym__list_destructing_token1] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_self] = ACTIONS(1576), + [anon_sym_parent] = ACTIONS(1576), + [aux_sym__argument_name_token1] = ACTIONS(1576), + [aux_sym__argument_name_token2] = ACTIONS(1576), + [anon_sym_POUND_LBRACK] = ACTIONS(1574), + [aux_sym_encapsed_string_token1] = ACTIONS(1574), + [anon_sym_DQUOTE] = ACTIONS(1574), + [aux_sym_string_token1] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_LT_LT_LT] = ACTIONS(1574), + [anon_sym_BQUOTE] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1574), + [aux_sym_yield_expression_token1] = ACTIONS(1576), + [aux_sym_include_expression_token1] = ACTIONS(1576), + [aux_sym_include_once_expression_token1] = ACTIONS(1576), + [aux_sym_require_expression_token1] = ACTIONS(1576), + [aux_sym_require_once_expression_token1] = ACTIONS(1576), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1574), }, [558] = { [sym_text_interpolation] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_name] = ACTIONS(1538), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1536), - [aux_sym_function_static_declaration_token1] = ACTIONS(1538), - [aux_sym_global_declaration_token1] = ACTIONS(1538), - [aux_sym_namespace_definition_token1] = ACTIONS(1538), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1538), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1538), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1538), - [anon_sym_BSLASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [aux_sym_trait_declaration_token1] = ACTIONS(1538), - [aux_sym_interface_declaration_token1] = ACTIONS(1538), - [aux_sym_enum_declaration_token1] = ACTIONS(1538), - [aux_sym_enum_case_token1] = ACTIONS(1538), - [aux_sym_class_declaration_token1] = ACTIONS(1538), - [aux_sym_final_modifier_token1] = ACTIONS(1538), - [aux_sym_abstract_modifier_token1] = ACTIONS(1538), - [aux_sym_readonly_modifier_token1] = ACTIONS(1538), - [aux_sym_visibility_modifier_token1] = ACTIONS(1538), - [aux_sym_visibility_modifier_token2] = ACTIONS(1538), - [aux_sym_visibility_modifier_token3] = ACTIONS(1538), - [aux_sym__arrow_function_header_token1] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [aux_sym_cast_type_token1] = ACTIONS(1538), - [aux_sym_echo_statement_token1] = ACTIONS(1538), - [aux_sym_exit_statement_token1] = ACTIONS(1538), - [anon_sym_unset] = ACTIONS(1538), - [aux_sym_declare_statement_token1] = ACTIONS(1538), - [aux_sym_declare_statement_token2] = ACTIONS(1538), - [sym_float] = ACTIONS(1538), - [aux_sym_try_statement_token1] = ACTIONS(1538), - [aux_sym_goto_statement_token1] = ACTIONS(1538), - [aux_sym_continue_statement_token1] = ACTIONS(1538), - [aux_sym_break_statement_token1] = ACTIONS(1538), - [sym_integer] = ACTIONS(1538), - [aux_sym_return_statement_token1] = ACTIONS(1538), - [aux_sym_throw_expression_token1] = ACTIONS(1538), - [aux_sym_while_statement_token1] = ACTIONS(1538), - [aux_sym_while_statement_token2] = ACTIONS(1538), - [aux_sym_do_statement_token1] = ACTIONS(1538), - [aux_sym_for_statement_token1] = ACTIONS(1538), - [aux_sym_for_statement_token2] = ACTIONS(1538), - [aux_sym_foreach_statement_token1] = ACTIONS(1538), - [aux_sym_foreach_statement_token2] = ACTIONS(1538), - [aux_sym_if_statement_token1] = ACTIONS(1538), - [aux_sym_if_statement_token2] = ACTIONS(1538), - [aux_sym_else_if_clause_token1] = ACTIONS(1538), - [aux_sym_else_clause_token1] = ACTIONS(1538), - [aux_sym_match_expression_token1] = ACTIONS(1538), - [aux_sym_match_default_expression_token1] = ACTIONS(1538), - [aux_sym_switch_statement_token1] = ACTIONS(1538), - [aux_sym_switch_block_token1] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_AT] = ACTIONS(1536), - [aux_sym_clone_expression_token1] = ACTIONS(1538), - [aux_sym_print_intrinsic_token1] = ACTIONS(1538), - [aux_sym_object_creation_expression_token1] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1536), - [anon_sym_PLUS_PLUS] = ACTIONS(1536), - [aux_sym__list_destructing_token1] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_self] = ACTIONS(1538), - [anon_sym_parent] = ACTIONS(1538), - [aux_sym__argument_name_token1] = ACTIONS(1538), - [aux_sym__argument_name_token2] = ACTIONS(1538), - [anon_sym_POUND_LBRACK] = ACTIONS(1536), - [aux_sym_encapsed_string_token1] = ACTIONS(1536), - [anon_sym_DQUOTE] = ACTIONS(1536), - [aux_sym_string_token1] = ACTIONS(1536), - [anon_sym_SQUOTE] = ACTIONS(1536), - [anon_sym_LT_LT_LT] = ACTIONS(1536), - [anon_sym_BQUOTE] = ACTIONS(1536), - [anon_sym_DOLLAR] = ACTIONS(1536), - [aux_sym_yield_expression_token1] = ACTIONS(1538), - [aux_sym_include_expression_token1] = ACTIONS(1538), - [aux_sym_include_once_expression_token1] = ACTIONS(1538), - [aux_sym_require_expression_token1] = ACTIONS(1538), - [aux_sym_require_once_expression_token1] = ACTIONS(1538), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1536), + [ts_builtin_sym_end] = ACTIONS(1578), + [sym_name] = ACTIONS(1580), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1578), + [aux_sym_function_static_declaration_token1] = ACTIONS(1580), + [aux_sym_global_declaration_token1] = ACTIONS(1580), + [aux_sym_namespace_definition_token1] = ACTIONS(1580), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1580), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1580), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1580), + [anon_sym_BSLASH] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [aux_sym_trait_declaration_token1] = ACTIONS(1580), + [aux_sym_interface_declaration_token1] = ACTIONS(1580), + [aux_sym_enum_declaration_token1] = ACTIONS(1580), + [aux_sym_enum_case_token1] = ACTIONS(1580), + [aux_sym_class_declaration_token1] = ACTIONS(1580), + [aux_sym_final_modifier_token1] = ACTIONS(1580), + [aux_sym_abstract_modifier_token1] = ACTIONS(1580), + [aux_sym_readonly_modifier_token1] = ACTIONS(1580), + [aux_sym_visibility_modifier_token1] = ACTIONS(1580), + [aux_sym_visibility_modifier_token2] = ACTIONS(1580), + [aux_sym_visibility_modifier_token3] = ACTIONS(1580), + [aux_sym__arrow_function_header_token1] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1578), + [aux_sym_cast_type_token1] = ACTIONS(1580), + [aux_sym_echo_statement_token1] = ACTIONS(1580), + [aux_sym_exit_statement_token1] = ACTIONS(1580), + [anon_sym_unset] = ACTIONS(1580), + [aux_sym_declare_statement_token1] = ACTIONS(1580), + [aux_sym_declare_statement_token2] = ACTIONS(1580), + [sym_float] = ACTIONS(1580), + [aux_sym_try_statement_token1] = ACTIONS(1580), + [aux_sym_goto_statement_token1] = ACTIONS(1580), + [aux_sym_continue_statement_token1] = ACTIONS(1580), + [aux_sym_break_statement_token1] = ACTIONS(1580), + [sym_integer] = ACTIONS(1580), + [aux_sym_return_statement_token1] = ACTIONS(1580), + [aux_sym_throw_expression_token1] = ACTIONS(1580), + [aux_sym_while_statement_token1] = ACTIONS(1580), + [aux_sym_while_statement_token2] = ACTIONS(1580), + [aux_sym_do_statement_token1] = ACTIONS(1580), + [aux_sym_for_statement_token1] = ACTIONS(1580), + [aux_sym_for_statement_token2] = ACTIONS(1580), + [aux_sym_foreach_statement_token1] = ACTIONS(1580), + [aux_sym_foreach_statement_token2] = ACTIONS(1580), + [aux_sym_if_statement_token1] = ACTIONS(1580), + [aux_sym_if_statement_token2] = ACTIONS(1580), + [aux_sym_else_if_clause_token1] = ACTIONS(1580), + [aux_sym_else_clause_token1] = ACTIONS(1580), + [aux_sym_match_expression_token1] = ACTIONS(1580), + [aux_sym_match_default_expression_token1] = ACTIONS(1580), + [aux_sym_switch_statement_token1] = ACTIONS(1580), + [aux_sym_switch_block_token1] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1578), + [aux_sym_clone_expression_token1] = ACTIONS(1580), + [aux_sym_print_intrinsic_token1] = ACTIONS(1580), + [aux_sym_object_creation_expression_token1] = ACTIONS(1580), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [aux_sym__list_destructing_token1] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_self] = ACTIONS(1580), + [anon_sym_parent] = ACTIONS(1580), + [aux_sym__argument_name_token1] = ACTIONS(1580), + [aux_sym__argument_name_token2] = ACTIONS(1580), + [anon_sym_POUND_LBRACK] = ACTIONS(1578), + [aux_sym_encapsed_string_token1] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(1578), + [aux_sym_string_token1] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_LT_LT_LT] = ACTIONS(1578), + [anon_sym_BQUOTE] = ACTIONS(1578), + [anon_sym_DOLLAR] = ACTIONS(1578), + [aux_sym_yield_expression_token1] = ACTIONS(1580), + [aux_sym_include_expression_token1] = ACTIONS(1580), + [aux_sym_include_once_expression_token1] = ACTIONS(1580), + [aux_sym_require_expression_token1] = ACTIONS(1580), + [aux_sym_require_once_expression_token1] = ACTIONS(1580), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1578), }, [559] = { [sym_text_interpolation] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(1540), - [sym_name] = ACTIONS(1542), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1540), - [aux_sym_function_static_declaration_token1] = ACTIONS(1542), - [aux_sym_global_declaration_token1] = ACTIONS(1542), - [aux_sym_namespace_definition_token1] = ACTIONS(1542), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1542), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1542), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1542), - [anon_sym_BSLASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [aux_sym_trait_declaration_token1] = ACTIONS(1542), - [aux_sym_interface_declaration_token1] = ACTIONS(1542), - [aux_sym_enum_declaration_token1] = ACTIONS(1542), - [aux_sym_enum_case_token1] = ACTIONS(1542), - [aux_sym_class_declaration_token1] = ACTIONS(1542), - [aux_sym_final_modifier_token1] = ACTIONS(1542), - [aux_sym_abstract_modifier_token1] = ACTIONS(1542), - [aux_sym_readonly_modifier_token1] = ACTIONS(1542), - [aux_sym_visibility_modifier_token1] = ACTIONS(1542), - [aux_sym_visibility_modifier_token2] = ACTIONS(1542), - [aux_sym_visibility_modifier_token3] = ACTIONS(1542), - [aux_sym__arrow_function_header_token1] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [aux_sym_cast_type_token1] = ACTIONS(1542), - [aux_sym_echo_statement_token1] = ACTIONS(1542), - [aux_sym_exit_statement_token1] = ACTIONS(1542), - [anon_sym_unset] = ACTIONS(1542), - [aux_sym_declare_statement_token1] = ACTIONS(1542), - [aux_sym_declare_statement_token2] = ACTIONS(1542), - [sym_float] = ACTIONS(1542), - [aux_sym_try_statement_token1] = ACTIONS(1542), - [aux_sym_goto_statement_token1] = ACTIONS(1542), - [aux_sym_continue_statement_token1] = ACTIONS(1542), - [aux_sym_break_statement_token1] = ACTIONS(1542), - [sym_integer] = ACTIONS(1542), - [aux_sym_return_statement_token1] = ACTIONS(1542), - [aux_sym_throw_expression_token1] = ACTIONS(1542), - [aux_sym_while_statement_token1] = ACTIONS(1542), - [aux_sym_while_statement_token2] = ACTIONS(1542), - [aux_sym_do_statement_token1] = ACTIONS(1542), - [aux_sym_for_statement_token1] = ACTIONS(1542), - [aux_sym_for_statement_token2] = ACTIONS(1542), - [aux_sym_foreach_statement_token1] = ACTIONS(1542), - [aux_sym_foreach_statement_token2] = ACTIONS(1542), - [aux_sym_if_statement_token1] = ACTIONS(1542), - [aux_sym_if_statement_token2] = ACTIONS(1542), - [aux_sym_else_if_clause_token1] = ACTIONS(1542), - [aux_sym_else_clause_token1] = ACTIONS(1542), - [aux_sym_match_expression_token1] = ACTIONS(1542), - [aux_sym_match_default_expression_token1] = ACTIONS(1542), - [aux_sym_switch_statement_token1] = ACTIONS(1542), - [aux_sym_switch_block_token1] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_AT] = ACTIONS(1540), - [aux_sym_clone_expression_token1] = ACTIONS(1542), - [aux_sym_print_intrinsic_token1] = ACTIONS(1542), - [aux_sym_object_creation_expression_token1] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [aux_sym__list_destructing_token1] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_self] = ACTIONS(1542), - [anon_sym_parent] = ACTIONS(1542), - [aux_sym__argument_name_token1] = ACTIONS(1542), - [aux_sym__argument_name_token2] = ACTIONS(1542), - [anon_sym_POUND_LBRACK] = ACTIONS(1540), - [aux_sym_encapsed_string_token1] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [aux_sym_string_token1] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_LT_LT_LT] = ACTIONS(1540), - [anon_sym_BQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [aux_sym_yield_expression_token1] = ACTIONS(1542), - [aux_sym_include_expression_token1] = ACTIONS(1542), - [aux_sym_include_once_expression_token1] = ACTIONS(1542), - [aux_sym_require_expression_token1] = ACTIONS(1542), - [aux_sym_require_once_expression_token1] = ACTIONS(1542), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1540), + [ts_builtin_sym_end] = ACTIONS(1582), + [sym_name] = ACTIONS(1584), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1582), + [aux_sym_function_static_declaration_token1] = ACTIONS(1584), + [aux_sym_global_declaration_token1] = ACTIONS(1584), + [aux_sym_namespace_definition_token1] = ACTIONS(1584), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1584), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1584), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [aux_sym_trait_declaration_token1] = ACTIONS(1584), + [aux_sym_interface_declaration_token1] = ACTIONS(1584), + [aux_sym_enum_declaration_token1] = ACTIONS(1584), + [aux_sym_enum_case_token1] = ACTIONS(1584), + [aux_sym_class_declaration_token1] = ACTIONS(1584), + [aux_sym_final_modifier_token1] = ACTIONS(1584), + [aux_sym_abstract_modifier_token1] = ACTIONS(1584), + [aux_sym_readonly_modifier_token1] = ACTIONS(1584), + [aux_sym_visibility_modifier_token1] = ACTIONS(1584), + [aux_sym_visibility_modifier_token2] = ACTIONS(1584), + [aux_sym_visibility_modifier_token3] = ACTIONS(1584), + [aux_sym__arrow_function_header_token1] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1582), + [aux_sym_cast_type_token1] = ACTIONS(1584), + [aux_sym_echo_statement_token1] = ACTIONS(1584), + [aux_sym_exit_statement_token1] = ACTIONS(1584), + [anon_sym_unset] = ACTIONS(1584), + [aux_sym_declare_statement_token1] = ACTIONS(1584), + [aux_sym_declare_statement_token2] = ACTIONS(1584), + [sym_float] = ACTIONS(1584), + [aux_sym_try_statement_token1] = ACTIONS(1584), + [aux_sym_goto_statement_token1] = ACTIONS(1584), + [aux_sym_continue_statement_token1] = ACTIONS(1584), + [aux_sym_break_statement_token1] = ACTIONS(1584), + [sym_integer] = ACTIONS(1584), + [aux_sym_return_statement_token1] = ACTIONS(1584), + [aux_sym_throw_expression_token1] = ACTIONS(1584), + [aux_sym_while_statement_token1] = ACTIONS(1584), + [aux_sym_while_statement_token2] = ACTIONS(1584), + [aux_sym_do_statement_token1] = ACTIONS(1584), + [aux_sym_for_statement_token1] = ACTIONS(1584), + [aux_sym_for_statement_token2] = ACTIONS(1584), + [aux_sym_foreach_statement_token1] = ACTIONS(1584), + [aux_sym_foreach_statement_token2] = ACTIONS(1584), + [aux_sym_if_statement_token1] = ACTIONS(1584), + [aux_sym_if_statement_token2] = ACTIONS(1584), + [aux_sym_else_if_clause_token1] = ACTIONS(1584), + [aux_sym_else_clause_token1] = ACTIONS(1584), + [aux_sym_match_expression_token1] = ACTIONS(1584), + [aux_sym_match_default_expression_token1] = ACTIONS(1584), + [aux_sym_switch_statement_token1] = ACTIONS(1584), + [aux_sym_switch_block_token1] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(1582), + [aux_sym_clone_expression_token1] = ACTIONS(1584), + [aux_sym_print_intrinsic_token1] = ACTIONS(1584), + [aux_sym_object_creation_expression_token1] = ACTIONS(1584), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [aux_sym__list_destructing_token1] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_self] = ACTIONS(1584), + [anon_sym_parent] = ACTIONS(1584), + [aux_sym__argument_name_token1] = ACTIONS(1584), + [aux_sym__argument_name_token2] = ACTIONS(1584), + [anon_sym_POUND_LBRACK] = ACTIONS(1582), + [aux_sym_encapsed_string_token1] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1582), + [aux_sym_string_token1] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_LT_LT_LT] = ACTIONS(1582), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1582), + [aux_sym_yield_expression_token1] = ACTIONS(1584), + [aux_sym_include_expression_token1] = ACTIONS(1584), + [aux_sym_include_once_expression_token1] = ACTIONS(1584), + [aux_sym_require_expression_token1] = ACTIONS(1584), + [aux_sym_require_once_expression_token1] = ACTIONS(1584), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1582), }, [560] = { [sym_text_interpolation] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym_name] = ACTIONS(1546), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1544), - [aux_sym_function_static_declaration_token1] = ACTIONS(1546), - [aux_sym_global_declaration_token1] = ACTIONS(1546), - [aux_sym_namespace_definition_token1] = ACTIONS(1546), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1546), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1546), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1546), - [anon_sym_BSLASH] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [aux_sym_trait_declaration_token1] = ACTIONS(1546), - [aux_sym_interface_declaration_token1] = ACTIONS(1546), - [aux_sym_enum_declaration_token1] = ACTIONS(1546), - [aux_sym_enum_case_token1] = ACTIONS(1546), - [aux_sym_class_declaration_token1] = ACTIONS(1546), - [aux_sym_final_modifier_token1] = ACTIONS(1546), - [aux_sym_abstract_modifier_token1] = ACTIONS(1546), - [aux_sym_readonly_modifier_token1] = ACTIONS(1546), - [aux_sym_visibility_modifier_token1] = ACTIONS(1546), - [aux_sym_visibility_modifier_token2] = ACTIONS(1546), - [aux_sym_visibility_modifier_token3] = ACTIONS(1546), - [aux_sym__arrow_function_header_token1] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1544), - [aux_sym_cast_type_token1] = ACTIONS(1546), - [aux_sym_echo_statement_token1] = ACTIONS(1546), - [aux_sym_exit_statement_token1] = ACTIONS(1546), - [anon_sym_unset] = ACTIONS(1546), - [aux_sym_declare_statement_token1] = ACTIONS(1546), - [aux_sym_declare_statement_token2] = ACTIONS(1546), - [sym_float] = ACTIONS(1546), - [aux_sym_try_statement_token1] = ACTIONS(1546), - [aux_sym_goto_statement_token1] = ACTIONS(1546), - [aux_sym_continue_statement_token1] = ACTIONS(1546), - [aux_sym_break_statement_token1] = ACTIONS(1546), - [sym_integer] = ACTIONS(1546), - [aux_sym_return_statement_token1] = ACTIONS(1546), - [aux_sym_throw_expression_token1] = ACTIONS(1546), - [aux_sym_while_statement_token1] = ACTIONS(1546), - [aux_sym_while_statement_token2] = ACTIONS(1546), - [aux_sym_do_statement_token1] = ACTIONS(1546), - [aux_sym_for_statement_token1] = ACTIONS(1546), - [aux_sym_for_statement_token2] = ACTIONS(1546), - [aux_sym_foreach_statement_token1] = ACTIONS(1546), - [aux_sym_foreach_statement_token2] = ACTIONS(1546), - [aux_sym_if_statement_token1] = ACTIONS(1546), - [aux_sym_if_statement_token2] = ACTIONS(1546), - [aux_sym_else_if_clause_token1] = ACTIONS(1546), - [aux_sym_else_clause_token1] = ACTIONS(1546), - [aux_sym_match_expression_token1] = ACTIONS(1546), - [aux_sym_match_default_expression_token1] = ACTIONS(1546), - [aux_sym_switch_statement_token1] = ACTIONS(1546), - [aux_sym_switch_block_token1] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_AT] = ACTIONS(1544), - [aux_sym_clone_expression_token1] = ACTIONS(1546), - [aux_sym_print_intrinsic_token1] = ACTIONS(1546), - [aux_sym_object_creation_expression_token1] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [aux_sym__list_destructing_token1] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_self] = ACTIONS(1546), - [anon_sym_parent] = ACTIONS(1546), - [aux_sym__argument_name_token1] = ACTIONS(1546), - [aux_sym__argument_name_token2] = ACTIONS(1546), - [anon_sym_POUND_LBRACK] = ACTIONS(1544), - [aux_sym_encapsed_string_token1] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [aux_sym_string_token1] = ACTIONS(1544), - [anon_sym_SQUOTE] = ACTIONS(1544), - [anon_sym_LT_LT_LT] = ACTIONS(1544), - [anon_sym_BQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1544), - [aux_sym_yield_expression_token1] = ACTIONS(1546), - [aux_sym_include_expression_token1] = ACTIONS(1546), - [aux_sym_include_once_expression_token1] = ACTIONS(1546), - [aux_sym_require_expression_token1] = ACTIONS(1546), - [aux_sym_require_once_expression_token1] = ACTIONS(1546), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1544), + [ts_builtin_sym_end] = ACTIONS(1586), + [sym_name] = ACTIONS(1588), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1586), + [aux_sym_function_static_declaration_token1] = ACTIONS(1588), + [aux_sym_global_declaration_token1] = ACTIONS(1588), + [aux_sym_namespace_definition_token1] = ACTIONS(1588), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1588), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1588), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [aux_sym_trait_declaration_token1] = ACTIONS(1588), + [aux_sym_interface_declaration_token1] = ACTIONS(1588), + [aux_sym_enum_declaration_token1] = ACTIONS(1588), + [aux_sym_enum_case_token1] = ACTIONS(1588), + [aux_sym_class_declaration_token1] = ACTIONS(1588), + [aux_sym_final_modifier_token1] = ACTIONS(1588), + [aux_sym_abstract_modifier_token1] = ACTIONS(1588), + [aux_sym_readonly_modifier_token1] = ACTIONS(1588), + [aux_sym_visibility_modifier_token1] = ACTIONS(1588), + [aux_sym_visibility_modifier_token2] = ACTIONS(1588), + [aux_sym_visibility_modifier_token3] = ACTIONS(1588), + [aux_sym__arrow_function_header_token1] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1586), + [aux_sym_cast_type_token1] = ACTIONS(1588), + [aux_sym_echo_statement_token1] = ACTIONS(1588), + [aux_sym_exit_statement_token1] = ACTIONS(1588), + [anon_sym_unset] = ACTIONS(1588), + [aux_sym_declare_statement_token1] = ACTIONS(1588), + [aux_sym_declare_statement_token2] = ACTIONS(1588), + [sym_float] = ACTIONS(1588), + [aux_sym_try_statement_token1] = ACTIONS(1588), + [aux_sym_goto_statement_token1] = ACTIONS(1588), + [aux_sym_continue_statement_token1] = ACTIONS(1588), + [aux_sym_break_statement_token1] = ACTIONS(1588), + [sym_integer] = ACTIONS(1588), + [aux_sym_return_statement_token1] = ACTIONS(1588), + [aux_sym_throw_expression_token1] = ACTIONS(1588), + [aux_sym_while_statement_token1] = ACTIONS(1588), + [aux_sym_while_statement_token2] = ACTIONS(1588), + [aux_sym_do_statement_token1] = ACTIONS(1588), + [aux_sym_for_statement_token1] = ACTIONS(1588), + [aux_sym_for_statement_token2] = ACTIONS(1588), + [aux_sym_foreach_statement_token1] = ACTIONS(1588), + [aux_sym_foreach_statement_token2] = ACTIONS(1588), + [aux_sym_if_statement_token1] = ACTIONS(1588), + [aux_sym_if_statement_token2] = ACTIONS(1588), + [aux_sym_else_if_clause_token1] = ACTIONS(1588), + [aux_sym_else_clause_token1] = ACTIONS(1588), + [aux_sym_match_expression_token1] = ACTIONS(1588), + [aux_sym_match_default_expression_token1] = ACTIONS(1588), + [aux_sym_switch_statement_token1] = ACTIONS(1588), + [aux_sym_switch_block_token1] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [aux_sym_clone_expression_token1] = ACTIONS(1588), + [aux_sym_print_intrinsic_token1] = ACTIONS(1588), + [aux_sym_object_creation_expression_token1] = ACTIONS(1588), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [aux_sym__list_destructing_token1] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_self] = ACTIONS(1588), + [anon_sym_parent] = ACTIONS(1588), + [aux_sym__argument_name_token1] = ACTIONS(1588), + [aux_sym__argument_name_token2] = ACTIONS(1588), + [anon_sym_POUND_LBRACK] = ACTIONS(1586), + [aux_sym_encapsed_string_token1] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [aux_sym_string_token1] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_LT_LT_LT] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1586), + [aux_sym_yield_expression_token1] = ACTIONS(1588), + [aux_sym_include_expression_token1] = ACTIONS(1588), + [aux_sym_include_once_expression_token1] = ACTIONS(1588), + [aux_sym_require_expression_token1] = ACTIONS(1588), + [aux_sym_require_once_expression_token1] = ACTIONS(1588), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1586), }, [561] = { [sym_text_interpolation] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_name] = ACTIONS(1550), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1548), - [aux_sym_function_static_declaration_token1] = ACTIONS(1550), - [aux_sym_global_declaration_token1] = ACTIONS(1550), - [aux_sym_namespace_definition_token1] = ACTIONS(1550), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1550), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1550), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1550), - [anon_sym_BSLASH] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [aux_sym_trait_declaration_token1] = ACTIONS(1550), - [aux_sym_interface_declaration_token1] = ACTIONS(1550), - [aux_sym_enum_declaration_token1] = ACTIONS(1550), - [aux_sym_enum_case_token1] = ACTIONS(1550), - [aux_sym_class_declaration_token1] = ACTIONS(1550), - [aux_sym_final_modifier_token1] = ACTIONS(1550), - [aux_sym_abstract_modifier_token1] = ACTIONS(1550), - [aux_sym_readonly_modifier_token1] = ACTIONS(1550), - [aux_sym_visibility_modifier_token1] = ACTIONS(1550), - [aux_sym_visibility_modifier_token2] = ACTIONS(1550), - [aux_sym_visibility_modifier_token3] = ACTIONS(1550), - [aux_sym__arrow_function_header_token1] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1548), - [aux_sym_cast_type_token1] = ACTIONS(1550), - [aux_sym_echo_statement_token1] = ACTIONS(1550), - [aux_sym_exit_statement_token1] = ACTIONS(1550), - [anon_sym_unset] = ACTIONS(1550), - [aux_sym_declare_statement_token1] = ACTIONS(1550), - [aux_sym_declare_statement_token2] = ACTIONS(1550), - [sym_float] = ACTIONS(1550), - [aux_sym_try_statement_token1] = ACTIONS(1550), - [aux_sym_goto_statement_token1] = ACTIONS(1550), - [aux_sym_continue_statement_token1] = ACTIONS(1550), - [aux_sym_break_statement_token1] = ACTIONS(1550), - [sym_integer] = ACTIONS(1550), - [aux_sym_return_statement_token1] = ACTIONS(1550), - [aux_sym_throw_expression_token1] = ACTIONS(1550), - [aux_sym_while_statement_token1] = ACTIONS(1550), - [aux_sym_while_statement_token2] = ACTIONS(1550), - [aux_sym_do_statement_token1] = ACTIONS(1550), - [aux_sym_for_statement_token1] = ACTIONS(1550), - [aux_sym_for_statement_token2] = ACTIONS(1550), - [aux_sym_foreach_statement_token1] = ACTIONS(1550), - [aux_sym_foreach_statement_token2] = ACTIONS(1550), - [aux_sym_if_statement_token1] = ACTIONS(1550), - [aux_sym_if_statement_token2] = ACTIONS(1550), - [aux_sym_else_if_clause_token1] = ACTIONS(1550), - [aux_sym_else_clause_token1] = ACTIONS(1550), - [aux_sym_match_expression_token1] = ACTIONS(1550), - [aux_sym_match_default_expression_token1] = ACTIONS(1550), - [aux_sym_switch_statement_token1] = ACTIONS(1550), - [aux_sym_switch_block_token1] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_AT] = ACTIONS(1548), - [aux_sym_clone_expression_token1] = ACTIONS(1550), - [aux_sym_print_intrinsic_token1] = ACTIONS(1550), - [aux_sym_object_creation_expression_token1] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(1548), - [aux_sym__list_destructing_token1] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_self] = ACTIONS(1550), - [anon_sym_parent] = ACTIONS(1550), - [aux_sym__argument_name_token1] = ACTIONS(1550), - [aux_sym__argument_name_token2] = ACTIONS(1550), - [anon_sym_POUND_LBRACK] = ACTIONS(1548), - [aux_sym_encapsed_string_token1] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1548), - [aux_sym_string_token1] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_LT_LT_LT] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(1548), - [aux_sym_yield_expression_token1] = ACTIONS(1550), - [aux_sym_include_expression_token1] = ACTIONS(1550), - [aux_sym_include_once_expression_token1] = ACTIONS(1550), - [aux_sym_require_expression_token1] = ACTIONS(1550), - [aux_sym_require_once_expression_token1] = ACTIONS(1550), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1548), + [ts_builtin_sym_end] = ACTIONS(1590), + [sym_name] = ACTIONS(1592), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1590), + [aux_sym_function_static_declaration_token1] = ACTIONS(1592), + [aux_sym_global_declaration_token1] = ACTIONS(1592), + [aux_sym_namespace_definition_token1] = ACTIONS(1592), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1592), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1592), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1592), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [aux_sym_trait_declaration_token1] = ACTIONS(1592), + [aux_sym_interface_declaration_token1] = ACTIONS(1592), + [aux_sym_enum_declaration_token1] = ACTIONS(1592), + [aux_sym_enum_case_token1] = ACTIONS(1592), + [aux_sym_class_declaration_token1] = ACTIONS(1592), + [aux_sym_final_modifier_token1] = ACTIONS(1592), + [aux_sym_abstract_modifier_token1] = ACTIONS(1592), + [aux_sym_readonly_modifier_token1] = ACTIONS(1592), + [aux_sym_visibility_modifier_token1] = ACTIONS(1592), + [aux_sym_visibility_modifier_token2] = ACTIONS(1592), + [aux_sym_visibility_modifier_token3] = ACTIONS(1592), + [aux_sym__arrow_function_header_token1] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1590), + [aux_sym_cast_type_token1] = ACTIONS(1592), + [aux_sym_echo_statement_token1] = ACTIONS(1592), + [aux_sym_exit_statement_token1] = ACTIONS(1592), + [anon_sym_unset] = ACTIONS(1592), + [aux_sym_declare_statement_token1] = ACTIONS(1592), + [aux_sym_declare_statement_token2] = ACTIONS(1592), + [sym_float] = ACTIONS(1592), + [aux_sym_try_statement_token1] = ACTIONS(1592), + [aux_sym_goto_statement_token1] = ACTIONS(1592), + [aux_sym_continue_statement_token1] = ACTIONS(1592), + [aux_sym_break_statement_token1] = ACTIONS(1592), + [sym_integer] = ACTIONS(1592), + [aux_sym_return_statement_token1] = ACTIONS(1592), + [aux_sym_throw_expression_token1] = ACTIONS(1592), + [aux_sym_while_statement_token1] = ACTIONS(1592), + [aux_sym_while_statement_token2] = ACTIONS(1592), + [aux_sym_do_statement_token1] = ACTIONS(1592), + [aux_sym_for_statement_token1] = ACTIONS(1592), + [aux_sym_for_statement_token2] = ACTIONS(1592), + [aux_sym_foreach_statement_token1] = ACTIONS(1592), + [aux_sym_foreach_statement_token2] = ACTIONS(1592), + [aux_sym_if_statement_token1] = ACTIONS(1592), + [aux_sym_if_statement_token2] = ACTIONS(1592), + [aux_sym_else_if_clause_token1] = ACTIONS(1592), + [aux_sym_else_clause_token1] = ACTIONS(1592), + [aux_sym_match_expression_token1] = ACTIONS(1592), + [aux_sym_match_default_expression_token1] = ACTIONS(1592), + [aux_sym_switch_statement_token1] = ACTIONS(1592), + [aux_sym_switch_block_token1] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1590), + [aux_sym_clone_expression_token1] = ACTIONS(1592), + [aux_sym_print_intrinsic_token1] = ACTIONS(1592), + [aux_sym_object_creation_expression_token1] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [aux_sym__list_destructing_token1] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_self] = ACTIONS(1592), + [anon_sym_parent] = ACTIONS(1592), + [aux_sym__argument_name_token1] = ACTIONS(1592), + [aux_sym__argument_name_token2] = ACTIONS(1592), + [anon_sym_POUND_LBRACK] = ACTIONS(1590), + [aux_sym_encapsed_string_token1] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [aux_sym_string_token1] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_LT_LT_LT] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1590), + [aux_sym_yield_expression_token1] = ACTIONS(1592), + [aux_sym_include_expression_token1] = ACTIONS(1592), + [aux_sym_include_once_expression_token1] = ACTIONS(1592), + [aux_sym_require_expression_token1] = ACTIONS(1592), + [aux_sym_require_once_expression_token1] = ACTIONS(1592), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1590), }, [562] = { [sym_text_interpolation] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym_name] = ACTIONS(1554), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1552), - [aux_sym_function_static_declaration_token1] = ACTIONS(1554), - [aux_sym_global_declaration_token1] = ACTIONS(1554), - [aux_sym_namespace_definition_token1] = ACTIONS(1554), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1554), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1554), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1554), - [anon_sym_BSLASH] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [aux_sym_trait_declaration_token1] = ACTIONS(1554), - [aux_sym_interface_declaration_token1] = ACTIONS(1554), - [aux_sym_enum_declaration_token1] = ACTIONS(1554), - [aux_sym_enum_case_token1] = ACTIONS(1554), - [aux_sym_class_declaration_token1] = ACTIONS(1554), - [aux_sym_final_modifier_token1] = ACTIONS(1554), - [aux_sym_abstract_modifier_token1] = ACTIONS(1554), - [aux_sym_readonly_modifier_token1] = ACTIONS(1554), - [aux_sym_visibility_modifier_token1] = ACTIONS(1554), - [aux_sym_visibility_modifier_token2] = ACTIONS(1554), - [aux_sym_visibility_modifier_token3] = ACTIONS(1554), - [aux_sym__arrow_function_header_token1] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1552), - [aux_sym_cast_type_token1] = ACTIONS(1554), - [aux_sym_echo_statement_token1] = ACTIONS(1554), - [aux_sym_exit_statement_token1] = ACTIONS(1554), - [anon_sym_unset] = ACTIONS(1554), - [aux_sym_declare_statement_token1] = ACTIONS(1554), - [aux_sym_declare_statement_token2] = ACTIONS(1554), - [sym_float] = ACTIONS(1554), - [aux_sym_try_statement_token1] = ACTIONS(1554), - [aux_sym_goto_statement_token1] = ACTIONS(1554), - [aux_sym_continue_statement_token1] = ACTIONS(1554), - [aux_sym_break_statement_token1] = ACTIONS(1554), - [sym_integer] = ACTIONS(1554), - [aux_sym_return_statement_token1] = ACTIONS(1554), - [aux_sym_throw_expression_token1] = ACTIONS(1554), - [aux_sym_while_statement_token1] = ACTIONS(1554), - [aux_sym_while_statement_token2] = ACTIONS(1554), - [aux_sym_do_statement_token1] = ACTIONS(1554), - [aux_sym_for_statement_token1] = ACTIONS(1554), - [aux_sym_for_statement_token2] = ACTIONS(1554), - [aux_sym_foreach_statement_token1] = ACTIONS(1554), - [aux_sym_foreach_statement_token2] = ACTIONS(1554), - [aux_sym_if_statement_token1] = ACTIONS(1554), - [aux_sym_if_statement_token2] = ACTIONS(1554), - [aux_sym_else_if_clause_token1] = ACTIONS(1554), - [aux_sym_else_clause_token1] = ACTIONS(1554), - [aux_sym_match_expression_token1] = ACTIONS(1554), - [aux_sym_match_default_expression_token1] = ACTIONS(1554), - [aux_sym_switch_statement_token1] = ACTIONS(1554), - [aux_sym_switch_block_token1] = ACTIONS(1554), - [anon_sym_PLUS] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_TILDE] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_AT] = ACTIONS(1552), - [aux_sym_clone_expression_token1] = ACTIONS(1554), - [aux_sym_print_intrinsic_token1] = ACTIONS(1554), - [aux_sym_object_creation_expression_token1] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [aux_sym__list_destructing_token1] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_self] = ACTIONS(1554), - [anon_sym_parent] = ACTIONS(1554), - [aux_sym__argument_name_token1] = ACTIONS(1554), - [aux_sym__argument_name_token2] = ACTIONS(1554), - [anon_sym_POUND_LBRACK] = ACTIONS(1552), - [aux_sym_encapsed_string_token1] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [aux_sym_string_token1] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1552), - [anon_sym_LT_LT_LT] = ACTIONS(1552), - [anon_sym_BQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1552), - [aux_sym_yield_expression_token1] = ACTIONS(1554), - [aux_sym_include_expression_token1] = ACTIONS(1554), - [aux_sym_include_once_expression_token1] = ACTIONS(1554), - [aux_sym_require_expression_token1] = ACTIONS(1554), - [aux_sym_require_once_expression_token1] = ACTIONS(1554), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1552), + [ts_builtin_sym_end] = ACTIONS(1594), + [sym_name] = ACTIONS(1596), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1594), + [aux_sym_function_static_declaration_token1] = ACTIONS(1596), + [aux_sym_global_declaration_token1] = ACTIONS(1596), + [aux_sym_namespace_definition_token1] = ACTIONS(1596), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1596), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1596), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [aux_sym_trait_declaration_token1] = ACTIONS(1596), + [aux_sym_interface_declaration_token1] = ACTIONS(1596), + [aux_sym_enum_declaration_token1] = ACTIONS(1596), + [aux_sym_enum_case_token1] = ACTIONS(1596), + [aux_sym_class_declaration_token1] = ACTIONS(1596), + [aux_sym_final_modifier_token1] = ACTIONS(1596), + [aux_sym_abstract_modifier_token1] = ACTIONS(1596), + [aux_sym_readonly_modifier_token1] = ACTIONS(1596), + [aux_sym_visibility_modifier_token1] = ACTIONS(1596), + [aux_sym_visibility_modifier_token2] = ACTIONS(1596), + [aux_sym_visibility_modifier_token3] = ACTIONS(1596), + [aux_sym__arrow_function_header_token1] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1594), + [aux_sym_cast_type_token1] = ACTIONS(1596), + [aux_sym_echo_statement_token1] = ACTIONS(1596), + [aux_sym_exit_statement_token1] = ACTIONS(1596), + [anon_sym_unset] = ACTIONS(1596), + [aux_sym_declare_statement_token1] = ACTIONS(1596), + [aux_sym_declare_statement_token2] = ACTIONS(1596), + [sym_float] = ACTIONS(1596), + [aux_sym_try_statement_token1] = ACTIONS(1596), + [aux_sym_goto_statement_token1] = ACTIONS(1596), + [aux_sym_continue_statement_token1] = ACTIONS(1596), + [aux_sym_break_statement_token1] = ACTIONS(1596), + [sym_integer] = ACTIONS(1596), + [aux_sym_return_statement_token1] = ACTIONS(1596), + [aux_sym_throw_expression_token1] = ACTIONS(1596), + [aux_sym_while_statement_token1] = ACTIONS(1596), + [aux_sym_while_statement_token2] = ACTIONS(1596), + [aux_sym_do_statement_token1] = ACTIONS(1596), + [aux_sym_for_statement_token1] = ACTIONS(1596), + [aux_sym_for_statement_token2] = ACTIONS(1596), + [aux_sym_foreach_statement_token1] = ACTIONS(1596), + [aux_sym_foreach_statement_token2] = ACTIONS(1596), + [aux_sym_if_statement_token1] = ACTIONS(1596), + [aux_sym_if_statement_token2] = ACTIONS(1596), + [aux_sym_else_if_clause_token1] = ACTIONS(1596), + [aux_sym_else_clause_token1] = ACTIONS(1596), + [aux_sym_match_expression_token1] = ACTIONS(1596), + [aux_sym_match_default_expression_token1] = ACTIONS(1596), + [aux_sym_switch_statement_token1] = ACTIONS(1596), + [aux_sym_switch_block_token1] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1594), + [anon_sym_AT] = ACTIONS(1594), + [aux_sym_clone_expression_token1] = ACTIONS(1596), + [aux_sym_print_intrinsic_token1] = ACTIONS(1596), + [aux_sym_object_creation_expression_token1] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1594), + [anon_sym_PLUS_PLUS] = ACTIONS(1594), + [aux_sym__list_destructing_token1] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_self] = ACTIONS(1596), + [anon_sym_parent] = ACTIONS(1596), + [aux_sym__argument_name_token1] = ACTIONS(1596), + [aux_sym__argument_name_token2] = ACTIONS(1596), + [anon_sym_POUND_LBRACK] = ACTIONS(1594), + [aux_sym_encapsed_string_token1] = ACTIONS(1594), + [anon_sym_DQUOTE] = ACTIONS(1594), + [aux_sym_string_token1] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_LT_LT_LT] = ACTIONS(1594), + [anon_sym_BQUOTE] = ACTIONS(1594), + [anon_sym_DOLLAR] = ACTIONS(1594), + [aux_sym_yield_expression_token1] = ACTIONS(1596), + [aux_sym_include_expression_token1] = ACTIONS(1596), + [aux_sym_include_once_expression_token1] = ACTIONS(1596), + [aux_sym_require_expression_token1] = ACTIONS(1596), + [aux_sym_require_once_expression_token1] = ACTIONS(1596), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1594), }, [563] = { [sym_text_interpolation] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1556), - [sym_name] = ACTIONS(1558), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1556), - [aux_sym_function_static_declaration_token1] = ACTIONS(1558), - [aux_sym_global_declaration_token1] = ACTIONS(1558), - [aux_sym_namespace_definition_token1] = ACTIONS(1558), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1558), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1558), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1558), - [anon_sym_BSLASH] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [aux_sym_trait_declaration_token1] = ACTIONS(1558), - [aux_sym_interface_declaration_token1] = ACTIONS(1558), - [aux_sym_enum_declaration_token1] = ACTIONS(1558), - [aux_sym_enum_case_token1] = ACTIONS(1558), - [aux_sym_class_declaration_token1] = ACTIONS(1558), - [aux_sym_final_modifier_token1] = ACTIONS(1558), - [aux_sym_abstract_modifier_token1] = ACTIONS(1558), - [aux_sym_readonly_modifier_token1] = ACTIONS(1558), - [aux_sym_visibility_modifier_token1] = ACTIONS(1558), - [aux_sym_visibility_modifier_token2] = ACTIONS(1558), - [aux_sym_visibility_modifier_token3] = ACTIONS(1558), - [aux_sym__arrow_function_header_token1] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1556), - [aux_sym_cast_type_token1] = ACTIONS(1558), - [aux_sym_echo_statement_token1] = ACTIONS(1558), - [aux_sym_exit_statement_token1] = ACTIONS(1558), - [anon_sym_unset] = ACTIONS(1558), - [aux_sym_declare_statement_token1] = ACTIONS(1558), - [aux_sym_declare_statement_token2] = ACTIONS(1558), - [sym_float] = ACTIONS(1558), - [aux_sym_try_statement_token1] = ACTIONS(1558), - [aux_sym_goto_statement_token1] = ACTIONS(1558), - [aux_sym_continue_statement_token1] = ACTIONS(1558), - [aux_sym_break_statement_token1] = ACTIONS(1558), - [sym_integer] = ACTIONS(1558), - [aux_sym_return_statement_token1] = ACTIONS(1558), - [aux_sym_throw_expression_token1] = ACTIONS(1558), - [aux_sym_while_statement_token1] = ACTIONS(1558), - [aux_sym_while_statement_token2] = ACTIONS(1558), - [aux_sym_do_statement_token1] = ACTIONS(1558), - [aux_sym_for_statement_token1] = ACTIONS(1558), - [aux_sym_for_statement_token2] = ACTIONS(1558), - [aux_sym_foreach_statement_token1] = ACTIONS(1558), - [aux_sym_foreach_statement_token2] = ACTIONS(1558), - [aux_sym_if_statement_token1] = ACTIONS(1558), - [aux_sym_if_statement_token2] = ACTIONS(1558), - [aux_sym_else_if_clause_token1] = ACTIONS(1558), - [aux_sym_else_clause_token1] = ACTIONS(1558), - [aux_sym_match_expression_token1] = ACTIONS(1558), - [aux_sym_match_default_expression_token1] = ACTIONS(1558), - [aux_sym_switch_statement_token1] = ACTIONS(1558), - [aux_sym_switch_block_token1] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_AT] = ACTIONS(1556), - [aux_sym_clone_expression_token1] = ACTIONS(1558), - [aux_sym_print_intrinsic_token1] = ACTIONS(1558), - [aux_sym_object_creation_expression_token1] = ACTIONS(1558), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [aux_sym__list_destructing_token1] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_self] = ACTIONS(1558), - [anon_sym_parent] = ACTIONS(1558), - [aux_sym__argument_name_token1] = ACTIONS(1558), - [aux_sym__argument_name_token2] = ACTIONS(1558), - [anon_sym_POUND_LBRACK] = ACTIONS(1556), - [aux_sym_encapsed_string_token1] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [aux_sym_string_token1] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_LT_LT_LT] = ACTIONS(1556), - [anon_sym_BQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [aux_sym_yield_expression_token1] = ACTIONS(1558), - [aux_sym_include_expression_token1] = ACTIONS(1558), - [aux_sym_include_once_expression_token1] = ACTIONS(1558), - [aux_sym_require_expression_token1] = ACTIONS(1558), - [aux_sym_require_once_expression_token1] = ACTIONS(1558), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1598), + [sym_name] = ACTIONS(1600), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1598), + [aux_sym_function_static_declaration_token1] = ACTIONS(1600), + [aux_sym_global_declaration_token1] = ACTIONS(1600), + [aux_sym_namespace_definition_token1] = ACTIONS(1600), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1600), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1600), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1600), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [aux_sym_trait_declaration_token1] = ACTIONS(1600), + [aux_sym_interface_declaration_token1] = ACTIONS(1600), + [aux_sym_enum_declaration_token1] = ACTIONS(1600), + [aux_sym_enum_case_token1] = ACTIONS(1600), + [aux_sym_class_declaration_token1] = ACTIONS(1600), + [aux_sym_final_modifier_token1] = ACTIONS(1600), + [aux_sym_abstract_modifier_token1] = ACTIONS(1600), + [aux_sym_readonly_modifier_token1] = ACTIONS(1600), + [aux_sym_visibility_modifier_token1] = ACTIONS(1600), + [aux_sym_visibility_modifier_token2] = ACTIONS(1600), + [aux_sym_visibility_modifier_token3] = ACTIONS(1600), + [aux_sym__arrow_function_header_token1] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1598), + [aux_sym_cast_type_token1] = ACTIONS(1600), + [aux_sym_echo_statement_token1] = ACTIONS(1600), + [aux_sym_exit_statement_token1] = ACTIONS(1600), + [anon_sym_unset] = ACTIONS(1600), + [aux_sym_declare_statement_token1] = ACTIONS(1600), + [aux_sym_declare_statement_token2] = ACTIONS(1600), + [sym_float] = ACTIONS(1600), + [aux_sym_try_statement_token1] = ACTIONS(1600), + [aux_sym_goto_statement_token1] = ACTIONS(1600), + [aux_sym_continue_statement_token1] = ACTIONS(1600), + [aux_sym_break_statement_token1] = ACTIONS(1600), + [sym_integer] = ACTIONS(1600), + [aux_sym_return_statement_token1] = ACTIONS(1600), + [aux_sym_throw_expression_token1] = ACTIONS(1600), + [aux_sym_while_statement_token1] = ACTIONS(1600), + [aux_sym_while_statement_token2] = ACTIONS(1600), + [aux_sym_do_statement_token1] = ACTIONS(1600), + [aux_sym_for_statement_token1] = ACTIONS(1600), + [aux_sym_for_statement_token2] = ACTIONS(1600), + [aux_sym_foreach_statement_token1] = ACTIONS(1600), + [aux_sym_foreach_statement_token2] = ACTIONS(1600), + [aux_sym_if_statement_token1] = ACTIONS(1600), + [aux_sym_if_statement_token2] = ACTIONS(1600), + [aux_sym_else_if_clause_token1] = ACTIONS(1600), + [aux_sym_else_clause_token1] = ACTIONS(1600), + [aux_sym_match_expression_token1] = ACTIONS(1600), + [aux_sym_match_default_expression_token1] = ACTIONS(1600), + [aux_sym_switch_statement_token1] = ACTIONS(1600), + [aux_sym_switch_block_token1] = ACTIONS(1600), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [aux_sym_clone_expression_token1] = ACTIONS(1600), + [aux_sym_print_intrinsic_token1] = ACTIONS(1600), + [aux_sym_object_creation_expression_token1] = ACTIONS(1600), + [anon_sym_DASH_DASH] = ACTIONS(1598), + [anon_sym_PLUS_PLUS] = ACTIONS(1598), + [aux_sym__list_destructing_token1] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_self] = ACTIONS(1600), + [anon_sym_parent] = ACTIONS(1600), + [aux_sym__argument_name_token1] = ACTIONS(1600), + [aux_sym__argument_name_token2] = ACTIONS(1600), + [anon_sym_POUND_LBRACK] = ACTIONS(1598), + [aux_sym_encapsed_string_token1] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [aux_sym_string_token1] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_LT_LT_LT] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1598), + [aux_sym_yield_expression_token1] = ACTIONS(1600), + [aux_sym_include_expression_token1] = ACTIONS(1600), + [aux_sym_include_once_expression_token1] = ACTIONS(1600), + [aux_sym_require_expression_token1] = ACTIONS(1600), + [aux_sym_require_once_expression_token1] = ACTIONS(1600), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1598), }, [564] = { [sym_text_interpolation] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_name] = ACTIONS(1562), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1560), - [aux_sym_function_static_declaration_token1] = ACTIONS(1562), - [aux_sym_global_declaration_token1] = ACTIONS(1562), - [aux_sym_namespace_definition_token1] = ACTIONS(1562), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1562), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1562), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1562), - [anon_sym_BSLASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [aux_sym_trait_declaration_token1] = ACTIONS(1562), - [aux_sym_interface_declaration_token1] = ACTIONS(1562), - [aux_sym_enum_declaration_token1] = ACTIONS(1562), - [aux_sym_enum_case_token1] = ACTIONS(1562), - [aux_sym_class_declaration_token1] = ACTIONS(1562), - [aux_sym_final_modifier_token1] = ACTIONS(1562), - [aux_sym_abstract_modifier_token1] = ACTIONS(1562), - [aux_sym_readonly_modifier_token1] = ACTIONS(1562), - [aux_sym_visibility_modifier_token1] = ACTIONS(1562), - [aux_sym_visibility_modifier_token2] = ACTIONS(1562), - [aux_sym_visibility_modifier_token3] = ACTIONS(1562), - [aux_sym__arrow_function_header_token1] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1560), - [aux_sym_cast_type_token1] = ACTIONS(1562), - [aux_sym_echo_statement_token1] = ACTIONS(1562), - [aux_sym_exit_statement_token1] = ACTIONS(1562), - [anon_sym_unset] = ACTIONS(1562), - [aux_sym_declare_statement_token1] = ACTIONS(1562), - [aux_sym_declare_statement_token2] = ACTIONS(1562), - [sym_float] = ACTIONS(1562), - [aux_sym_try_statement_token1] = ACTIONS(1562), - [aux_sym_goto_statement_token1] = ACTIONS(1562), - [aux_sym_continue_statement_token1] = ACTIONS(1562), - [aux_sym_break_statement_token1] = ACTIONS(1562), - [sym_integer] = ACTIONS(1562), - [aux_sym_return_statement_token1] = ACTIONS(1562), - [aux_sym_throw_expression_token1] = ACTIONS(1562), - [aux_sym_while_statement_token1] = ACTIONS(1562), - [aux_sym_while_statement_token2] = ACTIONS(1562), - [aux_sym_do_statement_token1] = ACTIONS(1562), - [aux_sym_for_statement_token1] = ACTIONS(1562), - [aux_sym_for_statement_token2] = ACTIONS(1562), - [aux_sym_foreach_statement_token1] = ACTIONS(1562), - [aux_sym_foreach_statement_token2] = ACTIONS(1562), - [aux_sym_if_statement_token1] = ACTIONS(1562), - [aux_sym_if_statement_token2] = ACTIONS(1562), - [aux_sym_else_if_clause_token1] = ACTIONS(1562), - [aux_sym_else_clause_token1] = ACTIONS(1562), - [aux_sym_match_expression_token1] = ACTIONS(1562), - [aux_sym_match_default_expression_token1] = ACTIONS(1562), - [aux_sym_switch_statement_token1] = ACTIONS(1562), - [aux_sym_switch_block_token1] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_AT] = ACTIONS(1560), - [aux_sym_clone_expression_token1] = ACTIONS(1562), - [aux_sym_print_intrinsic_token1] = ACTIONS(1562), - [aux_sym_object_creation_expression_token1] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1560), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [aux_sym__list_destructing_token1] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_self] = ACTIONS(1562), - [anon_sym_parent] = ACTIONS(1562), - [aux_sym__argument_name_token1] = ACTIONS(1562), - [aux_sym__argument_name_token2] = ACTIONS(1562), - [anon_sym_POUND_LBRACK] = ACTIONS(1560), - [aux_sym_encapsed_string_token1] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [aux_sym_string_token1] = ACTIONS(1560), - [anon_sym_SQUOTE] = ACTIONS(1560), - [anon_sym_LT_LT_LT] = ACTIONS(1560), - [anon_sym_BQUOTE] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1560), - [aux_sym_yield_expression_token1] = ACTIONS(1562), - [aux_sym_include_expression_token1] = ACTIONS(1562), - [aux_sym_include_once_expression_token1] = ACTIONS(1562), - [aux_sym_require_expression_token1] = ACTIONS(1562), - [aux_sym_require_once_expression_token1] = ACTIONS(1562), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1602), + [sym_name] = ACTIONS(1604), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1602), + [aux_sym_function_static_declaration_token1] = ACTIONS(1604), + [aux_sym_global_declaration_token1] = ACTIONS(1604), + [aux_sym_namespace_definition_token1] = ACTIONS(1604), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1604), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1604), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1604), + [anon_sym_BSLASH] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [aux_sym_trait_declaration_token1] = ACTIONS(1604), + [aux_sym_interface_declaration_token1] = ACTIONS(1604), + [aux_sym_enum_declaration_token1] = ACTIONS(1604), + [aux_sym_enum_case_token1] = ACTIONS(1604), + [aux_sym_class_declaration_token1] = ACTIONS(1604), + [aux_sym_final_modifier_token1] = ACTIONS(1604), + [aux_sym_abstract_modifier_token1] = ACTIONS(1604), + [aux_sym_readonly_modifier_token1] = ACTIONS(1604), + [aux_sym_visibility_modifier_token1] = ACTIONS(1604), + [aux_sym_visibility_modifier_token2] = ACTIONS(1604), + [aux_sym_visibility_modifier_token3] = ACTIONS(1604), + [aux_sym__arrow_function_header_token1] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1602), + [aux_sym_cast_type_token1] = ACTIONS(1604), + [aux_sym_echo_statement_token1] = ACTIONS(1604), + [aux_sym_exit_statement_token1] = ACTIONS(1604), + [anon_sym_unset] = ACTIONS(1604), + [aux_sym_declare_statement_token1] = ACTIONS(1604), + [aux_sym_declare_statement_token2] = ACTIONS(1604), + [sym_float] = ACTIONS(1604), + [aux_sym_try_statement_token1] = ACTIONS(1604), + [aux_sym_goto_statement_token1] = ACTIONS(1604), + [aux_sym_continue_statement_token1] = ACTIONS(1604), + [aux_sym_break_statement_token1] = ACTIONS(1604), + [sym_integer] = ACTIONS(1604), + [aux_sym_return_statement_token1] = ACTIONS(1604), + [aux_sym_throw_expression_token1] = ACTIONS(1604), + [aux_sym_while_statement_token1] = ACTIONS(1604), + [aux_sym_while_statement_token2] = ACTIONS(1604), + [aux_sym_do_statement_token1] = ACTIONS(1604), + [aux_sym_for_statement_token1] = ACTIONS(1604), + [aux_sym_for_statement_token2] = ACTIONS(1604), + [aux_sym_foreach_statement_token1] = ACTIONS(1604), + [aux_sym_foreach_statement_token2] = ACTIONS(1604), + [aux_sym_if_statement_token1] = ACTIONS(1604), + [aux_sym_if_statement_token2] = ACTIONS(1604), + [aux_sym_else_if_clause_token1] = ACTIONS(1604), + [aux_sym_else_clause_token1] = ACTIONS(1604), + [aux_sym_match_expression_token1] = ACTIONS(1604), + [aux_sym_match_default_expression_token1] = ACTIONS(1604), + [aux_sym_switch_statement_token1] = ACTIONS(1604), + [aux_sym_switch_block_token1] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_AT] = ACTIONS(1602), + [aux_sym_clone_expression_token1] = ACTIONS(1604), + [aux_sym_print_intrinsic_token1] = ACTIONS(1604), + [aux_sym_object_creation_expression_token1] = ACTIONS(1604), + [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_PLUS_PLUS] = ACTIONS(1602), + [aux_sym__list_destructing_token1] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_self] = ACTIONS(1604), + [anon_sym_parent] = ACTIONS(1604), + [aux_sym__argument_name_token1] = ACTIONS(1604), + [aux_sym__argument_name_token2] = ACTIONS(1604), + [anon_sym_POUND_LBRACK] = ACTIONS(1602), + [aux_sym_encapsed_string_token1] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(1602), + [aux_sym_string_token1] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_LT_LT_LT] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1602), + [aux_sym_yield_expression_token1] = ACTIONS(1604), + [aux_sym_include_expression_token1] = ACTIONS(1604), + [aux_sym_include_once_expression_token1] = ACTIONS(1604), + [aux_sym_require_expression_token1] = ACTIONS(1604), + [aux_sym_require_once_expression_token1] = ACTIONS(1604), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1602), }, [565] = { [sym_text_interpolation] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_name] = ACTIONS(1566), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1564), - [aux_sym_function_static_declaration_token1] = ACTIONS(1566), - [aux_sym_global_declaration_token1] = ACTIONS(1566), - [aux_sym_namespace_definition_token1] = ACTIONS(1566), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1566), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1566), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1566), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [aux_sym_trait_declaration_token1] = ACTIONS(1566), - [aux_sym_interface_declaration_token1] = ACTIONS(1566), - [aux_sym_enum_declaration_token1] = ACTIONS(1566), - [aux_sym_enum_case_token1] = ACTIONS(1566), - [aux_sym_class_declaration_token1] = ACTIONS(1566), - [aux_sym_final_modifier_token1] = ACTIONS(1566), - [aux_sym_abstract_modifier_token1] = ACTIONS(1566), - [aux_sym_readonly_modifier_token1] = ACTIONS(1566), - [aux_sym_visibility_modifier_token1] = ACTIONS(1566), - [aux_sym_visibility_modifier_token2] = ACTIONS(1566), - [aux_sym_visibility_modifier_token3] = ACTIONS(1566), - [aux_sym__arrow_function_header_token1] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1564), - [aux_sym_cast_type_token1] = ACTIONS(1566), - [aux_sym_echo_statement_token1] = ACTIONS(1566), - [aux_sym_exit_statement_token1] = ACTIONS(1566), - [anon_sym_unset] = ACTIONS(1566), - [aux_sym_declare_statement_token1] = ACTIONS(1566), - [aux_sym_declare_statement_token2] = ACTIONS(1566), - [sym_float] = ACTIONS(1566), - [aux_sym_try_statement_token1] = ACTIONS(1566), - [aux_sym_goto_statement_token1] = ACTIONS(1566), - [aux_sym_continue_statement_token1] = ACTIONS(1566), - [aux_sym_break_statement_token1] = ACTIONS(1566), - [sym_integer] = ACTIONS(1566), - [aux_sym_return_statement_token1] = ACTIONS(1566), - [aux_sym_throw_expression_token1] = ACTIONS(1566), - [aux_sym_while_statement_token1] = ACTIONS(1566), - [aux_sym_while_statement_token2] = ACTIONS(1566), - [aux_sym_do_statement_token1] = ACTIONS(1566), - [aux_sym_for_statement_token1] = ACTIONS(1566), - [aux_sym_for_statement_token2] = ACTIONS(1566), - [aux_sym_foreach_statement_token1] = ACTIONS(1566), - [aux_sym_foreach_statement_token2] = ACTIONS(1566), - [aux_sym_if_statement_token1] = ACTIONS(1566), - [aux_sym_if_statement_token2] = ACTIONS(1566), - [aux_sym_else_if_clause_token1] = ACTIONS(1566), - [aux_sym_else_clause_token1] = ACTIONS(1566), - [aux_sym_match_expression_token1] = ACTIONS(1566), - [aux_sym_match_default_expression_token1] = ACTIONS(1566), - [aux_sym_switch_statement_token1] = ACTIONS(1566), - [aux_sym_switch_block_token1] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_AT] = ACTIONS(1564), - [aux_sym_clone_expression_token1] = ACTIONS(1566), - [aux_sym_print_intrinsic_token1] = ACTIONS(1566), - [aux_sym_object_creation_expression_token1] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [aux_sym__list_destructing_token1] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_self] = ACTIONS(1566), - [anon_sym_parent] = ACTIONS(1566), - [aux_sym__argument_name_token1] = ACTIONS(1566), - [aux_sym__argument_name_token2] = ACTIONS(1566), - [anon_sym_POUND_LBRACK] = ACTIONS(1564), - [aux_sym_encapsed_string_token1] = ACTIONS(1564), - [anon_sym_DQUOTE] = ACTIONS(1564), - [aux_sym_string_token1] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1564), - [anon_sym_LT_LT_LT] = ACTIONS(1564), - [anon_sym_BQUOTE] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1564), - [aux_sym_yield_expression_token1] = ACTIONS(1566), - [aux_sym_include_expression_token1] = ACTIONS(1566), - [aux_sym_include_once_expression_token1] = ACTIONS(1566), - [aux_sym_require_expression_token1] = ACTIONS(1566), - [aux_sym_require_once_expression_token1] = ACTIONS(1566), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1564), + [ts_builtin_sym_end] = ACTIONS(1606), + [sym_name] = ACTIONS(1608), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1606), + [aux_sym_function_static_declaration_token1] = ACTIONS(1608), + [aux_sym_global_declaration_token1] = ACTIONS(1608), + [aux_sym_namespace_definition_token1] = ACTIONS(1608), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1608), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1608), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [aux_sym_trait_declaration_token1] = ACTIONS(1608), + [aux_sym_interface_declaration_token1] = ACTIONS(1608), + [aux_sym_enum_declaration_token1] = ACTIONS(1608), + [aux_sym_enum_case_token1] = ACTIONS(1608), + [aux_sym_class_declaration_token1] = ACTIONS(1608), + [aux_sym_final_modifier_token1] = ACTIONS(1608), + [aux_sym_abstract_modifier_token1] = ACTIONS(1608), + [aux_sym_readonly_modifier_token1] = ACTIONS(1608), + [aux_sym_visibility_modifier_token1] = ACTIONS(1608), + [aux_sym_visibility_modifier_token2] = ACTIONS(1608), + [aux_sym_visibility_modifier_token3] = ACTIONS(1608), + [aux_sym__arrow_function_header_token1] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1606), + [aux_sym_cast_type_token1] = ACTIONS(1608), + [aux_sym_echo_statement_token1] = ACTIONS(1608), + [aux_sym_exit_statement_token1] = ACTIONS(1608), + [anon_sym_unset] = ACTIONS(1608), + [aux_sym_declare_statement_token1] = ACTIONS(1608), + [aux_sym_declare_statement_token2] = ACTIONS(1608), + [sym_float] = ACTIONS(1608), + [aux_sym_try_statement_token1] = ACTIONS(1608), + [aux_sym_goto_statement_token1] = ACTIONS(1608), + [aux_sym_continue_statement_token1] = ACTIONS(1608), + [aux_sym_break_statement_token1] = ACTIONS(1608), + [sym_integer] = ACTIONS(1608), + [aux_sym_return_statement_token1] = ACTIONS(1608), + [aux_sym_throw_expression_token1] = ACTIONS(1608), + [aux_sym_while_statement_token1] = ACTIONS(1608), + [aux_sym_while_statement_token2] = ACTIONS(1608), + [aux_sym_do_statement_token1] = ACTIONS(1608), + [aux_sym_for_statement_token1] = ACTIONS(1608), + [aux_sym_for_statement_token2] = ACTIONS(1608), + [aux_sym_foreach_statement_token1] = ACTIONS(1608), + [aux_sym_foreach_statement_token2] = ACTIONS(1608), + [aux_sym_if_statement_token1] = ACTIONS(1608), + [aux_sym_if_statement_token2] = ACTIONS(1608), + [aux_sym_else_if_clause_token1] = ACTIONS(1608), + [aux_sym_else_clause_token1] = ACTIONS(1608), + [aux_sym_match_expression_token1] = ACTIONS(1608), + [aux_sym_match_default_expression_token1] = ACTIONS(1608), + [aux_sym_switch_statement_token1] = ACTIONS(1608), + [aux_sym_switch_block_token1] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_AT] = ACTIONS(1606), + [aux_sym_clone_expression_token1] = ACTIONS(1608), + [aux_sym_print_intrinsic_token1] = ACTIONS(1608), + [aux_sym_object_creation_expression_token1] = ACTIONS(1608), + [anon_sym_DASH_DASH] = ACTIONS(1606), + [anon_sym_PLUS_PLUS] = ACTIONS(1606), + [aux_sym__list_destructing_token1] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_self] = ACTIONS(1608), + [anon_sym_parent] = ACTIONS(1608), + [aux_sym__argument_name_token1] = ACTIONS(1608), + [aux_sym__argument_name_token2] = ACTIONS(1608), + [anon_sym_POUND_LBRACK] = ACTIONS(1606), + [aux_sym_encapsed_string_token1] = ACTIONS(1606), + [anon_sym_DQUOTE] = ACTIONS(1606), + [aux_sym_string_token1] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_LT_LT_LT] = ACTIONS(1606), + [anon_sym_BQUOTE] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [aux_sym_yield_expression_token1] = ACTIONS(1608), + [aux_sym_include_expression_token1] = ACTIONS(1608), + [aux_sym_include_once_expression_token1] = ACTIONS(1608), + [aux_sym_require_expression_token1] = ACTIONS(1608), + [aux_sym_require_once_expression_token1] = ACTIONS(1608), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1606), }, [566] = { [sym_text_interpolation] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(1568), - [sym_name] = ACTIONS(1570), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1568), - [aux_sym_function_static_declaration_token1] = ACTIONS(1570), - [aux_sym_global_declaration_token1] = ACTIONS(1570), - [aux_sym_namespace_definition_token1] = ACTIONS(1570), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1570), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1570), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1570), - [anon_sym_BSLASH] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [aux_sym_trait_declaration_token1] = ACTIONS(1570), - [aux_sym_interface_declaration_token1] = ACTIONS(1570), - [aux_sym_enum_declaration_token1] = ACTIONS(1570), - [aux_sym_enum_case_token1] = ACTIONS(1570), - [aux_sym_class_declaration_token1] = ACTIONS(1570), - [aux_sym_final_modifier_token1] = ACTIONS(1570), - [aux_sym_abstract_modifier_token1] = ACTIONS(1570), - [aux_sym_readonly_modifier_token1] = ACTIONS(1570), - [aux_sym_visibility_modifier_token1] = ACTIONS(1570), - [aux_sym_visibility_modifier_token2] = ACTIONS(1570), - [aux_sym_visibility_modifier_token3] = ACTIONS(1570), - [aux_sym__arrow_function_header_token1] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1568), - [aux_sym_cast_type_token1] = ACTIONS(1570), - [aux_sym_echo_statement_token1] = ACTIONS(1570), - [aux_sym_exit_statement_token1] = ACTIONS(1570), - [anon_sym_unset] = ACTIONS(1570), - [aux_sym_declare_statement_token1] = ACTIONS(1570), - [aux_sym_declare_statement_token2] = ACTIONS(1570), - [sym_float] = ACTIONS(1570), - [aux_sym_try_statement_token1] = ACTIONS(1570), - [aux_sym_goto_statement_token1] = ACTIONS(1570), - [aux_sym_continue_statement_token1] = ACTIONS(1570), - [aux_sym_break_statement_token1] = ACTIONS(1570), - [sym_integer] = ACTIONS(1570), - [aux_sym_return_statement_token1] = ACTIONS(1570), - [aux_sym_throw_expression_token1] = ACTIONS(1570), - [aux_sym_while_statement_token1] = ACTIONS(1570), - [aux_sym_while_statement_token2] = ACTIONS(1570), - [aux_sym_do_statement_token1] = ACTIONS(1570), - [aux_sym_for_statement_token1] = ACTIONS(1570), - [aux_sym_for_statement_token2] = ACTIONS(1570), - [aux_sym_foreach_statement_token1] = ACTIONS(1570), - [aux_sym_foreach_statement_token2] = ACTIONS(1570), - [aux_sym_if_statement_token1] = ACTIONS(1570), - [aux_sym_if_statement_token2] = ACTIONS(1570), - [aux_sym_else_if_clause_token1] = ACTIONS(1570), - [aux_sym_else_clause_token1] = ACTIONS(1570), - [aux_sym_match_expression_token1] = ACTIONS(1570), - [aux_sym_match_default_expression_token1] = ACTIONS(1570), - [aux_sym_switch_statement_token1] = ACTIONS(1570), - [aux_sym_switch_block_token1] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_AT] = ACTIONS(1568), - [aux_sym_clone_expression_token1] = ACTIONS(1570), - [aux_sym_print_intrinsic_token1] = ACTIONS(1570), - [aux_sym_object_creation_expression_token1] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1568), - [aux_sym__list_destructing_token1] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_self] = ACTIONS(1570), - [anon_sym_parent] = ACTIONS(1570), - [aux_sym__argument_name_token1] = ACTIONS(1570), - [aux_sym__argument_name_token2] = ACTIONS(1570), - [anon_sym_POUND_LBRACK] = ACTIONS(1568), - [aux_sym_encapsed_string_token1] = ACTIONS(1568), - [anon_sym_DQUOTE] = ACTIONS(1568), - [aux_sym_string_token1] = ACTIONS(1568), - [anon_sym_SQUOTE] = ACTIONS(1568), - [anon_sym_LT_LT_LT] = ACTIONS(1568), - [anon_sym_BQUOTE] = ACTIONS(1568), - [anon_sym_DOLLAR] = ACTIONS(1568), - [aux_sym_yield_expression_token1] = ACTIONS(1570), - [aux_sym_include_expression_token1] = ACTIONS(1570), - [aux_sym_include_once_expression_token1] = ACTIONS(1570), - [aux_sym_require_expression_token1] = ACTIONS(1570), - [aux_sym_require_once_expression_token1] = ACTIONS(1570), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1610), + [sym_name] = ACTIONS(1612), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1610), + [aux_sym_function_static_declaration_token1] = ACTIONS(1612), + [aux_sym_global_declaration_token1] = ACTIONS(1612), + [aux_sym_namespace_definition_token1] = ACTIONS(1612), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1612), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1612), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1612), + [anon_sym_BSLASH] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [aux_sym_trait_declaration_token1] = ACTIONS(1612), + [aux_sym_interface_declaration_token1] = ACTIONS(1612), + [aux_sym_enum_declaration_token1] = ACTIONS(1612), + [aux_sym_enum_case_token1] = ACTIONS(1612), + [aux_sym_class_declaration_token1] = ACTIONS(1612), + [aux_sym_final_modifier_token1] = ACTIONS(1612), + [aux_sym_abstract_modifier_token1] = ACTIONS(1612), + [aux_sym_readonly_modifier_token1] = ACTIONS(1612), + [aux_sym_visibility_modifier_token1] = ACTIONS(1612), + [aux_sym_visibility_modifier_token2] = ACTIONS(1612), + [aux_sym_visibility_modifier_token3] = ACTIONS(1612), + [aux_sym__arrow_function_header_token1] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1610), + [aux_sym_cast_type_token1] = ACTIONS(1612), + [aux_sym_echo_statement_token1] = ACTIONS(1612), + [aux_sym_exit_statement_token1] = ACTIONS(1612), + [anon_sym_unset] = ACTIONS(1612), + [aux_sym_declare_statement_token1] = ACTIONS(1612), + [aux_sym_declare_statement_token2] = ACTIONS(1612), + [sym_float] = ACTIONS(1612), + [aux_sym_try_statement_token1] = ACTIONS(1612), + [aux_sym_goto_statement_token1] = ACTIONS(1612), + [aux_sym_continue_statement_token1] = ACTIONS(1612), + [aux_sym_break_statement_token1] = ACTIONS(1612), + [sym_integer] = ACTIONS(1612), + [aux_sym_return_statement_token1] = ACTIONS(1612), + [aux_sym_throw_expression_token1] = ACTIONS(1612), + [aux_sym_while_statement_token1] = ACTIONS(1612), + [aux_sym_while_statement_token2] = ACTIONS(1612), + [aux_sym_do_statement_token1] = ACTIONS(1612), + [aux_sym_for_statement_token1] = ACTIONS(1612), + [aux_sym_for_statement_token2] = ACTIONS(1612), + [aux_sym_foreach_statement_token1] = ACTIONS(1612), + [aux_sym_foreach_statement_token2] = ACTIONS(1612), + [aux_sym_if_statement_token1] = ACTIONS(1612), + [aux_sym_if_statement_token2] = ACTIONS(1612), + [aux_sym_else_if_clause_token1] = ACTIONS(1612), + [aux_sym_else_clause_token1] = ACTIONS(1612), + [aux_sym_match_expression_token1] = ACTIONS(1612), + [aux_sym_match_default_expression_token1] = ACTIONS(1612), + [aux_sym_switch_statement_token1] = ACTIONS(1612), + [aux_sym_switch_block_token1] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [aux_sym_clone_expression_token1] = ACTIONS(1612), + [aux_sym_print_intrinsic_token1] = ACTIONS(1612), + [aux_sym_object_creation_expression_token1] = ACTIONS(1612), + [anon_sym_DASH_DASH] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1610), + [aux_sym__list_destructing_token1] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_self] = ACTIONS(1612), + [anon_sym_parent] = ACTIONS(1612), + [aux_sym__argument_name_token1] = ACTIONS(1612), + [aux_sym__argument_name_token2] = ACTIONS(1612), + [anon_sym_POUND_LBRACK] = ACTIONS(1610), + [aux_sym_encapsed_string_token1] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [aux_sym_string_token1] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_LT_LT_LT] = ACTIONS(1610), + [anon_sym_BQUOTE] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1610), + [aux_sym_yield_expression_token1] = ACTIONS(1612), + [aux_sym_include_expression_token1] = ACTIONS(1612), + [aux_sym_include_once_expression_token1] = ACTIONS(1612), + [aux_sym_require_expression_token1] = ACTIONS(1612), + [aux_sym_require_once_expression_token1] = ACTIONS(1612), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1610), }, [567] = { [sym_text_interpolation] = STATE(567), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__unary_expression] = STATE(931), - [sym_unary_op_expression] = STATE(957), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [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(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_include_expression] = STATE(931), - [sym_include_once_expression] = STATE(931), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [ts_builtin_sym_end] = ACTIONS(1606), + [sym_name] = ACTIONS(1608), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1606), + [aux_sym_function_static_declaration_token1] = ACTIONS(1608), + [aux_sym_global_declaration_token1] = ACTIONS(1608), + [aux_sym_namespace_definition_token1] = ACTIONS(1608), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1608), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1608), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [aux_sym_trait_declaration_token1] = ACTIONS(1608), + [aux_sym_interface_declaration_token1] = ACTIONS(1608), + [aux_sym_enum_declaration_token1] = ACTIONS(1608), + [aux_sym_enum_case_token1] = ACTIONS(1608), + [aux_sym_class_declaration_token1] = ACTIONS(1608), + [aux_sym_final_modifier_token1] = ACTIONS(1608), + [aux_sym_abstract_modifier_token1] = ACTIONS(1608), + [aux_sym_readonly_modifier_token1] = ACTIONS(1608), + [aux_sym_visibility_modifier_token1] = ACTIONS(1608), + [aux_sym_visibility_modifier_token2] = ACTIONS(1608), + [aux_sym_visibility_modifier_token3] = ACTIONS(1608), + [aux_sym__arrow_function_header_token1] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1606), + [aux_sym_cast_type_token1] = ACTIONS(1608), + [aux_sym_echo_statement_token1] = ACTIONS(1608), + [aux_sym_exit_statement_token1] = ACTIONS(1608), + [anon_sym_unset] = ACTIONS(1608), + [aux_sym_declare_statement_token1] = ACTIONS(1608), + [aux_sym_declare_statement_token2] = ACTIONS(1608), + [sym_float] = ACTIONS(1608), + [aux_sym_try_statement_token1] = ACTIONS(1608), + [aux_sym_goto_statement_token1] = ACTIONS(1608), + [aux_sym_continue_statement_token1] = ACTIONS(1608), + [aux_sym_break_statement_token1] = ACTIONS(1608), + [sym_integer] = ACTIONS(1608), + [aux_sym_return_statement_token1] = ACTIONS(1608), + [aux_sym_throw_expression_token1] = ACTIONS(1608), + [aux_sym_while_statement_token1] = ACTIONS(1608), + [aux_sym_while_statement_token2] = ACTIONS(1608), + [aux_sym_do_statement_token1] = ACTIONS(1608), + [aux_sym_for_statement_token1] = ACTIONS(1608), + [aux_sym_for_statement_token2] = ACTIONS(1608), + [aux_sym_foreach_statement_token1] = ACTIONS(1608), + [aux_sym_foreach_statement_token2] = ACTIONS(1608), + [aux_sym_if_statement_token1] = ACTIONS(1608), + [aux_sym_if_statement_token2] = ACTIONS(1608), + [aux_sym_else_if_clause_token1] = ACTIONS(1608), + [aux_sym_else_clause_token1] = ACTIONS(1608), + [aux_sym_match_expression_token1] = ACTIONS(1608), + [aux_sym_match_default_expression_token1] = ACTIONS(1608), + [aux_sym_switch_statement_token1] = ACTIONS(1608), + [aux_sym_switch_block_token1] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_AT] = ACTIONS(1606), + [aux_sym_clone_expression_token1] = ACTIONS(1608), + [aux_sym_print_intrinsic_token1] = ACTIONS(1608), + [aux_sym_object_creation_expression_token1] = ACTIONS(1608), + [anon_sym_DASH_DASH] = ACTIONS(1606), + [anon_sym_PLUS_PLUS] = ACTIONS(1606), + [aux_sym__list_destructing_token1] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_self] = ACTIONS(1608), + [anon_sym_parent] = ACTIONS(1608), + [aux_sym__argument_name_token1] = ACTIONS(1608), + [aux_sym__argument_name_token2] = ACTIONS(1608), + [anon_sym_POUND_LBRACK] = ACTIONS(1606), + [aux_sym_encapsed_string_token1] = ACTIONS(1606), + [anon_sym_DQUOTE] = ACTIONS(1606), + [aux_sym_string_token1] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_LT_LT_LT] = ACTIONS(1606), + [anon_sym_BQUOTE] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [aux_sym_yield_expression_token1] = ACTIONS(1608), + [aux_sym_include_expression_token1] = ACTIONS(1608), + [aux_sym_include_once_expression_token1] = ACTIONS(1608), + [aux_sym_require_expression_token1] = ACTIONS(1608), + [aux_sym_require_once_expression_token1] = ACTIONS(1608), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1606), + }, + [568] = { + [sym_text_interpolation] = STATE(568), + [ts_builtin_sym_end] = ACTIONS(1614), + [sym_name] = ACTIONS(1616), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1614), + [aux_sym_function_static_declaration_token1] = ACTIONS(1616), + [aux_sym_global_declaration_token1] = ACTIONS(1616), + [aux_sym_namespace_definition_token1] = ACTIONS(1616), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1616), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1616), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [aux_sym_trait_declaration_token1] = ACTIONS(1616), + [aux_sym_interface_declaration_token1] = ACTIONS(1616), + [aux_sym_enum_declaration_token1] = ACTIONS(1616), + [aux_sym_enum_case_token1] = ACTIONS(1616), + [aux_sym_class_declaration_token1] = ACTIONS(1616), + [aux_sym_final_modifier_token1] = ACTIONS(1616), + [aux_sym_abstract_modifier_token1] = ACTIONS(1616), + [aux_sym_readonly_modifier_token1] = ACTIONS(1616), + [aux_sym_visibility_modifier_token1] = ACTIONS(1616), + [aux_sym_visibility_modifier_token2] = ACTIONS(1616), + [aux_sym_visibility_modifier_token3] = ACTIONS(1616), + [aux_sym__arrow_function_header_token1] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1614), + [aux_sym_cast_type_token1] = ACTIONS(1616), + [aux_sym_echo_statement_token1] = ACTIONS(1616), + [aux_sym_exit_statement_token1] = ACTIONS(1616), + [anon_sym_unset] = ACTIONS(1616), + [aux_sym_declare_statement_token1] = ACTIONS(1616), + [aux_sym_declare_statement_token2] = ACTIONS(1616), + [sym_float] = ACTIONS(1616), + [aux_sym_try_statement_token1] = ACTIONS(1616), + [aux_sym_goto_statement_token1] = ACTIONS(1616), + [aux_sym_continue_statement_token1] = ACTIONS(1616), + [aux_sym_break_statement_token1] = ACTIONS(1616), + [sym_integer] = ACTIONS(1616), + [aux_sym_return_statement_token1] = ACTIONS(1616), + [aux_sym_throw_expression_token1] = ACTIONS(1616), + [aux_sym_while_statement_token1] = ACTIONS(1616), + [aux_sym_while_statement_token2] = ACTIONS(1616), + [aux_sym_do_statement_token1] = ACTIONS(1616), + [aux_sym_for_statement_token1] = ACTIONS(1616), + [aux_sym_for_statement_token2] = ACTIONS(1616), + [aux_sym_foreach_statement_token1] = ACTIONS(1616), + [aux_sym_foreach_statement_token2] = ACTIONS(1616), + [aux_sym_if_statement_token1] = ACTIONS(1616), + [aux_sym_if_statement_token2] = ACTIONS(1616), + [aux_sym_else_if_clause_token1] = ACTIONS(1616), + [aux_sym_else_clause_token1] = ACTIONS(1616), + [aux_sym_match_expression_token1] = ACTIONS(1616), + [aux_sym_match_default_expression_token1] = ACTIONS(1616), + [aux_sym_switch_statement_token1] = ACTIONS(1616), + [aux_sym_switch_block_token1] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_AT] = ACTIONS(1614), + [aux_sym_clone_expression_token1] = ACTIONS(1616), + [aux_sym_print_intrinsic_token1] = ACTIONS(1616), + [aux_sym_object_creation_expression_token1] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1614), + [aux_sym__list_destructing_token1] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_self] = ACTIONS(1616), + [anon_sym_parent] = ACTIONS(1616), + [aux_sym__argument_name_token1] = ACTIONS(1616), + [aux_sym__argument_name_token2] = ACTIONS(1616), + [anon_sym_POUND_LBRACK] = ACTIONS(1614), + [aux_sym_encapsed_string_token1] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [aux_sym_string_token1] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_LT_LT_LT] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [aux_sym_yield_expression_token1] = ACTIONS(1616), + [aux_sym_include_expression_token1] = ACTIONS(1616), + [aux_sym_include_once_expression_token1] = ACTIONS(1616), + [aux_sym_require_expression_token1] = ACTIONS(1616), + [aux_sym_require_once_expression_token1] = ACTIONS(1616), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1614), + }, + [569] = { + [sym_text_interpolation] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1618), + [sym_name] = ACTIONS(1620), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1618), + [aux_sym_function_static_declaration_token1] = ACTIONS(1620), + [aux_sym_global_declaration_token1] = ACTIONS(1620), + [aux_sym_namespace_definition_token1] = ACTIONS(1620), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1620), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1620), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [aux_sym_trait_declaration_token1] = ACTIONS(1620), + [aux_sym_interface_declaration_token1] = ACTIONS(1620), + [aux_sym_enum_declaration_token1] = ACTIONS(1620), + [aux_sym_enum_case_token1] = ACTIONS(1620), + [aux_sym_class_declaration_token1] = ACTIONS(1620), + [aux_sym_final_modifier_token1] = ACTIONS(1620), + [aux_sym_abstract_modifier_token1] = ACTIONS(1620), + [aux_sym_readonly_modifier_token1] = ACTIONS(1620), + [aux_sym_visibility_modifier_token1] = ACTIONS(1620), + [aux_sym_visibility_modifier_token2] = ACTIONS(1620), + [aux_sym_visibility_modifier_token3] = ACTIONS(1620), + [aux_sym__arrow_function_header_token1] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1618), + [aux_sym_cast_type_token1] = ACTIONS(1620), + [aux_sym_echo_statement_token1] = ACTIONS(1620), + [aux_sym_exit_statement_token1] = ACTIONS(1620), + [anon_sym_unset] = ACTIONS(1620), + [aux_sym_declare_statement_token1] = ACTIONS(1620), + [aux_sym_declare_statement_token2] = ACTIONS(1620), + [sym_float] = ACTIONS(1620), + [aux_sym_try_statement_token1] = ACTIONS(1620), + [aux_sym_goto_statement_token1] = ACTIONS(1620), + [aux_sym_continue_statement_token1] = ACTIONS(1620), + [aux_sym_break_statement_token1] = ACTIONS(1620), + [sym_integer] = ACTIONS(1620), + [aux_sym_return_statement_token1] = ACTIONS(1620), + [aux_sym_throw_expression_token1] = ACTIONS(1620), + [aux_sym_while_statement_token1] = ACTIONS(1620), + [aux_sym_while_statement_token2] = ACTIONS(1620), + [aux_sym_do_statement_token1] = ACTIONS(1620), + [aux_sym_for_statement_token1] = ACTIONS(1620), + [aux_sym_for_statement_token2] = ACTIONS(1620), + [aux_sym_foreach_statement_token1] = ACTIONS(1620), + [aux_sym_foreach_statement_token2] = ACTIONS(1620), + [aux_sym_if_statement_token1] = ACTIONS(1620), + [aux_sym_if_statement_token2] = ACTIONS(1620), + [aux_sym_else_if_clause_token1] = ACTIONS(1620), + [aux_sym_else_clause_token1] = ACTIONS(1620), + [aux_sym_match_expression_token1] = ACTIONS(1620), + [aux_sym_match_default_expression_token1] = ACTIONS(1620), + [aux_sym_switch_statement_token1] = ACTIONS(1620), + [aux_sym_switch_block_token1] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_TILDE] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1618), + [aux_sym_clone_expression_token1] = ACTIONS(1620), + [aux_sym_print_intrinsic_token1] = ACTIONS(1620), + [aux_sym_object_creation_expression_token1] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1618), + [anon_sym_PLUS_PLUS] = ACTIONS(1618), + [aux_sym__list_destructing_token1] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_self] = ACTIONS(1620), + [anon_sym_parent] = ACTIONS(1620), + [aux_sym__argument_name_token1] = ACTIONS(1620), + [aux_sym__argument_name_token2] = ACTIONS(1620), + [anon_sym_POUND_LBRACK] = ACTIONS(1618), + [aux_sym_encapsed_string_token1] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [aux_sym_string_token1] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_LT_LT_LT] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [aux_sym_yield_expression_token1] = ACTIONS(1620), + [aux_sym_include_expression_token1] = ACTIONS(1620), + [aux_sym_include_once_expression_token1] = ACTIONS(1620), + [aux_sym_require_expression_token1] = ACTIONS(1620), + [aux_sym_require_once_expression_token1] = ACTIONS(1620), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1618), + }, + [570] = { + [sym_text_interpolation] = STATE(570), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__unary_expression] = STATE(965), + [sym_unary_op_expression] = STATE(961), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(608), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_function_call_expression] = STATE(585), + [sym_scoped_call_expression] = STATE(585), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(585), + [sym_nullsafe_member_call_expression] = STATE(585), + [sym_subscript_expression] = STATE(585), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(585), + [sym_variable_name] = STATE(585), + [sym_include_expression] = STATE(965), + [sym_include_once_expression] = STATE(965), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(637), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_BANG] = ACTIONS(645), - [aux_sym_clone_expression_token1] = ACTIONS(649), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(705), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(713), + [aux_sym_clone_expression_token1] = ACTIONS(717), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1622), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [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(659), - [aux_sym_include_once_expression_token1] = ACTIONS(661), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_include_expression_token1] = ACTIONS(727), + [aux_sym_include_once_expression_token1] = ACTIONS(729), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1624), }, - [568] = { - [sym_text_interpolation] = STATE(568), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__unary_expression] = STATE(931), - [sym_unary_op_expression] = STATE(957), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [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(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_include_expression] = STATE(931), - [sym_include_once_expression] = STATE(931), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [571] = { + [sym_text_interpolation] = STATE(571), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__unary_expression] = STATE(965), + [sym_unary_op_expression] = STATE(961), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(608), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_function_call_expression] = STATE(585), + [sym_scoped_call_expression] = STATE(585), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(585), + [sym_nullsafe_member_call_expression] = STATE(585), + [sym_subscript_expression] = STATE(585), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(585), + [sym_variable_name] = STATE(585), + [sym_include_expression] = STATE(965), + [sym_include_once_expression] = STATE(965), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(679), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [aux_sym_clone_expression_token1] = ACTIONS(691), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(659), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [aux_sym_clone_expression_token1] = ACTIONS(671), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1622), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [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(701), - [aux_sym_include_once_expression_token1] = ACTIONS(703), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_include_expression_token1] = ACTIONS(681), + [aux_sym_include_once_expression_token1] = ACTIONS(683), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1624), }, - [569] = { - [sym_text_interpolation] = STATE(569), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__unary_expression] = STATE(931), - [sym_unary_op_expression] = STATE(957), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [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(581), - [sym_scoped_call_expression] = STATE(581), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(581), - [sym_nullsafe_member_call_expression] = STATE(581), - [sym_subscript_expression] = STATE(581), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(581), - [sym_variable_name] = STATE(581), - [sym_include_expression] = STATE(931), - [sym_include_once_expression] = STATE(931), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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), + [572] = { + [sym_text_interpolation] = STATE(572), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__unary_expression] = STATE(965), + [sym_unary_op_expression] = STATE(961), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(658), + [sym_member_access_expression] = STATE(658), + [sym_nullsafe_member_access_expression] = STATE(658), + [sym_scoped_property_access_expression] = STATE(658), + [sym_function_call_expression] = STATE(625), + [sym_scoped_call_expression] = STATE(625), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(625), + [sym_nullsafe_member_call_expression] = STATE(625), + [sym_subscript_expression] = STATE(625), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(625), + [sym_variable_name] = STATE(625), + [sym_include_expression] = STATE(965), + [sym_include_once_expression] = STATE(965), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [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), - [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(1572), + [anon_sym_LPAREN] = ACTIONS(897), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1622), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [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), - [sym_grit_metavariable] = ACTIONS(635), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1626), }, - [570] = { - [sym_text_interpolation] = STATE(570), - [sym_qualified_name] = STATE(820), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym__unary_expression] = STATE(1083), - [sym_unary_op_expression] = STATE(1144), - [sym_clone_expression] = STATE(1144), - [sym__primary_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(824), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_expression] = STATE(1144), - [sym_cast_variable] = STATE(639), - [sym_member_access_expression] = STATE(639), - [sym_nullsafe_member_access_expression] = STATE(639), - [sym_scoped_property_access_expression] = STATE(639), - [sym_function_call_expression] = STATE(609), - [sym_scoped_call_expression] = STATE(609), - [sym__scope_resolution_qualifier] = STATE(2573), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(609), - [sym_nullsafe_member_call_expression] = STATE(609), - [sym_subscript_expression] = STATE(609), - [sym__dereferencable_expression] = STATE(1707), - [sym_array_creation_expression] = STATE(824), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(824), - [sym_dynamic_variable_name] = STATE(609), - [sym_variable_name] = STATE(609), - [sym_include_expression] = STATE(1083), - [sym_include_once_expression] = STATE(1083), - [sym__reserved_identifier] = STATE(1559), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(667), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [573] = { + [sym_text_interpolation] = STATE(573), + [sym_qualified_name] = STATE(728), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__unary_expression] = STATE(965), + [sym_unary_op_expression] = STATE(961), + [sym_clone_expression] = STATE(961), + [sym__primary_expression] = STATE(961), + [sym_parenthesized_expression] = STATE(730), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_expression] = STATE(961), + [sym_cast_variable] = STATE(608), + [sym_member_access_expression] = STATE(608), + [sym_nullsafe_member_access_expression] = STATE(608), + [sym_scoped_property_access_expression] = STATE(608), + [sym_function_call_expression] = STATE(585), + [sym_scoped_call_expression] = STATE(585), + [sym__scope_resolution_qualifier] = STATE(2595), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(585), + [sym_nullsafe_member_call_expression] = STATE(585), + [sym_subscript_expression] = STATE(585), + [sym__dereferencable_expression] = STATE(1789), + [sym_array_creation_expression] = STATE(730), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(730), + [sym_dynamic_variable_name] = STATE(585), + [sym_variable_name] = STATE(585), + [sym_include_expression] = STATE(965), + [sym_include_once_expression] = STATE(965), + [sym__reserved_identifier] = STATE(1606), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(589), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), + [anon_sym_BSLASH] = ACTIONS(226), + [aux_sym__arrow_function_header_token1] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(603), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [aux_sym_clone_expression_token1] = ACTIONS(621), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_self] = ACTIONS(310), + [anon_sym_parent] = ACTIONS(310), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), + [anon_sym_POUND_LBRACK] = ACTIONS(316), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(643), + [aux_sym_include_expression_token1] = ACTIONS(649), + [aux_sym_include_once_expression_token1] = ACTIONS(651), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1624), + }, + [574] = { + [sym_text_interpolation] = STATE(574), + [sym_qualified_name] = STATE(866), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym__unary_expression] = STATE(1105), + [sym_unary_op_expression] = STATE(1135), + [sym_clone_expression] = STATE(1135), + [sym__primary_expression] = STATE(1135), + [sym_parenthesized_expression] = STATE(861), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_expression] = STATE(1135), + [sym_cast_variable] = STATE(657), + [sym_member_access_expression] = STATE(657), + [sym_nullsafe_member_access_expression] = STATE(657), + [sym_scoped_property_access_expression] = STATE(657), + [sym_function_call_expression] = STATE(626), + [sym_scoped_call_expression] = STATE(626), + [sym__scope_resolution_qualifier] = STATE(2688), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(626), + [sym_nullsafe_member_call_expression] = STATE(626), + [sym_subscript_expression] = STATE(626), + [sym__dereferencable_expression] = STATE(1804), + [sym_array_creation_expression] = STATE(861), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(861), + [sym_dynamic_variable_name] = STATE(626), + [sym_variable_name] = STATE(626), + [sym_include_expression] = STATE(1105), + [sym_include_once_expression] = STATE(1105), + [sym__reserved_identifier] = STATE(1615), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(691), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), [anon_sym_LPAREN] = ACTIONS(252), @@ -78220,7 +78822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_object_creation_expression_token1] = ACTIONS(302), [anon_sym_DASH_DASH] = ACTIONS(304), [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1628), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), [aux_sym__argument_name_token1] = ACTIONS(312), @@ -78236,450 +78838,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_include_expression_token1] = ACTIONS(330), [aux_sym_include_once_expression_token1] = ACTIONS(332), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [571] = { - [sym_text_interpolation] = STATE(571), - [sym_qualified_name] = STATE(702), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__unary_expression] = STATE(931), - [sym_unary_op_expression] = STATE(957), - [sym_clone_expression] = STATE(957), - [sym__primary_expression] = STATE(957), - [sym_parenthesized_expression] = STATE(720), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_expression] = STATE(957), - [sym_cast_variable] = STATE(638), - [sym_member_access_expression] = STATE(638), - [sym_nullsafe_member_access_expression] = STATE(638), - [sym_scoped_property_access_expression] = STATE(638), - [sym_function_call_expression] = STATE(606), - [sym_scoped_call_expression] = STATE(606), - [sym__scope_resolution_qualifier] = STATE(2484), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(606), - [sym_nullsafe_member_call_expression] = STATE(606), - [sym_subscript_expression] = STATE(606), - [sym__dereferencable_expression] = STATE(1723), - [sym_array_creation_expression] = STATE(720), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(720), - [sym_dynamic_variable_name] = STATE(606), - [sym_variable_name] = STATE(606), - [sym_include_expression] = STATE(931), - [sym_include_once_expression] = STATE(931), - [sym__reserved_identifier] = STATE(1554), - [aux_sym_attribute_list_repeat1] = STATE(978), - [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(250), - [anon_sym_LPAREN] = ACTIONS(863), - [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), - [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(1572), - [anon_sym_self] = ACTIONS(310), - [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [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), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(1630), }, - [572] = { - [sym_text_interpolation] = STATE(572), - [sym_name] = ACTIONS(1576), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1578), - [aux_sym_function_static_declaration_token1] = ACTIONS(1576), - [aux_sym_global_declaration_token1] = ACTIONS(1576), - [aux_sym_namespace_definition_token1] = ACTIONS(1576), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1576), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1576), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1576), - [anon_sym_BSLASH] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1578), - [aux_sym_trait_declaration_token1] = ACTIONS(1576), - [aux_sym_interface_declaration_token1] = ACTIONS(1576), - [aux_sym_enum_declaration_token1] = ACTIONS(1576), - [anon_sym_COLON] = ACTIONS(1578), - [aux_sym_class_declaration_token1] = ACTIONS(1576), - [aux_sym_final_modifier_token1] = ACTIONS(1576), - [aux_sym_abstract_modifier_token1] = ACTIONS(1576), - [aux_sym_readonly_modifier_token1] = ACTIONS(1576), - [aux_sym_visibility_modifier_token1] = ACTIONS(1576), - [aux_sym_visibility_modifier_token2] = ACTIONS(1576), - [aux_sym_visibility_modifier_token3] = ACTIONS(1576), - [aux_sym__arrow_function_header_token1] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1578), - [aux_sym_cast_type_token1] = ACTIONS(1576), - [aux_sym_echo_statement_token1] = ACTIONS(1576), - [aux_sym_exit_statement_token1] = ACTIONS(1576), - [anon_sym_unset] = ACTIONS(1576), - [aux_sym_declare_statement_token1] = ACTIONS(1576), - [sym_float] = ACTIONS(1576), - [aux_sym_try_statement_token1] = ACTIONS(1576), - [aux_sym_goto_statement_token1] = ACTIONS(1576), - [aux_sym_continue_statement_token1] = ACTIONS(1576), - [aux_sym_break_statement_token1] = ACTIONS(1576), - [sym_integer] = ACTIONS(1576), - [aux_sym_return_statement_token1] = ACTIONS(1576), - [aux_sym_throw_expression_token1] = ACTIONS(1576), - [aux_sym_while_statement_token1] = ACTIONS(1576), - [aux_sym_do_statement_token1] = ACTIONS(1576), - [aux_sym_for_statement_token1] = ACTIONS(1576), - [aux_sym_foreach_statement_token1] = ACTIONS(1576), - [aux_sym_if_statement_token1] = ACTIONS(1576), - [aux_sym_match_expression_token1] = ACTIONS(1576), - [aux_sym_switch_statement_token1] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_AT] = ACTIONS(1578), - [aux_sym_clone_expression_token1] = ACTIONS(1576), - [aux_sym_print_intrinsic_token1] = ACTIONS(1576), - [aux_sym_object_creation_expression_token1] = ACTIONS(1576), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [aux_sym__list_destructing_token1] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_self] = ACTIONS(1576), - [anon_sym_parent] = ACTIONS(1576), - [aux_sym__argument_name_token1] = ACTIONS(1576), - [aux_sym__argument_name_token2] = ACTIONS(1576), - [anon_sym_POUND_LBRACK] = ACTIONS(1578), - [aux_sym_encapsed_string_token1] = ACTIONS(1578), - [anon_sym_DQUOTE] = ACTIONS(1578), - [aux_sym_string_token1] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_LT_LT_LT] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [anon_sym_DOLLAR] = ACTIONS(1578), - [aux_sym_yield_expression_token1] = ACTIONS(1576), - [aux_sym_include_expression_token1] = ACTIONS(1576), - [aux_sym_include_once_expression_token1] = ACTIONS(1576), - [aux_sym_require_expression_token1] = ACTIONS(1576), - [aux_sym_require_once_expression_token1] = ACTIONS(1576), - [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(1578), + [575] = { + [sym_text_interpolation] = STATE(575), + [sym_name] = ACTIONS(1632), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1634), + [aux_sym_function_static_declaration_token1] = ACTIONS(1632), + [aux_sym_global_declaration_token1] = ACTIONS(1632), + [aux_sym_namespace_definition_token1] = ACTIONS(1632), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1632), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1632), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1632), + [anon_sym_BSLASH] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [aux_sym_trait_declaration_token1] = ACTIONS(1632), + [aux_sym_interface_declaration_token1] = ACTIONS(1632), + [aux_sym_enum_declaration_token1] = ACTIONS(1632), + [anon_sym_COLON] = ACTIONS(1634), + [aux_sym_class_declaration_token1] = ACTIONS(1632), + [aux_sym_final_modifier_token1] = ACTIONS(1632), + [aux_sym_abstract_modifier_token1] = ACTIONS(1632), + [aux_sym_readonly_modifier_token1] = ACTIONS(1632), + [aux_sym_visibility_modifier_token1] = ACTIONS(1632), + [aux_sym_visibility_modifier_token2] = ACTIONS(1632), + [aux_sym_visibility_modifier_token3] = ACTIONS(1632), + [aux_sym__arrow_function_header_token1] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [aux_sym_cast_type_token1] = ACTIONS(1632), + [aux_sym_echo_statement_token1] = ACTIONS(1632), + [aux_sym_exit_statement_token1] = ACTIONS(1632), + [anon_sym_unset] = ACTIONS(1632), + [aux_sym_declare_statement_token1] = ACTIONS(1632), + [sym_float] = ACTIONS(1632), + [aux_sym_try_statement_token1] = ACTIONS(1632), + [aux_sym_goto_statement_token1] = ACTIONS(1632), + [aux_sym_continue_statement_token1] = ACTIONS(1632), + [aux_sym_break_statement_token1] = ACTIONS(1632), + [sym_integer] = ACTIONS(1632), + [aux_sym_return_statement_token1] = ACTIONS(1632), + [aux_sym_throw_expression_token1] = ACTIONS(1632), + [aux_sym_while_statement_token1] = ACTIONS(1632), + [aux_sym_do_statement_token1] = ACTIONS(1632), + [aux_sym_for_statement_token1] = ACTIONS(1632), + [aux_sym_foreach_statement_token1] = ACTIONS(1632), + [aux_sym_if_statement_token1] = ACTIONS(1632), + [aux_sym_match_expression_token1] = ACTIONS(1632), + [aux_sym_switch_statement_token1] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_TILDE] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1634), + [anon_sym_AT] = ACTIONS(1634), + [aux_sym_clone_expression_token1] = ACTIONS(1632), + [aux_sym_print_intrinsic_token1] = ACTIONS(1632), + [aux_sym_object_creation_expression_token1] = ACTIONS(1632), + [anon_sym_DASH_DASH] = ACTIONS(1634), + [anon_sym_PLUS_PLUS] = ACTIONS(1634), + [aux_sym__list_destructing_token1] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_self] = ACTIONS(1632), + [anon_sym_parent] = ACTIONS(1632), + [aux_sym__argument_name_token1] = ACTIONS(1632), + [aux_sym__argument_name_token2] = ACTIONS(1632), + [anon_sym_POUND_LBRACK] = ACTIONS(1634), + [aux_sym_encapsed_string_token1] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [aux_sym_string_token1] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_LT_LT_LT] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1634), + [aux_sym_yield_expression_token1] = ACTIONS(1632), + [aux_sym_include_expression_token1] = ACTIONS(1632), + [aux_sym_include_once_expression_token1] = ACTIONS(1632), + [aux_sym_require_expression_token1] = ACTIONS(1632), + [aux_sym_require_once_expression_token1] = ACTIONS(1632), + [sym_comment] = ACTIONS(5), + [sym_grit_metavariable] = ACTIONS(1634), }, - [573] = { - [sym_text_interpolation] = STATE(573), - [sym_qualified_name] = STATE(690), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2476), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__primary_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_variable] = STATE(711), - [sym_member_access_expression] = STATE(711), - [sym_nullsafe_member_access_expression] = STATE(711), - [sym_scoped_property_access_expression] = STATE(711), - [sym_function_call_expression] = STATE(657), - [sym_scoped_call_expression] = STATE(657), - [sym__scope_resolution_qualifier] = STATE(2653), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(657), - [sym_nullsafe_member_call_expression] = STATE(657), - [sym_subscript_expression] = STATE(657), - [sym__dereferencable_expression] = STATE(1749), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(657), - [sym_variable_name] = STATE(657), - [sym__reserved_identifier] = STATE(1558), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(1580), - [anon_sym_QMARK_GT] = 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), + [576] = { + [sym_text_interpolation] = STATE(576), + [sym_qualified_name] = STATE(725), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2598), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__primary_expression] = STATE(1011), + [sym_parenthesized_expression] = STATE(718), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_variable] = STATE(747), + [sym_member_access_expression] = STATE(747), + [sym_nullsafe_member_access_expression] = STATE(747), + [sym_scoped_property_access_expression] = STATE(747), + [sym_function_call_expression] = STATE(679), + [sym_scoped_call_expression] = STATE(679), + [sym__scope_resolution_qualifier] = STATE(2749), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(679), + [sym_nullsafe_member_call_expression] = STATE(679), + [sym_subscript_expression] = STATE(679), + [sym__dereferencable_expression] = STATE(1764), + [sym_array_creation_expression] = STATE(718), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(718), + [sym_dynamic_variable_name] = STATE(679), + [sym_variable_name] = STATE(679), + [sym__reserved_identifier] = STATE(1620), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(1636), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(1582), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(641), - [aux_sym_print_intrinsic_token1] = ACTIONS(651), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1638), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(611), + [aux_sym_print_intrinsic_token1] = ACTIONS(623), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1622), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(1584), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(1640), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(1642), }, - [574] = { - [sym_text_interpolation] = STATE(574), - [sym_qualified_name] = STATE(690), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2535), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__primary_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_variable] = STATE(711), - [sym_member_access_expression] = STATE(711), - [sym_nullsafe_member_access_expression] = STATE(711), - [sym_scoped_property_access_expression] = STATE(711), - [sym_function_call_expression] = STATE(657), - [sym_scoped_call_expression] = STATE(657), - [sym__scope_resolution_qualifier] = STATE(2653), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(657), - [sym_nullsafe_member_call_expression] = STATE(657), - [sym_subscript_expression] = STATE(657), - [sym__dereferencable_expression] = STATE(1749), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(657), - [sym_variable_name] = STATE(657), - [sym__reserved_identifier] = STATE(1558), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(1580), - [anon_sym_QMARK_GT] = 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), + [577] = { + [sym_text_interpolation] = STATE(577), + [sym_qualified_name] = STATE(725), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2592), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__primary_expression] = STATE(1011), + [sym_parenthesized_expression] = STATE(718), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_variable] = STATE(747), + [sym_member_access_expression] = STATE(747), + [sym_nullsafe_member_access_expression] = STATE(747), + [sym_scoped_property_access_expression] = STATE(747), + [sym_function_call_expression] = STATE(679), + [sym_scoped_call_expression] = STATE(679), + [sym__scope_resolution_qualifier] = STATE(2749), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(679), + [sym_nullsafe_member_call_expression] = STATE(679), + [sym_subscript_expression] = STATE(679), + [sym__dereferencable_expression] = STATE(1764), + [sym_array_creation_expression] = STATE(718), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(718), + [sym_dynamic_variable_name] = STATE(679), + [sym_variable_name] = STATE(679), + [sym__reserved_identifier] = STATE(1620), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(1636), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(1582), - [aux_sym_cast_type_token1] = ACTIONS(585), - [sym_float] = ACTIONS(587), - [sym_integer] = ACTIONS(587), - [aux_sym_throw_expression_token1] = ACTIONS(683), - [aux_sym_print_intrinsic_token1] = ACTIONS(693), - [aux_sym_object_creation_expression_token1] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1638), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(663), + [aux_sym_print_intrinsic_token1] = ACTIONS(673), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1622), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(1584), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(1640), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(1642), }, - [575] = { - [sym_text_interpolation] = STATE(575), - [sym_qualified_name] = STATE(690), - [sym_namespace_name_as_prefix] = STATE(2496), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2477), - [sym_arrow_function] = STATE(967), - [sym_throw_expression] = STATE(967), - [sym__primary_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(683), - [sym_class_constant_access_expression] = STATE(786), - [sym_print_intrinsic] = STATE(967), - [sym_anonymous_function_creation_expression] = STATE(967), - [sym_object_creation_expression] = STATE(967), - [sym_update_expression] = STATE(967), - [sym_cast_variable] = STATE(711), - [sym_member_access_expression] = STATE(711), - [sym_nullsafe_member_access_expression] = STATE(711), - [sym_scoped_property_access_expression] = STATE(711), - [sym_function_call_expression] = STATE(657), - [sym_scoped_call_expression] = STATE(657), - [sym__scope_resolution_qualifier] = STATE(2653), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(657), - [sym_nullsafe_member_call_expression] = STATE(657), - [sym_subscript_expression] = STATE(657), - [sym__dereferencable_expression] = STATE(1749), - [sym_array_creation_expression] = STATE(683), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1808), - [sym_encapsed_string] = STATE(760), - [sym_string] = STATE(760), - [sym_heredoc] = STATE(760), - [sym_nowdoc] = STATE(760), - [sym_shell_command_expression] = STATE(967), - [sym_boolean] = STATE(967), - [sym_null] = STATE(967), - [sym__string] = STATE(683), - [sym_dynamic_variable_name] = STATE(657), - [sym_variable_name] = STATE(657), - [sym__reserved_identifier] = STATE(1558), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(1580), - [anon_sym_QMARK_GT] = 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), + [578] = { + [sym_text_interpolation] = STATE(578), + [sym_qualified_name] = STATE(725), + [sym_namespace_name_as_prefix] = STATE(2601), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2602), + [sym_arrow_function] = STATE(991), + [sym_throw_expression] = STATE(991), + [sym__primary_expression] = STATE(1011), + [sym_parenthesized_expression] = STATE(718), + [sym_class_constant_access_expression] = STATE(804), + [sym_print_intrinsic] = STATE(991), + [sym_anonymous_function_creation_expression] = STATE(991), + [sym_object_creation_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_cast_variable] = STATE(747), + [sym_member_access_expression] = STATE(747), + [sym_nullsafe_member_access_expression] = STATE(747), + [sym_scoped_property_access_expression] = STATE(747), + [sym_function_call_expression] = STATE(679), + [sym_scoped_call_expression] = STATE(679), + [sym__scope_resolution_qualifier] = STATE(2749), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(679), + [sym_nullsafe_member_call_expression] = STATE(679), + [sym_subscript_expression] = STATE(679), + [sym__dereferencable_expression] = STATE(1764), + [sym_array_creation_expression] = STATE(718), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1882), + [sym_encapsed_string] = STATE(796), + [sym_string] = STATE(796), + [sym_heredoc] = STATE(796), + [sym_nowdoc] = STATE(796), + [sym_shell_command_expression] = STATE(991), + [sym_boolean] = STATE(991), + [sym_null] = STATE(991), + [sym__string] = STATE(718), + [sym_dynamic_variable_name] = STATE(679), + [sym_variable_name] = STATE(679), + [sym__reserved_identifier] = STATE(1620), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(1636), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(595), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(599), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(1582), - [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(1572), + [anon_sym_LPAREN] = ACTIONS(1638), + [aux_sym_cast_type_token1] = ACTIONS(607), + [sym_float] = ACTIONS(609), + [sym_integer] = ACTIONS(609), + [aux_sym_throw_expression_token1] = ACTIONS(709), + [aux_sym_print_intrinsic_token1] = ACTIONS(719), + [aux_sym_object_creation_expression_token1] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_LBRACK] = ACTIONS(1622), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), - [aux_sym__argument_name_token1] = ACTIONS(609), - [aux_sym__argument_name_token2] = ACTIONS(611), + [aux_sym__argument_name_token1] = ACTIONS(631), + [aux_sym__argument_name_token2] = ACTIONS(633), [anon_sym_POUND_LBRACK] = ACTIONS(316), - [aux_sym_encapsed_string_token1] = ACTIONS(613), - [anon_sym_DQUOTE] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(615), - [anon_sym_SQUOTE] = ACTIONS(615), - [anon_sym_LT_LT_LT] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(1584), + [aux_sym_encapsed_string_token1] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [aux_sym_string_token1] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LT_LT_LT] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(1640), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(635), + [sym_grit_metavariable] = ACTIONS(1642), }, - [576] = { - [sym_text_interpolation] = STATE(576), - [sym_qualified_name] = STATE(815), - [sym_namespace_name_as_prefix] = STATE(2605), - [sym_namespace_name] = STATE(2603), - [sym_static_modifier] = STATE(2596), - [sym__arrow_function_header] = STATE(2574), - [sym_arrow_function] = STATE(1105), - [sym_throw_expression] = STATE(1105), - [sym__primary_expression] = STATE(1124), - [sym_parenthesized_expression] = STATE(814), - [sym_class_constant_access_expression] = STATE(904), - [sym_print_intrinsic] = STATE(1105), - [sym_anonymous_function_creation_expression] = STATE(1105), - [sym_object_creation_expression] = STATE(1105), - [sym_update_expression] = STATE(1105), - [sym_cast_variable] = STATE(853), - [sym_member_access_expression] = STATE(853), - [sym_nullsafe_member_access_expression] = STATE(853), - [sym_scoped_property_access_expression] = STATE(853), - [sym_function_call_expression] = STATE(781), - [sym_scoped_call_expression] = STATE(781), - [sym__scope_resolution_qualifier] = STATE(2460), - [sym_relative_scope] = STATE(2459), - [sym_member_call_expression] = STATE(781), - [sym_nullsafe_member_call_expression] = STATE(781), - [sym_subscript_expression] = STATE(781), - [sym__dereferencable_expression] = STATE(1664), - [sym_array_creation_expression] = STATE(814), - [sym_attribute_group] = STATE(1034), - [sym_attribute_list] = STATE(1816), - [sym_encapsed_string] = STATE(866), - [sym_string] = STATE(866), - [sym_heredoc] = STATE(866), - [sym_nowdoc] = STATE(866), - [sym_shell_command_expression] = STATE(1105), - [sym_boolean] = STATE(1105), - [sym_null] = STATE(1105), - [sym__string] = STATE(814), - [sym_dynamic_variable_name] = STATE(781), - [sym_variable_name] = STATE(781), - [sym__reserved_identifier] = STATE(1545), - [aux_sym_attribute_list_repeat1] = STATE(978), - [sym_name] = ACTIONS(1586), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(671), - [aux_sym_namespace_definition_token1] = ACTIONS(575), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(673), + [579] = { + [sym_text_interpolation] = STATE(579), + [sym_qualified_name] = STATE(870), + [sym_namespace_name_as_prefix] = STATE(2698), + [sym_namespace_name] = STATE(2697), + [sym_static_modifier] = STATE(2694), + [sym__arrow_function_header] = STATE(2691), + [sym_arrow_function] = STATE(1184), + [sym_throw_expression] = STATE(1184), + [sym__primary_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(865), + [sym_class_constant_access_expression] = STATE(946), + [sym_print_intrinsic] = STATE(1184), + [sym_anonymous_function_creation_expression] = STATE(1184), + [sym_object_creation_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_cast_variable] = STATE(855), + [sym_member_access_expression] = STATE(855), + [sym_nullsafe_member_access_expression] = STATE(855), + [sym_scoped_property_access_expression] = STATE(855), + [sym_function_call_expression] = STATE(798), + [sym_scoped_call_expression] = STATE(798), + [sym__scope_resolution_qualifier] = STATE(2666), + [sym_relative_scope] = STATE(2687), + [sym_member_call_expression] = STATE(798), + [sym_nullsafe_member_call_expression] = STATE(798), + [sym_subscript_expression] = STATE(798), + [sym__dereferencable_expression] = STATE(1727), + [sym_array_creation_expression] = STATE(865), + [sym_attribute_group] = STATE(1040), + [sym_attribute_list] = STATE(1856), + [sym_encapsed_string] = STATE(932), + [sym_string] = STATE(932), + [sym_heredoc] = STATE(932), + [sym_nowdoc] = STATE(932), + [sym_shell_command_expression] = STATE(1184), + [sym_boolean] = STATE(1184), + [sym_null] = STATE(1184), + [sym__string] = STATE(865), + [sym_dynamic_variable_name] = STATE(798), + [sym_variable_name] = STATE(798), + [sym__reserved_identifier] = STATE(1596), + [aux_sym_attribute_list_repeat1] = STATE(989), + [sym_name] = ACTIONS(1644), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(695), + [aux_sym_namespace_definition_token1] = ACTIONS(597), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(697), [anon_sym_BSLASH] = ACTIONS(226), [aux_sym__arrow_function_header_token1] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1646), [aux_sym_cast_type_token1] = ACTIONS(254), [sym_float] = ACTIONS(264), [sym_integer] = ACTIONS(264), @@ -78688,7 +79202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_object_creation_expression_token1] = ACTIONS(302), [anon_sym_DASH_DASH] = ACTIONS(304), [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1628), [anon_sym_self] = ACTIONS(310), [anon_sym_parent] = ACTIONS(310), [aux_sym__argument_name_token1] = ACTIONS(312), @@ -78700,304 +79214,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(320), [anon_sym_LT_LT_LT] = ACTIONS(322), [anon_sym_BQUOTE] = ACTIONS(324), - [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1648), [sym_comment] = ACTIONS(5), - [sym_grit_metavariable] = ACTIONS(338), - }, - [577] = { - [sym_text_interpolation] = STATE(577), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_COMMA] = ACTIONS(1592), - [anon_sym_EQ] = ACTIONS(1594), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1592), - [aux_sym_base_clause_token1] = ACTIONS(1592), - [anon_sym_COLON] = ACTIONS(1594), - [aux_sym_class_interface_clause_token1] = ACTIONS(1592), - [anon_sym_EQ_GT] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_RPAREN] = ACTIONS(1592), - [anon_sym_QMARK] = ACTIONS(1594), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_PLUS] = ACTIONS(1594), - [anon_sym_DASH] = ACTIONS(1594), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_DASH_DASH] = ACTIONS(1592), - [anon_sym_PLUS_PLUS] = ACTIONS(1592), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1592), - [anon_sym_STAR_EQ] = ACTIONS(1592), - [anon_sym_SLASH_EQ] = ACTIONS(1592), - [anon_sym_PERCENT_EQ] = ACTIONS(1592), - [anon_sym_PLUS_EQ] = ACTIONS(1592), - [anon_sym_DASH_EQ] = ACTIONS(1592), - [anon_sym_DOT_EQ] = ACTIONS(1592), - [anon_sym_LT_LT_EQ] = ACTIONS(1592), - [anon_sym_GT_GT_EQ] = ACTIONS(1592), - [anon_sym_AMP_EQ] = ACTIONS(1592), - [anon_sym_CARET_EQ] = ACTIONS(1592), - [anon_sym_PIPE_EQ] = ACTIONS(1592), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1592), - [anon_sym_DASH_GT] = ACTIONS(1592), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_RBRACK] = ACTIONS(1592), - [aux_sym_binary_expression_token1] = ACTIONS(1592), - [anon_sym_QMARK_QMARK] = ACTIONS(1594), - [anon_sym_STAR_STAR] = ACTIONS(1594), - [aux_sym_binary_expression_token2] = ACTIONS(1592), - [aux_sym_binary_expression_token3] = ACTIONS(1592), - [aux_sym_binary_expression_token4] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1592), - [anon_sym_CARET] = ACTIONS(1594), - [anon_sym_EQ_EQ] = ACTIONS(1594), - [anon_sym_BANG_EQ] = ACTIONS(1594), - [anon_sym_LT_GT] = ACTIONS(1592), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1592), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1594), - [anon_sym_GT] = ACTIONS(1594), - [anon_sym_LT_EQ] = ACTIONS(1594), - [anon_sym_GT_EQ] = ACTIONS(1592), - [anon_sym_LT_EQ_GT] = ACTIONS(1592), - [anon_sym_LT_LT] = ACTIONS(1594), - [anon_sym_GT_GT] = ACTIONS(1594), - [anon_sym_DOT] = ACTIONS(1594), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_SLASH] = ACTIONS(1594), - [anon_sym_PERCENT] = ACTIONS(1594), - [sym_comment] = ACTIONS(1596), - }, - [578] = { - [sym_text_interpolation] = STATE(578), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_COMMA] = ACTIONS(1598), - [anon_sym_EQ] = ACTIONS(1600), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [aux_sym_base_clause_token1] = ACTIONS(1598), - [anon_sym_COLON] = ACTIONS(1600), - [aux_sym_class_interface_clause_token1] = ACTIONS(1598), - [anon_sym_EQ_GT] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_RPAREN] = ACTIONS(1598), - [anon_sym_QMARK] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_COLON_COLON] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1598), - [anon_sym_STAR_EQ] = ACTIONS(1598), - [anon_sym_SLASH_EQ] = ACTIONS(1598), - [anon_sym_PERCENT_EQ] = ACTIONS(1598), - [anon_sym_PLUS_EQ] = ACTIONS(1598), - [anon_sym_DASH_EQ] = ACTIONS(1598), - [anon_sym_DOT_EQ] = ACTIONS(1598), - [anon_sym_LT_LT_EQ] = ACTIONS(1598), - [anon_sym_GT_GT_EQ] = ACTIONS(1598), - [anon_sym_AMP_EQ] = ACTIONS(1598), - [anon_sym_CARET_EQ] = ACTIONS(1598), - [anon_sym_PIPE_EQ] = ACTIONS(1598), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1598), - [anon_sym_DASH_GT] = ACTIONS(1598), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_RBRACK] = ACTIONS(1598), - [aux_sym_binary_expression_token1] = ACTIONS(1598), - [anon_sym_QMARK_QMARK] = ACTIONS(1600), - [anon_sym_STAR_STAR] = ACTIONS(1600), - [aux_sym_binary_expression_token2] = ACTIONS(1598), - [aux_sym_binary_expression_token3] = ACTIONS(1598), - [aux_sym_binary_expression_token4] = ACTIONS(1598), - [anon_sym_PIPE_PIPE] = ACTIONS(1598), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_CARET] = ACTIONS(1600), - [anon_sym_EQ_EQ] = ACTIONS(1600), - [anon_sym_BANG_EQ] = ACTIONS(1600), - [anon_sym_LT_GT] = ACTIONS(1598), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1598), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1600), - [anon_sym_GT] = ACTIONS(1600), - [anon_sym_LT_EQ] = ACTIONS(1600), - [anon_sym_GT_EQ] = ACTIONS(1598), - [anon_sym_LT_EQ_GT] = ACTIONS(1598), - [anon_sym_LT_LT] = ACTIONS(1600), - [anon_sym_GT_GT] = ACTIONS(1600), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym_PERCENT] = ACTIONS(1600), - [sym_comment] = ACTIONS(1596), - }, - [579] = { - [sym_text_interpolation] = STATE(579), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_EQ] = ACTIONS(1604), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [aux_sym_base_clause_token1] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1604), - [aux_sym_class_interface_clause_token1] = ACTIONS(1602), - [anon_sym_EQ_GT] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1602), - [anon_sym_STAR_EQ] = ACTIONS(1602), - [anon_sym_SLASH_EQ] = ACTIONS(1602), - [anon_sym_PERCENT_EQ] = ACTIONS(1602), - [anon_sym_PLUS_EQ] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1602), - [anon_sym_DOT_EQ] = ACTIONS(1602), - [anon_sym_LT_LT_EQ] = ACTIONS(1602), - [anon_sym_GT_GT_EQ] = ACTIONS(1602), - [anon_sym_AMP_EQ] = ACTIONS(1602), - [anon_sym_CARET_EQ] = ACTIONS(1602), - [anon_sym_PIPE_EQ] = ACTIONS(1602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1602), - [anon_sym_DASH_GT] = ACTIONS(1602), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_RBRACK] = ACTIONS(1602), - [aux_sym_binary_expression_token1] = ACTIONS(1602), - [anon_sym_QMARK_QMARK] = ACTIONS(1604), - [anon_sym_STAR_STAR] = ACTIONS(1604), - [aux_sym_binary_expression_token2] = ACTIONS(1602), - [aux_sym_binary_expression_token3] = ACTIONS(1602), - [aux_sym_binary_expression_token4] = ACTIONS(1602), - [anon_sym_PIPE_PIPE] = ACTIONS(1602), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_CARET] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1604), - [anon_sym_BANG_EQ] = ACTIONS(1604), - [anon_sym_LT_GT] = ACTIONS(1602), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1602), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1602), - [anon_sym_LT_EQ_GT] = ACTIONS(1602), - [anon_sym_LT_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1604), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_PERCENT] = ACTIONS(1604), - [sym_comment] = ACTIONS(1596), + [sym_grit_metavariable] = ACTIONS(1650), }, [580] = { [sym_text_interpolation] = STATE(580), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_COMMA] = ACTIONS(1606), - [anon_sym_EQ] = ACTIONS(1608), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [aux_sym_base_clause_token1] = ACTIONS(1606), - [anon_sym_COLON] = ACTIONS(1608), - [aux_sym_class_interface_clause_token1] = ACTIONS(1606), - [anon_sym_EQ_GT] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_RPAREN] = ACTIONS(1606), - [anon_sym_QMARK] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1606), - [anon_sym_STAR_EQ] = ACTIONS(1606), - [anon_sym_SLASH_EQ] = ACTIONS(1606), - [anon_sym_PERCENT_EQ] = ACTIONS(1606), - [anon_sym_PLUS_EQ] = ACTIONS(1606), - [anon_sym_DASH_EQ] = ACTIONS(1606), - [anon_sym_DOT_EQ] = ACTIONS(1606), - [anon_sym_LT_LT_EQ] = ACTIONS(1606), - [anon_sym_GT_GT_EQ] = ACTIONS(1606), - [anon_sym_AMP_EQ] = ACTIONS(1606), - [anon_sym_CARET_EQ] = ACTIONS(1606), - [anon_sym_PIPE_EQ] = ACTIONS(1606), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1606), - [anon_sym_DASH_GT] = ACTIONS(1606), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1606), - [aux_sym_binary_expression_token1] = ACTIONS(1606), - [anon_sym_QMARK_QMARK] = ACTIONS(1608), - [anon_sym_STAR_STAR] = ACTIONS(1608), - [aux_sym_binary_expression_token2] = ACTIONS(1606), - [aux_sym_binary_expression_token3] = ACTIONS(1606), - [aux_sym_binary_expression_token4] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1606), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_CARET] = ACTIONS(1608), - [anon_sym_EQ_EQ] = ACTIONS(1608), - [anon_sym_BANG_EQ] = ACTIONS(1608), - [anon_sym_LT_GT] = ACTIONS(1606), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1606), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1606), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_LT_EQ] = ACTIONS(1608), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_LT_EQ_GT] = ACTIONS(1606), - [anon_sym_LT_LT] = ACTIONS(1608), - [anon_sym_GT_GT] = ACTIONS(1608), - [anon_sym_DOT] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(1608), - [anon_sym_PERCENT] = ACTIONS(1608), - [sym_comment] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1654), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(1654), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [aux_sym_base_clause_token1] = ACTIONS(1652), + [anon_sym_COLON] = ACTIONS(1654), + [aux_sym_class_interface_clause_token1] = ACTIONS(1652), + [anon_sym_EQ_GT] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_PIPE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1652), + [anon_sym_STAR_EQ] = ACTIONS(1652), + [anon_sym_SLASH_EQ] = ACTIONS(1652), + [anon_sym_PERCENT_EQ] = ACTIONS(1652), + [anon_sym_PLUS_EQ] = ACTIONS(1652), + [anon_sym_DASH_EQ] = ACTIONS(1652), + [anon_sym_DOT_EQ] = ACTIONS(1652), + [anon_sym_LT_LT_EQ] = ACTIONS(1652), + [anon_sym_GT_GT_EQ] = ACTIONS(1652), + [anon_sym_AMP_EQ] = ACTIONS(1652), + [anon_sym_CARET_EQ] = ACTIONS(1652), + [anon_sym_PIPE_EQ] = ACTIONS(1652), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1652), + [anon_sym_DASH_GT] = ACTIONS(1652), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_RBRACK] = ACTIONS(1652), + [aux_sym_binary_expression_token1] = ACTIONS(1652), + [anon_sym_QMARK_QMARK] = ACTIONS(1654), + [anon_sym_STAR_STAR] = ACTIONS(1654), + [aux_sym_binary_expression_token2] = ACTIONS(1652), + [aux_sym_binary_expression_token3] = ACTIONS(1652), + [aux_sym_binary_expression_token4] = ACTIONS(1652), + [anon_sym_PIPE_PIPE] = ACTIONS(1652), + [anon_sym_AMP_AMP] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1654), + [anon_sym_EQ_EQ] = ACTIONS(1654), + [anon_sym_BANG_EQ] = ACTIONS(1654), + [anon_sym_LT_GT] = ACTIONS(1652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_GT] = ACTIONS(1654), + [anon_sym_LT_EQ] = ACTIONS(1654), + [anon_sym_GT_EQ] = ACTIONS(1652), + [anon_sym_LT_EQ_GT] = ACTIONS(1652), + [anon_sym_LT_LT] = ACTIONS(1654), + [anon_sym_GT_GT] = ACTIONS(1654), + [anon_sym_DOT] = ACTIONS(1654), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_SLASH] = ACTIONS(1654), + [anon_sym_PERCENT] = ACTIONS(1654), + [sym_comment] = ACTIONS(1656), + }, + [581] = { + [sym_text_interpolation] = STATE(581), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_COMMA] = ACTIONS(1658), + [anon_sym_EQ] = ACTIONS(1660), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1658), + [aux_sym_base_clause_token1] = ACTIONS(1658), + [anon_sym_COLON] = ACTIONS(1660), + [aux_sym_class_interface_clause_token1] = ACTIONS(1658), + [anon_sym_EQ_GT] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_QMARK] = ACTIONS(1660), + [anon_sym_PIPE] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_COLON_COLON] = ACTIONS(1658), + [anon_sym_DASH_DASH] = ACTIONS(1658), + [anon_sym_PLUS_PLUS] = ACTIONS(1658), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1658), + [anon_sym_STAR_EQ] = ACTIONS(1658), + [anon_sym_SLASH_EQ] = ACTIONS(1658), + [anon_sym_PERCENT_EQ] = ACTIONS(1658), + [anon_sym_PLUS_EQ] = ACTIONS(1658), + [anon_sym_DASH_EQ] = ACTIONS(1658), + [anon_sym_DOT_EQ] = ACTIONS(1658), + [anon_sym_LT_LT_EQ] = ACTIONS(1658), + [anon_sym_GT_GT_EQ] = ACTIONS(1658), + [anon_sym_AMP_EQ] = ACTIONS(1658), + [anon_sym_CARET_EQ] = ACTIONS(1658), + [anon_sym_PIPE_EQ] = ACTIONS(1658), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1658), + [anon_sym_DASH_GT] = ACTIONS(1658), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_RBRACK] = ACTIONS(1658), + [aux_sym_binary_expression_token1] = ACTIONS(1658), + [anon_sym_QMARK_QMARK] = ACTIONS(1660), + [anon_sym_STAR_STAR] = ACTIONS(1660), + [aux_sym_binary_expression_token2] = ACTIONS(1658), + [aux_sym_binary_expression_token3] = ACTIONS(1658), + [aux_sym_binary_expression_token4] = ACTIONS(1658), + [anon_sym_PIPE_PIPE] = ACTIONS(1658), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [anon_sym_CARET] = ACTIONS(1660), + [anon_sym_EQ_EQ] = ACTIONS(1660), + [anon_sym_BANG_EQ] = ACTIONS(1660), + [anon_sym_LT_GT] = ACTIONS(1658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(1660), + [anon_sym_GT] = ACTIONS(1660), + [anon_sym_LT_EQ] = ACTIONS(1660), + [anon_sym_GT_EQ] = ACTIONS(1658), + [anon_sym_LT_EQ_GT] = ACTIONS(1658), + [anon_sym_LT_LT] = ACTIONS(1660), + [anon_sym_GT_GT] = ACTIONS(1660), + [anon_sym_DOT] = ACTIONS(1660), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_SLASH] = ACTIONS(1660), + [anon_sym_PERCENT] = ACTIONS(1660), + [sym_comment] = ACTIONS(1656), + }, + [582] = { + [sym_text_interpolation] = STATE(582), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1664), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [aux_sym_base_clause_token1] = ACTIONS(1662), + [anon_sym_COLON] = ACTIONS(1664), + [aux_sym_class_interface_clause_token1] = ACTIONS(1662), + [anon_sym_EQ_GT] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_PLUS] = ACTIONS(1664), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_COLON_COLON] = ACTIONS(1662), + [anon_sym_DASH_DASH] = ACTIONS(1662), + [anon_sym_PLUS_PLUS] = ACTIONS(1662), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1662), + [anon_sym_STAR_EQ] = ACTIONS(1662), + [anon_sym_SLASH_EQ] = ACTIONS(1662), + [anon_sym_PERCENT_EQ] = ACTIONS(1662), + [anon_sym_PLUS_EQ] = ACTIONS(1662), + [anon_sym_DASH_EQ] = ACTIONS(1662), + [anon_sym_DOT_EQ] = ACTIONS(1662), + [anon_sym_LT_LT_EQ] = ACTIONS(1662), + [anon_sym_GT_GT_EQ] = ACTIONS(1662), + [anon_sym_AMP_EQ] = ACTIONS(1662), + [anon_sym_CARET_EQ] = ACTIONS(1662), + [anon_sym_PIPE_EQ] = ACTIONS(1662), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1662), + [anon_sym_DASH_GT] = ACTIONS(1662), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1662), + [aux_sym_binary_expression_token1] = ACTIONS(1662), + [anon_sym_QMARK_QMARK] = ACTIONS(1664), + [anon_sym_STAR_STAR] = ACTIONS(1664), + [aux_sym_binary_expression_token2] = ACTIONS(1662), + [aux_sym_binary_expression_token3] = ACTIONS(1662), + [aux_sym_binary_expression_token4] = ACTIONS(1662), + [anon_sym_PIPE_PIPE] = ACTIONS(1662), + [anon_sym_AMP_AMP] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym_EQ_EQ] = ACTIONS(1664), + [anon_sym_BANG_EQ] = ACTIONS(1664), + [anon_sym_LT_GT] = ACTIONS(1662), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1662), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_LT_EQ] = ACTIONS(1664), + [anon_sym_GT_EQ] = ACTIONS(1662), + [anon_sym_LT_EQ_GT] = ACTIONS(1662), + [anon_sym_LT_LT] = ACTIONS(1664), + [anon_sym_GT_GT] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_SLASH] = ACTIONS(1664), + [anon_sym_PERCENT] = ACTIONS(1664), + [sym_comment] = ACTIONS(1656), + }, + [583] = { + [sym_text_interpolation] = STATE(583), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym_EQ] = ACTIONS(1668), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [aux_sym_base_clause_token1] = ACTIONS(1666), + [anon_sym_COLON] = ACTIONS(1668), + [aux_sym_class_interface_clause_token1] = ACTIONS(1666), + [anon_sym_EQ_GT] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_QMARK] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_COLON_COLON] = ACTIONS(1666), + [anon_sym_DASH_DASH] = ACTIONS(1666), + [anon_sym_PLUS_PLUS] = ACTIONS(1666), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1666), + [anon_sym_STAR_EQ] = ACTIONS(1666), + [anon_sym_SLASH_EQ] = ACTIONS(1666), + [anon_sym_PERCENT_EQ] = ACTIONS(1666), + [anon_sym_PLUS_EQ] = ACTIONS(1666), + [anon_sym_DASH_EQ] = ACTIONS(1666), + [anon_sym_DOT_EQ] = ACTIONS(1666), + [anon_sym_LT_LT_EQ] = ACTIONS(1666), + [anon_sym_GT_GT_EQ] = ACTIONS(1666), + [anon_sym_AMP_EQ] = ACTIONS(1666), + [anon_sym_CARET_EQ] = ACTIONS(1666), + [anon_sym_PIPE_EQ] = ACTIONS(1666), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1666), + [anon_sym_DASH_GT] = ACTIONS(1666), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1666), + [aux_sym_binary_expression_token1] = ACTIONS(1666), + [anon_sym_QMARK_QMARK] = ACTIONS(1668), + [anon_sym_STAR_STAR] = ACTIONS(1668), + [aux_sym_binary_expression_token2] = ACTIONS(1666), + [aux_sym_binary_expression_token3] = ACTIONS(1666), + [aux_sym_binary_expression_token4] = ACTIONS(1666), + [anon_sym_PIPE_PIPE] = ACTIONS(1666), + [anon_sym_AMP_AMP] = ACTIONS(1666), + [anon_sym_CARET] = ACTIONS(1668), + [anon_sym_EQ_EQ] = ACTIONS(1668), + [anon_sym_BANG_EQ] = ACTIONS(1668), + [anon_sym_LT_GT] = ACTIONS(1666), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1666), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_LT_EQ] = ACTIONS(1668), + [anon_sym_GT_EQ] = ACTIONS(1666), + [anon_sym_LT_EQ_GT] = ACTIONS(1666), + [anon_sym_LT_LT] = ACTIONS(1668), + [anon_sym_GT_GT] = ACTIONS(1668), + [anon_sym_DOT] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_SLASH] = ACTIONS(1668), + [anon_sym_PERCENT] = ACTIONS(1668), + [sym_comment] = ACTIONS(1656), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 11, + [0] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1614), 1, - anon_sym_EQ, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(581), 1, + STATE(584), 1, sym_text_interpolation, - STATE(589), 1, + STATE(600), 1, sym_arguments, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1672), 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(1670), 38, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1622), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79011,13 +79546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 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, @@ -79030,71 +79561,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 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, - [87] = 7, + [79] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(582), 1, + ACTIONS(1680), 1, + anon_sym_EQ, + STATE(585), 1, sym_text_interpolation, - STATE(598), 1, + STATE(599), 1, sym_arguments, - ACTIONS(1626), 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(1624), 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(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1686), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79108,9 +79597,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, + ACTIONS(1676), 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, @@ -79123,20 +79616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [166] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(583), 1, - sym_text_interpolation, - STATE(594), 1, - sym_arguments, - ACTIONS(1630), 21, + ACTIONS(1678), 20, anon_sym_AMP, - anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -79156,57 +79637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1628), 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, - [245] = 7, + [166] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(586), 1, sym_text_interpolation, - STATE(599), 1, + STATE(597), 1, sym_arguments, - ACTIONS(1634), 21, + ACTIONS(1690), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79228,7 +79670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1632), 38, + ACTIONS(1688), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79267,18 +79709,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [324] = 7, + [245] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(585), 1, + STATE(587), 1, sym_text_interpolation, - STATE(593), 1, + STATE(591), 1, sym_arguments, - ACTIONS(1638), 21, + ACTIONS(1694), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79300,7 +79742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1636), 38, + ACTIONS(1692), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79339,50 +79781,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [403] = 7, + [324] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(586), 1, + ACTIONS(1680), 1, + anon_sym_EQ, + STATE(588), 1, sym_text_interpolation, - STATE(592), 1, + STATE(599), 1, sym_arguments, - ACTIONS(1642), 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(1640), 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(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1686), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -79396,9 +79817,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, + ACTIONS(1676), 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, @@ -79411,16 +79836,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(1596), 1, - sym_comment, - STATE(587), 1, - sym_text_interpolation, - ACTIONS(1646), 21, + ACTIONS(1678), 20, anon_sym_AMP, - anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -79440,54 +79857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1644), 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, + [411] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(588), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(589), 1, sym_text_interpolation, - ACTIONS(1650), 21, + STATE(593), 1, + sym_arguments, + ACTIONS(1698), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79509,14 +79890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1648), 39, + ACTIONS(1696), 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, @@ -79549,14 +79929,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, + [490] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(589), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(590), 1, sym_text_interpolation, - ACTIONS(1654), 21, + STATE(595), 1, + sym_arguments, + ACTIONS(1702), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79578,14 +79962,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1652), 39, + ACTIONS(1700), 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, @@ -79618,14 +80001,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, + [569] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(590), 1, + STATE(591), 1, sym_text_interpolation, - ACTIONS(1658), 21, + ACTIONS(1706), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79647,7 +80030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1656), 39, + ACTIONS(1704), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79687,14 +80070,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, + [643] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(591), 1, + STATE(592), 1, sym_text_interpolation, - ACTIONS(1662), 21, + ACTIONS(1710), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79716,7 +80099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1660), 39, + ACTIONS(1708), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79756,14 +80139,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, + [717] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(592), 1, + STATE(593), 1, sym_text_interpolation, - ACTIONS(1666), 21, + ACTIONS(1714), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79785,7 +80168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1664), 39, + ACTIONS(1712), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79825,14 +80208,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, + [791] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(593), 1, + STATE(594), 1, sym_text_interpolation, - ACTIONS(1670), 21, + ACTIONS(1718), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79854,7 +80237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1668), 39, + ACTIONS(1716), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79894,14 +80277,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, + [865] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(594), 1, + STATE(595), 1, sym_text_interpolation, - ACTIONS(1674), 21, + ACTIONS(1722), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79923,7 +80306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1672), 39, + ACTIONS(1720), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -79963,14 +80346,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, + [939] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(595), 1, + STATE(596), 1, sym_text_interpolation, - ACTIONS(1678), 21, + ACTIONS(1726), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -79992,7 +80375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1676), 39, + ACTIONS(1724), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -80032,14 +80415,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, + [1013] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(596), 1, + STATE(597), 1, sym_text_interpolation, - ACTIONS(1682), 21, + ACTIONS(1730), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -80061,7 +80444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 39, + ACTIONS(1728), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -80101,14 +80484,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, + [1087] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(597), 1, + STATE(598), 1, sym_text_interpolation, - ACTIONS(1686), 21, + ACTIONS(1734), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -80130,7 +80513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1684), 39, + ACTIONS(1732), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -80170,14 +80553,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, + [1161] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(598), 1, + STATE(599), 1, sym_text_interpolation, - ACTIONS(1690), 21, + ACTIONS(1738), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -80199,7 +80582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1688), 39, + ACTIONS(1736), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -80239,14 +80622,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, + [1235] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(599), 1, + STATE(600), 1, sym_text_interpolation, - ACTIONS(1694), 21, + ACTIONS(1742), 21, anon_sym_AMP, anon_sym_EQ, anon_sym_COLON, @@ -80268,7 +80651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 39, + ACTIONS(1740), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -80308,61 +80691,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, + [1309] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(1696), 1, - anon_sym_EQ, - STATE(589), 1, - sym_arguments, - STATE(600), 1, + STATE(601), 1, sym_text_interpolation, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1698), 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(1610), 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(1612), 20, + ACTIONS(1746), 21, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -80382,25 +80720,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(1596), 1, - sym_comment, - ACTIONS(1614), 1, - anon_sym_EQ, - STATE(601), 1, - sym_text_interpolation, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1744), 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(1622), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80414,13 +80745,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 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, @@ -80433,8 +80760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 20, + [1383] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(602), 1, + sym_text_interpolation, + ACTIONS(1750), 21, anon_sym_AMP, + anon_sym_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, @@ -80454,29 +80789,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(1596), 1, - sym_comment, - ACTIONS(1618), 1, + ACTIONS(1748), 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(1700), 1, - anon_sym_EQ, - STATE(589), 1, - sym_arguments, - STATE(602), 1, - sym_text_interpolation, - ACTIONS(1620), 2, + anon_sym_RPAREN, + anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1702), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80490,11 +80814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 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, @@ -80507,40 +80829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 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, + [1457] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, - anon_sym_LPAREN, STATE(603), 1, sym_text_interpolation, - STATE(627), 1, - sym_arguments, - ACTIONS(1630), 20, + ACTIONS(1754), 21, anon_sym_AMP, anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80559,12 +80858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1628), 35, - sym__automatic_semicolon, + ACTIONS(1752), 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, @@ -80584,6 +80886,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, @@ -80595,63 +80898,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1769] = 7, + [1531] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(533), 1, + anon_sym_RBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(1756), 1, + anon_sym_EQ, + ACTIONS(1758), 1, + aux_sym_class_declaration_token1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1762), 1, anon_sym_LPAREN, STATE(604), 1, sym_text_interpolation, - STATE(625), 1, + STATE(649), 1, sym_arguments, - ACTIONS(1626), 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(1624), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, + STATE(2593), 1, + sym_readonly_modifier, + ACTIONS(1764), 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(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1676), 13, + sym__automatic_semicolon, + anon_sym_SEMI, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80663,20 +80942,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1844] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1704), 1, - anon_sym_LPAREN, - STATE(605), 1, - sym_text_interpolation, - STATE(624), 1, - sym_arguments, - ACTIONS(1634), 20, + ACTIONS(1766), 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(1678), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80695,66 +80976,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1632), 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, - [1919] = 11, + [1624] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(459), 1, + anon_sym_RBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1614), 1, + ACTIONS(1756), 1, anon_sym_EQ, - ACTIONS(1618), 1, + ACTIONS(1758), 1, + aux_sym_class_declaration_token1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1762), 1, anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(606), 1, + STATE(605), 1, sym_text_interpolation, - ACTIONS(1620), 2, + STATE(649), 1, + sym_arguments, + STATE(2593), 1, + sym_readonly_modifier, + ACTIONS(1764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1610), 12, - anon_sym_EQ_GT, + ACTIONS(1676), 13, + sym__automatic_semicolon, + anon_sym_SEMI, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -80766,9 +81020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1622), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1766), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80782,8 +81034,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(1612), 19, + ACTIONS(1678), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80803,47 +81054,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2002] = 7, + [1717] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(607), 1, - sym_text_interpolation, - STATE(616), 1, - sym_arguments, - ACTIONS(1638), 20, - anon_sym_AMP, + ACTIONS(1768), 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(1636), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, + STATE(599), 1, + sym_arguments, + STATE(606), 1, + sym_text_interpolation, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1770), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80857,9 +81090,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(1676), 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, @@ -80871,29 +81107,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2077] = 11, + ACTIONS(1678), 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, + [1802] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(1706), 1, + ACTIONS(1768), 1, anon_sym_EQ, - STATE(608), 1, - sym_text_interpolation, - STATE(615), 1, + STATE(599), 1, sym_arguments, - ACTIONS(1708), 2, + STATE(607), 1, + sym_text_interpolation, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1710), 13, + ACTIONS(1770), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80907,11 +81164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 15, - sym__automatic_semicolon, + ACTIONS(1676), 16, anon_sym_SEMI, - anon_sym_COMMA, + 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, @@ -80923,8 +81181,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 19, + ACTIONS(1678), 20, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -80943,29 +81202,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2160] = 11, + [1887] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1614), 1, + ACTIONS(1680), 1, anon_sym_EQ, - ACTIONS(1704), 1, - anon_sym_LPAREN, - STATE(609), 1, + STATE(608), 1, sym_text_interpolation, - STATE(615), 1, - sym_arguments, - ACTIONS(1708), 2, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1622), 13, + ACTIONS(1686), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -80979,11 +81234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 15, - sym__automatic_semicolon, + ACTIONS(1676), 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, @@ -80995,8 +81253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 19, + ACTIONS(1678), 20, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81015,20 +81274,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2243] = 7, + [1968] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(577), 1, + anon_sym_RBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(1756), 1, + anon_sym_EQ, + ACTIONS(1758), 1, + aux_sym_class_declaration_token1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1762), 1, anon_sym_LPAREN, - STATE(610), 1, + STATE(609), 1, sym_text_interpolation, - STATE(613), 1, + STATE(649), 1, sym_arguments, - ACTIONS(1642), 20, + STATE(2593), 1, + sym_readonly_modifier, + ACTIONS(1764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1676), 13, + sym__automatic_semicolon, + anon_sym_SEMI, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_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(1766), 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(1678), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81047,31 +81352,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1640), 35, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, + [2061] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(503), 1, + anon_sym_RBRACE, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_EQ, + ACTIONS(1758), 1, + aux_sym_class_declaration_token1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(610), 1, + sym_text_interpolation, + STATE(649), 1, + sym_arguments, + STATE(2593), 1, + sym_readonly_modifier, + ACTIONS(1764), 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(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1676), 13, + sym__automatic_semicolon, + anon_sym_SEMI, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81083,25 +81396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2318] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1696), 1, - anon_sym_EQ, - STATE(611), 1, - sym_text_interpolation, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1698), 13, + ACTIONS(1766), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81115,26 +81410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 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(1612), 20, + ACTIONS(1678), 19, anon_sym_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81153,36 +81430,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2397] = 14, + [2154] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(1696), 1, + ACTIONS(1756), 1, anon_sym_EQ, - ACTIONS(1712), 1, - anon_sym_RPAREN, - STATE(589), 1, - sym_arguments, - STATE(612), 1, + ACTIONS(1758), 1, + aux_sym_class_declaration_token1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(611), 1, sym_text_interpolation, - STATE(2139), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1620), 2, + STATE(649), 1, + sym_arguments, + STATE(2593), 1, + sym_readonly_modifier, + ACTIONS(1764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1610), 12, - anon_sym_EQ_GT, + ACTIONS(1676), 13, + sym__automatic_semicolon, + anon_sym_SEMI, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81194,7 +81472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1698), 13, + ACTIONS(1766), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81208,7 +81486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1612), 19, + ACTIONS(1678), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81228,44 +81506,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2486] = 5, + [2244] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(613), 1, - sym_text_interpolation, - ACTIONS(1666), 20, - anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(1772), 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(1664), 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(599), 1, + sym_arguments, + STATE(612), 1, + sym_text_interpolation, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1774), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81279,9 +81542,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(1676), 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, @@ -81293,16 +81559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2556] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(614), 1, - sym_text_interpolation, - ACTIONS(1662), 20, + ACTIONS(1678), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81321,16 +81579,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1660), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + [2328] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1674), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(599), 1, + sym_arguments, + STATE(613), 1, + sym_text_interpolation, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1774), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81344,9 +81615,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(1676), 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, @@ -81358,16 +81632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2626] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(615), 1, - sym_text_interpolation, - ACTIONS(1654), 20, + ACTIONS(1678), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81386,32 +81652,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1652), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + [2412] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1756), 1, + anon_sym_EQ, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1762), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1776), 1, + aux_sym_class_declaration_token1, + STATE(614), 1, + sym_text_interpolation, + STATE(649), 1, + sym_arguments, + STATE(2656), 1, + sym_readonly_modifier, + ACTIONS(1764), 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(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1676), 13, + sym__automatic_semicolon, + anon_sym_SEMI, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81423,16 +81694,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2696] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(616), 1, - sym_text_interpolation, - ACTIONS(1670), 20, + ACTIONS(1766), 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(1678), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81451,51 +81728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1668), 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, - [2766] = 5, + [2502] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(617), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(615), 1, sym_text_interpolation, - ACTIONS(1678), 20, + STATE(652), 1, + sym_arguments, + ACTIONS(1672), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81516,13 +81760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1676), 36, + ACTIONS(1670), 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, @@ -81553,45 +81796,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2836] = 12, + [2577] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(1696), 1, + ACTIONS(1756), 1, anon_sym_EQ, - STATE(589), 1, - sym_arguments, - STATE(618), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(616), 1, sym_text_interpolation, - ACTIONS(1620), 2, + STATE(649), 1, + sym_arguments, + ACTIONS(1764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1610), 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(1698), 13, + ACTIONS(1766), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81605,7 +81832,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1612), 19, + ACTIONS(1676), 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(1678), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81625,14 +81868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2920] = 5, + [2660] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(619), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(617), 1, sym_text_interpolation, - ACTIONS(1686), 20, + STATE(637), 1, + sym_arguments, + ACTIONS(1694), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81653,13 +81900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1684), 36, + ACTIONS(1692), 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, @@ -81690,44 +81936,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2990] = 5, + [2735] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(620), 1, - sym_text_interpolation, - ACTIONS(1604), 20, - anon_sym_AMP, + ACTIONS(1756), 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(1602), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1762), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + STATE(618), 1, + sym_text_interpolation, + STATE(649), 1, + sym_arguments, + ACTIONS(1764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1766), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81741,9 +81972,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(1676), 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, @@ -81755,16 +81988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3060] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(621), 1, - sym_text_interpolation, - ACTIONS(1646), 20, + ACTIONS(1678), 19, anon_sym_AMP, - anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -81783,32 +82008,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1644), 36, - sym__automatic_semicolon, - anon_sym_SEMI, + [2818] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(906), 1, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1674), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(1768), 1, + anon_sym_EQ, + ACTIONS(1778), 1, + anon_sym_RPAREN, + STATE(599), 1, + sym_arguments, + STATE(619), 1, + sym_text_interpolation, + STATE(2198), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1684), 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(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1676), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -81820,14 +82049,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3130] = 5, + ACTIONS(1770), 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(1678), 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, + [2907] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(622), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(620), 1, sym_text_interpolation, - ACTIONS(1600), 20, + STATE(654), 1, + sym_arguments, + ACTIONS(1690), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81848,13 +82115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1598), 36, + ACTIONS(1688), 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, @@ -81885,32 +82151,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3200] = 12, + [2982] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(1696), 1, + ACTIONS(1768), 1, anon_sym_EQ, - STATE(589), 1, + ACTIONS(1778), 1, + anon_sym_RPAREN, + STATE(599), 1, sym_arguments, - STATE(623), 1, + STATE(621), 1, sym_text_interpolation, - ACTIONS(1620), 2, + STATE(2198), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1716), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1610), 12, + ACTIONS(1676), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -81923,7 +82192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1698), 13, + ACTIONS(1770), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -81937,7 +82206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1612), 19, + ACTIONS(1678), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81957,14 +82226,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3284] = 5, + [3071] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(624), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(622), 1, sym_text_interpolation, - ACTIONS(1694), 20, + STATE(636), 1, + sym_arguments, + ACTIONS(1698), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -81985,13 +82258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 36, + ACTIONS(1696), 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, @@ -82022,44 +82294,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3354] = 5, + [3146] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(625), 1, - sym_text_interpolation, - ACTIONS(1690), 20, - anon_sym_AMP, + ACTIONS(1768), 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(1688), 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(623), 1, + sym_text_interpolation, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1770), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82073,9 +82326,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(1676), 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, @@ -82087,16 +82343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3424] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(626), 1, - sym_text_interpolation, - ACTIONS(1682), 20, + ACTIONS(1678), 20, anon_sym_AMP, - anon_sym_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -82115,51 +82364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 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, - [3494] = 5, + [3225] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(627), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(624), 1, sym_text_interpolation, - ACTIONS(1674), 20, + STATE(647), 1, + sym_arguments, + ACTIONS(1702), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -82180,13 +82396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1672), 36, + ACTIONS(1700), 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, @@ -82217,32 +82432,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3564] = 12, + [3300] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(1700), 1, + ACTIONS(1680), 1, anon_sym_EQ, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(628), 1, + STATE(625), 1, sym_text_interpolation, - ACTIONS(1620), 2, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1718), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1610), 12, + ACTIONS(1676), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -82255,7 +82467,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1702), 13, + ACTIONS(1686), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82269,7 +82483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1612), 19, + anon_sym_RBRACK, + ACTIONS(1678), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82289,44 +82504,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3648] = 5, + [3383] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(629), 1, - sym_text_interpolation, - ACTIONS(1608), 20, - anon_sym_AMP, + ACTIONS(1680), 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(1606), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1762), 1, anon_sym_LPAREN, - anon_sym_COLON_COLON, + STATE(626), 1, + sym_text_interpolation, + STATE(649), 1, + sym_arguments, + ACTIONS(1764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1686), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82340,9 +82540,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1676), 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(1678), 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, + [3466] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(1680), 1, + anon_sym_EQ, + STATE(599), 1, + sym_arguments, + STATE(627), 1, + sym_text_interpolation, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1676), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -82354,29 +82611,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3718] = 11, + ACTIONS(1686), 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(1678), 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, + [3549] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(1721), 1, + ACTIONS(1680), 1, anon_sym_EQ, - STATE(589), 1, - sym_arguments, - STATE(630), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(628), 1, sym_text_interpolation, - ACTIONS(1620), 2, + STATE(649), 1, + sym_arguments, + ACTIONS(1764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1723), 13, + ACTIONS(1686), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82390,10 +82684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 14, + ACTIONS(1676), 15, + sym__automatic_semicolon, + anon_sym_SEMI, 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, @@ -82405,7 +82700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 19, + ACTIONS(1678), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82425,14 +82720,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3800] = 5, + [3632] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(631), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(599), 1, + sym_arguments, + STATE(629), 1, + sym_text_interpolation, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1780), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1676), 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(1774), 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(1678), 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, + [3716] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(630), 1, sym_text_interpolation, - ACTIONS(1594), 20, + ACTIONS(1750), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -82453,7 +82820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1592), 36, + ACTIONS(1748), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82490,14 +82857,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, + [3786] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(632), 1, + STATE(631), 1, sym_text_interpolation, - ACTIONS(1650), 20, + ACTIONS(1718), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -82518,7 +82885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1648), 36, + ACTIONS(1716), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82555,25 +82922,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3940] = 9, + [3856] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1700), 1, - anon_sym_EQ, - STATE(633), 1, + STATE(632), 1, sym_text_interpolation, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1668), 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(1666), 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(1702), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82587,12 +82973,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 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, @@ -82604,34 +82987,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 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, - [4018] = 5, + [3926] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(634), 1, + STATE(633), 1, sym_text_interpolation, - ACTIONS(1658), 20, + ACTIONS(1734), 20, anon_sym_AMP, anon_sym_EQ, anon_sym_QMARK, @@ -82652,7 +83015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1656), 36, + ACTIONS(1732), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82689,59 +83052,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4088] = 12, + [3996] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1696), 1, - anon_sym_EQ, - ACTIONS(1712), 1, - anon_sym_RPAREN, - STATE(635), 1, + STATE(634), 1, sym_text_interpolation, - STATE(2139), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1610), 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(1698), 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(1612), 19, + ACTIONS(1660), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -82760,25 +83080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4171] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1706), 1, - anon_sym_EQ, - STATE(636), 1, - sym_text_interpolation, - ACTIONS(1708), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1658), 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(1710), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82792,11 +83103,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 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, @@ -82808,52 +83117,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 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, - [4248] = 12, + [4066] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(1700), 1, + ACTIONS(1768), 1, anon_sym_EQ, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(637), 1, + STATE(635), 1, sym_text_interpolation, - ACTIONS(1620), 2, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1725), 2, + ACTIONS(1783), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1610), 11, + ACTIONS(1676), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -82865,7 +83155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1702), 13, + ACTIONS(1770), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82879,7 +83169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1612), 19, + ACTIONS(1678), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82899,56 +83189,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4331] = 9, + [4150] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1614), 1, - anon_sym_EQ, - STATE(638), 1, + STATE(636), 1, sym_text_interpolation, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1610), 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(1622), 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(1612), 19, + ACTIONS(1714), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -82967,25 +83217,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4408] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1614), 1, - anon_sym_EQ, - STATE(639), 1, - sym_text_interpolation, - ACTIONS(1708), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1712), 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(1622), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -82999,11 +83240,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 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, @@ -83015,8 +83254,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 19, + [4220] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(637), 1, + sym_text_interpolation, + ACTIONS(1706), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -83035,25 +83282,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4485] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1721), 1, - anon_sym_EQ, - STATE(640), 1, - sym_text_interpolation, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1704), 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(1723), 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -83067,10 +83305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1610), 14, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -83082,8 +83319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1612), 19, + [4290] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(638), 1, + sym_text_interpolation, + ACTIONS(1746), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -83102,28 +83347,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4561] = 10, + ACTIONS(1744), 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, + [4360] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1700), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(1768), 1, anon_sym_EQ, - STATE(641), 1, + STATE(599), 1, + sym_arguments, + STATE(639), 1, sym_text_interpolation, - ACTIONS(1620), 2, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1718), 2, + ACTIONS(1785), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1616), 5, + anon_sym_RPAREN, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1610), 12, + ACTIONS(1676), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -83136,7 +83422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1702), 13, + ACTIONS(1770), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -83150,7 +83436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1612), 19, + ACTIONS(1678), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -83170,28 +83456,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4639] = 10, + [4444] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1696), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(1772), 1, anon_sym_EQ, - STATE(642), 1, + STATE(599), 1, + sym_arguments, + STATE(640), 1, sym_text_interpolation, - ACTIONS(1620), 2, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1716), 2, + ACTIONS(1780), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1610), 12, + ACTIONS(1676), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -83204,7 +83494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1698), 13, + ACTIONS(1774), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -83218,7 +83508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1612), 19, + ACTIONS(1678), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -83238,41 +83528,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4717] = 10, + [4528] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1696), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(1787), 1, anon_sym_EQ, - STATE(643), 1, + STATE(599), 1, + sym_arguments, + STATE(641), 1, sym_text_interpolation, - ACTIONS(1620), 2, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1610), 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(1698), 13, + ACTIONS(1789), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -83286,10 +83564,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1612), 19, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(1676), 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(1678), 19, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_QMARK_QMARK, @@ -83306,28 +83599,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4795] = 10, + [4610] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1700), 1, - anon_sym_EQ, - STATE(644), 1, + STATE(642), 1, sym_text_interpolation, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1725), 2, + ACTIONS(1710), 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(1708), 36, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1616), 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(1610), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -83339,22 +83664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1702), 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(1612), 19, + [4680] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(643), 1, + sym_text_interpolation, + ACTIONS(1664), 20, anon_sym_AMP, + anon_sym_EQ, anon_sym_QMARK, anon_sym_PIPE, anon_sym_PLUS, @@ -83373,1421 +83692,1559 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4872] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(645), 1, - sym_text_interpolation, - ACTIONS(1728), 22, - anon_sym_AMP, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_COLON, - aux_sym_class_interface_clause_token1, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_self, - anon_sym_parent, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - sym_name, - ACTIONS(1730), 28, + ACTIONS(1662), 36, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, 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_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_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, - anon_sym_DOLLAR, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [4936] = 30, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(242), 1, - aux_sym_final_modifier_token1, - ACTIONS(244), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(246), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1734), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1736), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1740), 1, - sym_var_modifier, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(1746), 1, - anon_sym_DOLLAR, - STATE(646), 1, - sym_text_interpolation, - STATE(1133), 1, - aux_sym_property_declaration_repeat1, - STATE(1330), 1, - sym__modifier, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(1719), 1, - sym_variable_name, - STATE(1778), 1, - sym_property_element, - STATE(1795), 1, - sym__function_definition_header, - STATE(2137), 1, - sym__type, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(248), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1329), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(1738), 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, - [5048] = 30, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(242), 1, - aux_sym_final_modifier_token1, - ACTIONS(244), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(246), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1734), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1736), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1740), 1, - sym_var_modifier, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(1746), 1, - anon_sym_DOLLAR, - STATE(647), 1, - sym_text_interpolation, - STATE(1133), 1, - aux_sym_property_declaration_repeat1, - STATE(1330), 1, - sym__modifier, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(1719), 1, - sym_variable_name, - STATE(1762), 1, - sym__function_definition_header, - STATE(1763), 1, - sym_property_element, - STATE(2125), 1, - sym__type, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(248), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1329), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(1738), 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, - [5160] = 10, + [4750] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1755), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(648), 1, - sym_text_interpolation, - STATE(753), 1, + ACTIONS(1768), 1, + anon_sym_EQ, + STATE(599), 1, sym_arguments, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + STATE(644), 1, + sym_text_interpolation, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1783), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1750), 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(1748), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + ACTIONS(1676), 12, 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, + ACTIONS(1770), 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(1678), 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, - [5231] = 8, + [4834] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_LPAREN, - STATE(649), 1, + STATE(645), 1, sym_text_interpolation, - STATE(676), 1, - sym_arguments, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1614), 13, + ACTIONS(1726), 20, anon_sym_AMP, - anon_sym_COLON, + 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, - ACTIONS(1622), 27, + anon_sym_PERCENT, + ACTIONS(1724), 36, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_RBRACK, + anon_sym_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_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, - 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, - [5298] = 10, + [4904] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(1752), 1, - anon_sym_BSLASH, - STATE(589), 1, + ACTIONS(1768), 1, + anon_sym_EQ, + STATE(599), 1, sym_arguments, - STATE(650), 1, + STATE(646), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1785), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1761), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 26, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + ACTIONS(1676), 12, 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, + ACTIONS(1770), 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(1678), 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, - [5369] = 7, + [4988] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_LPAREN, - STATE(651), 1, + STATE(647), 1, sym_text_interpolation, - STATE(678), 1, - sym_arguments, - ACTIONS(1634), 13, + ACTIONS(1722), 20, anon_sym_AMP, - anon_sym_COLON, + 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, - ACTIONS(1632), 32, + anon_sym_PERCENT, + ACTIONS(1720), 36, + 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, - anon_sym_RPAREN, + 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, - 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, - [5434] = 7, + [5058] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_LPAREN, - STATE(652), 1, + STATE(648), 1, sym_text_interpolation, - STATE(679), 1, - sym_arguments, - ACTIONS(1626), 13, + ACTIONS(1654), 20, anon_sym_AMP, - anon_sym_COLON, + 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, - ACTIONS(1624), 32, + anon_sym_PERCENT, + ACTIONS(1652), 36, + 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, - anon_sym_RPAREN, + 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, - 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, - [5499] = 7, + [5128] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_LPAREN, - STATE(653), 1, + STATE(649), 1, sym_text_interpolation, - STATE(681), 1, - sym_arguments, - ACTIONS(1630), 13, + ACTIONS(1738), 20, anon_sym_AMP, - anon_sym_COLON, + 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, - ACTIONS(1628), 32, + anon_sym_PERCENT, + ACTIONS(1736), 36, + 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, - anon_sym_RPAREN, + 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, - 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, - [5564] = 7, + [5198] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_LPAREN, - STATE(654), 1, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(650), 1, sym_text_interpolation, - STATE(672), 1, - sym_arguments, - ACTIONS(1638), 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(1636), 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, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1774), 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(1676), 16, + 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, - 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, + ACTIONS(1678), 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, - [5629] = 5, + [5276] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(655), 1, + STATE(651), 1, sym_text_interpolation, - ACTIONS(1646), 13, + ACTIONS(1754), 20, 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, - ACTIONS(1644), 34, + anon_sym_PERCENT, + ACTIONS(1752), 36, + sym__automatic_semicolon, 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_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, - 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, - [5690] = 7, + [5346] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_LPAREN, - STATE(656), 1, + STATE(652), 1, sym_text_interpolation, - STATE(671), 1, - sym_arguments, - ACTIONS(1642), 13, + ACTIONS(1742), 20, anon_sym_AMP, - anon_sym_COLON, + 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, - ACTIONS(1640), 32, + anon_sym_PERCENT, + ACTIONS(1740), 36, + 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, - anon_sym_RPAREN, + 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, - 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, - [5755] = 9, + [5416] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(657), 1, - sym_text_interpolation, - STATE(676), 1, + ACTIONS(1787), 1, + anon_sym_EQ, + STATE(599), 1, sym_arguments, - ACTIONS(1620), 2, + STATE(653), 1, + sym_text_interpolation, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 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(1610), 25, - anon_sym_SEMI, + ACTIONS(1789), 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(1676), 14, 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, - 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, + ACTIONS(1678), 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, - [5824] = 10, + [5498] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - anon_sym_BSLASH, - STATE(589), 1, - sym_arguments, - STATE(658), 1, + STATE(654), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 12, + ACTIONS(1730), 20, anon_sym_AMP, - anon_sym_COLON, + 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, - ACTIONS(1610), 26, + anon_sym_PERCENT, + ACTIONS(1728), 36, + 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_STAR_STAR_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_DOT_EQ, + anon_sym_LT_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, - 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, - [5895] = 10, + [5568] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1757), 1, - anon_sym_LPAREN, - STATE(659), 1, + ACTIONS(1756), 1, + anon_sym_EQ, + STATE(655), 1, sym_text_interpolation, - STATE(676), 1, - sym_arguments, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + ACTIONS(1764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 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(1610), 26, + ACTIONS(1766), 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(1676), 15, + 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, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [5966] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(660), 1, - sym_text_interpolation, - ACTIONS(1646), 13, + ACTIONS(1678), 19, 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, - ACTIONS(1644), 33, - anon_sym_SEMI, + anon_sym_PERCENT, + [5645] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(906), 1, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1768), 1, + anon_sym_EQ, + ACTIONS(1778), 1, anon_sym_RPAREN, - anon_sym_COLON_COLON, + STATE(656), 1, + sym_text_interpolation, + STATE(2198), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1676), 12, + 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, - [6026] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(661), 1, - sym_text_interpolation, - ACTIONS(1686), 13, + ACTIONS(1770), 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(1678), 19, 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, - ACTIONS(1684), 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_PERCENT, + [5728] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1680), 1, + anon_sym_EQ, + STATE(657), 1, + sym_text_interpolation, + ACTIONS(1764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1686), 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(1676), 15, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + 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, - [6086] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(662), 1, - sym_text_interpolation, - ACTIONS(1650), 13, + ACTIONS(1678), 19, 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_STAR, - anon_sym_SLASH, - ACTIONS(1648), 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_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [5805] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1680), 1, + anon_sym_EQ, + STATE(658), 1, + sym_text_interpolation, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1676), 12, + 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, - [6146] = 30, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(316), 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1763), 1, - sym_name, - ACTIONS(1767), 1, - aux_sym_class_declaration_token1, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1771), 1, - anon_sym_DOLLAR, - STATE(663), 1, - sym_text_interpolation, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1683), 1, - sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2491), 1, - sym_attribute_list, - STATE(2499), 1, - sym__scope_resolution_qualifier, - STATE(2603), 1, - sym_namespace_name, - STATE(2605), 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(843), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1733), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(1765), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(826), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(828), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1548), 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, - [6256] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(664), 1, - sym_text_interpolation, - ACTIONS(1594), 13, + ACTIONS(1686), 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(1678), 19, 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, - 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_PERCENT, + [5882] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1674), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(599), 1, + sym_arguments, + STATE(659), 1, + sym_text_interpolation, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1676), 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, + ACTIONS(1774), 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(1678), 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, - [6316] = 7, + [5965] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(595), 1, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(599), 1, sym_arguments, - STATE(665), 1, + STATE(660), 1, sym_text_interpolation, - ACTIONS(1775), 12, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1676), 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(1774), 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(1678), 19, 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, - ACTIONS(1773), 32, - anon_sym_SEMI, + anon_sym_PERCENT, + [6048] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(661), 1, + sym_text_interpolation, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1780), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACK, + ACTIONS(1682), 5, 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, + ACTIONS(1676), 12, + 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, + ACTIONS(1774), 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(1678), 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, - [6380] = 5, + [6126] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(666), 1, + ACTIONS(1787), 1, + anon_sym_EQ, + STATE(662), 1, sym_text_interpolation, - ACTIONS(1604), 13, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1789), 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(1676), 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(1678), 19, 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, - ACTIONS(1602), 33, - anon_sym_SEMI, + anon_sym_PERCENT, + [6202] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1768), 1, + anon_sym_EQ, + STATE(663), 1, + sym_text_interpolation, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1785), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, + ACTIONS(1682), 5, + anon_sym_LBRACE, 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, + ACTIONS(1676), 12, + 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, + ACTIONS(1770), 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(1678), 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, - [6440] = 7, + [6280] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(594), 1, - sym_arguments, - STATE(667), 1, + ACTIONS(1768), 1, + anon_sym_EQ, + STATE(664), 1, sym_text_interpolation, - ACTIONS(1779), 12, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1783), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1676), 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(1770), 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(1678), 19, 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, - ACTIONS(1777), 32, - anon_sym_SEMI, + anon_sym_PERCENT, + [6358] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1772), 1, + anon_sym_EQ, + STATE(665), 1, + sym_text_interpolation, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1791), 2, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACK, + ACTIONS(1682), 5, 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, + ACTIONS(1676), 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, + ACTIONS(1774), 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(1678), 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, - [6504] = 5, + [6435] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(668), 1, + STATE(666), 1, sym_text_interpolation, - ACTIONS(1600), 13, + ACTIONS(1794), 22, anon_sym_AMP, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_aliasing_clause_token1, anon_sym_COLON, + aux_sym_class_interface_clause_token1, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_self, + anon_sym_parent, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -84795,28 +85252,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 33, + sym_name, + ACTIONS(1796), 28, anon_sym_SEMI, anon_sym_COMMA, - 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, anon_sym_RBRACK, - aux_sym_binary_expression_token1, + anon_sym_DOLLAR, 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, @@ -84829,94 +85282,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6564] = 30, + [6499] = 31, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(575), 1, + ACTIONS(242), 1, + aux_sym_final_modifier_token1, + ACTIONS(244), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(246), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(585), 1, - aux_sym_cast_type_token1, - ACTIONS(617), 1, - anon_sym_LT_LT_LT, - ACTIONS(1572), 1, - anon_sym_LBRACK, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1781), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1798), 1, sym_name, - ACTIONS(1783), 1, - aux_sym_class_declaration_token1, - ACTIONS(1785), 1, - anon_sym_DOLLAR, - STATE(669), 1, + ACTIONS(1800), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1802), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1806), 1, + sym_var_modifier, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(1812), 1, + anon_sym_DOLLAR, + ACTIONS(1814), 1, + sym_grit_metavariable, + STATE(667), 1, sym_text_interpolation, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1756), 1, - sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2496), 1, + STATE(1065), 1, + aux_sym_property_declaration_repeat1, + STATE(1369), 1, + sym__modifier, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(1795), 1, + sym_variable_name, + STATE(1949), 1, + sym__function_definition_header, + STATE(1952), 1, + sym_property_element, + STATE(1991), 1, + sym__type, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2561), 1, - sym_attribute_list, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(2652), 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(716), 2, - sym_qualified_name, - sym__reserved_identifier, - STATE(1733), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(310), 3, + ACTIONS(248), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1370), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(1804), 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, + [6614] = 31, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(242), 1, + aux_sym_final_modifier_token1, + ACTIONS(244), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(246), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1800), 1, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(686), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(687), 3, - sym_subscript_expression, - sym_dynamic_variable_name, + ACTIONS(1802), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1806), 1, + sym_var_modifier, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(1812), 1, + anon_sym_DOLLAR, + ACTIONS(1814), 1, + sym_grit_metavariable, + STATE(668), 1, + sym_text_interpolation, + STATE(1065), 1, + aux_sym_property_declaration_repeat1, + STATE(1369), 1, + sym__modifier, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(1795), 1, sym_variable_name, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1548), 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, - [6674] = 5, + STATE(1827), 1, + sym_property_element, + STATE(1828), 1, + sym__function_definition_header, + STATE(2190), 1, + sym__type, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(248), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(1370), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(1804), 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, + [6729] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(670), 1, + ACTIONS(1816), 1, + anon_sym_LPAREN, + STATE(669), 1, sym_text_interpolation, - ACTIONS(1608), 13, + STATE(714), 1, + sym_arguments, + ACTIONS(1698), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84930,14 +85475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1606), 33, + ACTIONS(1696), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, @@ -84964,14 +85508,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6734] = 5, + [6794] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(671), 1, + ACTIONS(1816), 1, + anon_sym_LPAREN, + STATE(670), 1, sym_text_interpolation, - ACTIONS(1666), 13, + STATE(702), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1680), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -84985,21 +85539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1664), 33, + ACTIONS(1686), 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_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, @@ -85019,74 +85567,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6794] = 5, + [6861] = 31, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - STATE(672), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1818), 1, + sym_name, + ACTIONS(1822), 1, + aux_sym_class_declaration_token1, + ACTIONS(1824), 1, + anon_sym_LPAREN, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(1828), 1, + sym_grit_metavariable, + STATE(671), 1, sym_text_interpolation, - ACTIONS(1670), 13, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1759), 1, + sym__dereferencable_expression, + STATE(2606), 1, + sym_attribute_list, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(2699), 1, + sym__scope_resolution_qualifier, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(889), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1763), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(1820), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(867), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(892), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1613), 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, + [6974] = 31, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1830), 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(1668), 33, - anon_sym_SEMI, + ACTIONS(1832), 1, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1834), 1, anon_sym_LPAREN, + ACTIONS(1836), 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, - [6854] = 5, + ACTIONS(1838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1840), 1, + anon_sym_QMARK, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(1844), 1, + sym_grit_metavariable, + STATE(672), 1, + sym_text_interpolation, + STATE(974), 1, + sym_attribute_list, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1196), 1, + sym_visibility_modifier, + STATE(1473), 1, + sym_qualified_name, + STATE(1611), 1, + sym__types, + STATE(1734), 1, + sym__type, + STATE(1977), 1, + sym_variable_name, + STATE(2110), 1, + sym_reference_modifier, + STATE(2696), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(248), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2036), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1804), 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, + [7087] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(673), 1, sym_text_interpolation, - ACTIONS(1678), 13, + ACTIONS(1718), 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, @@ -85095,18 +85752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1676), 33, + ACTIONS(1716), 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_DASH, - anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -85129,14 +85787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6914] = 5, + [7148] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1816), 1, + anon_sym_LPAREN, STATE(674), 1, sym_text_interpolation, - ACTIONS(1658), 13, + STATE(689), 1, + sym_arguments, + ACTIONS(1702), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85150,14 +85812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 33, + ACTIONS(1700), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, @@ -85184,7 +85845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6974] = 30, + [7213] = 31, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -85193,65 +85854,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(316), 1, anon_sym_POUND_LBRACK, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1787), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1789), 1, - anon_sym_COMMA, - ACTIONS(1791), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1793), 1, - anon_sym_RPAREN, - ACTIONS(1795), 1, + ACTIONS(1838), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1797), 1, + ACTIONS(1840), 1, anon_sym_QMARK, - ACTIONS(1799), 1, + ACTIONS(1842), 1, anon_sym_DOLLAR, + ACTIONS(1846), 1, + anon_sym_COMMA, + ACTIONS(1848), 1, + anon_sym_RPAREN, + ACTIONS(1850), 1, + sym_grit_metavariable, STATE(675), 1, sym_text_interpolation, STATE(974), 1, sym_attribute_list, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, - STATE(1188), 1, + STATE(1196), 1, sym_visibility_modifier, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1543), 1, + STATE(1611), 1, sym__types, - STATE(1677), 1, + STATE(1734), 1, sym__type, - STATE(2040), 1, - sym_reference_modifier, - STATE(2043), 1, + STATE(1977), 1, sym_variable_name, - STATE(2568), 1, + STATE(2110), 1, + sym_reference_modifier, + STATE(2696), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, ACTIONS(248), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1469), 3, + STATE(1564), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(2041), 3, + STATE(1972), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -85264,14 +85927,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [7084] = 5, + [7326] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1816), 1, + anon_sym_LPAREN, STATE(676), 1, sym_text_interpolation, - ACTIONS(1654), 13, + STATE(702), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1680), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85285,21 +85958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 33, + ACTIONS(1686), 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_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, @@ -85319,94 +85986,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7144] = 30, + [7393] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1791), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1797), 1, - anon_sym_QMARK, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(1801), 1, - anon_sym_COMMA, - ACTIONS(1803), 1, - anon_sym_RPAREN, STATE(677), 1, sym_text_interpolation, - STATE(974), 1, - sym_attribute_list, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1188), 1, - sym_visibility_modifier, - STATE(1425), 1, - sym_qualified_name, - STATE(1543), 1, - sym__types, - STATE(1677), 1, - sym__type, - STATE(2040), 1, - sym_reference_modifier, - STATE(2043), 1, - sym_variable_name, - STATE(2568), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(248), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(1930), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1738), 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, - [7254] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(678), 1, - sym_text_interpolation, - ACTIONS(1694), 13, + STATE(702), 1, + sym_arguments, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85420,21 +86020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1692), 33, + ACTIONS(1676), 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, @@ -85454,124 +86046,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7314] = 5, + [7462] = 31, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - STATE(679), 1, - sym_text_interpolation, - ACTIONS(1690), 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(1688), 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, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(1622), 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, - [7374] = 5, + ACTIONS(1824), 1, + anon_sym_LPAREN, + ACTIONS(1852), 1, + sym_name, + ACTIONS(1854), 1, + aux_sym_class_declaration_token1, + ACTIONS(1856), 1, + anon_sym_DOLLAR, + ACTIONS(1858), 1, + sym_grit_metavariable, + STATE(678), 1, + sym_text_interpolation, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1767), 1, + sym__dereferencable_expression, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2657), 1, + sym_attribute_list, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + STATE(2732), 1, + sym__scope_resolution_qualifier, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(746), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1763), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(741), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(745), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1613), 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, + [7575] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(680), 1, - sym_text_interpolation, - ACTIONS(1682), 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(1680), 33, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1816), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + STATE(679), 1, + sym_text_interpolation, + STATE(702), 1, + sym_arguments, + ACTIONS(1684), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + 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, - [7434] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(681), 1, - sym_text_interpolation, - ACTIONS(1674), 13, + ACTIONS(1678), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85585,21 +86162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1672), 33, + ACTIONS(1676), 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, @@ -85619,14 +86188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7494] = 5, + [7644] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(682), 1, + ACTIONS(1816), 1, + anon_sym_LPAREN, + STATE(680), 1, sym_text_interpolation, - ACTIONS(1662), 13, + STATE(710), 1, + sym_arguments, + ACTIONS(1672), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85640,14 +86213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 33, + ACTIONS(1670), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON_COLON, anon_sym_DASH_DASH, @@ -85674,24 +86246,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7554] = 8, + [7709] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(676), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(599), 1, sym_arguments, - STATE(683), 1, + STATE(681), 1, sym_text_interpolation, - ACTIONS(1616), 5, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 12, + ACTIONS(1678), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85704,7 +86280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 26, + ACTIONS(1676), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85731,16 +86307,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7619] = 6, + [7780] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(594), 1, - sym_arguments, - STATE(684), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(1867), 1, + anon_sym_LPAREN, + STATE(682), 1, sym_text_interpolation, - ACTIONS(1630), 12, + STATE(772), 1, + sym_arguments, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1865), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85753,20 +86341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1628), 32, + ACTIONS(1863), 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, @@ -85786,16 +86368,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7680] = 6, + [7851] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(592), 1, - sym_arguments, - STATE(685), 1, + ACTIONS(1816), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(683), 1, sym_text_interpolation, - ACTIONS(1642), 12, + STATE(702), 1, + sym_arguments, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85808,20 +86402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 32, + ACTIONS(1676), 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, @@ -85841,24 +86429,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7741] = 8, + [7922] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1805), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(686), 1, - sym_text_interpolation, - STATE(968), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(599), 1, sym_arguments, - ACTIONS(1616), 5, + STATE(684), 1, + sym_text_interpolation, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1750), 12, + ACTIONS(1871), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -85871,7 +86463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1748), 26, + ACTIONS(1869), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -85898,28 +86490,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7806] = 8, + [7993] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, - STATE(687), 1, + STATE(685), 1, sym_text_interpolation, - STATE(753), 1, + STATE(709), 1, sym_arguments, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1750), 12, + ACTIONS(1694), 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, @@ -85928,14 +86515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1748), 26, + ACTIONS(1692), 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, @@ -85955,28 +86548,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7871] = 8, + [8058] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(688), 1, + STATE(686), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1761), 12, + STATE(707), 1, + sym_arguments, + ACTIONS(1690), 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, @@ -85985,14 +86573,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 26, + ACTIONS(1688), 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, @@ -86012,72 +86606,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7936] = 27, + [8123] = 30, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1834), 1, + anon_sym_LPAREN, + ACTIONS(1838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1840), 1, + anon_sym_QMARK, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(1873), 1, + anon_sym_RPAREN, + ACTIONS(1875), 1, + sym_grit_metavariable, + STATE(687), 1, + sym_text_interpolation, + STATE(974), 1, + sym_attribute_list, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1196), 1, + sym_visibility_modifier, + STATE(1473), 1, + sym_qualified_name, + STATE(1611), 1, + sym__types, + STATE(1734), 1, + sym__type, + STATE(1977), 1, + sym_variable_name, + STATE(2110), 1, + sym_reference_modifier, + STATE(2696), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(248), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2277), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1804), 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, + [8233] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(585), 1, + ACTIONS(607), 1, aux_sym_cast_type_token1, - ACTIONS(617), 1, + ACTIONS(639), 1, anon_sym_LT_LT_LT, - ACTIONS(621), 1, + ACTIONS(643), 1, anon_sym_DOLLAR, - ACTIONS(1572), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1769), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, - ACTIONS(1807), 1, + ACTIONS(1877), 1, sym_name, - ACTIONS(1809), 1, + ACTIONS(1879), 1, anon_sym_RBRACE, - STATE(689), 1, + ACTIONS(1881), 1, + sym_grit_metavariable, + STATE(688), 1, sym_text_interpolation, - STATE(710), 1, + STATE(692), 1, aux_sym_use_list_repeat1, - STATE(1566), 1, + STATE(1592), 1, sym_class_constant_access_expression, - STATE(1722), 1, + STATE(1778), 1, sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, + STATE(2595), 1, sym__scope_resolution_qualifier, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, sym_namespace_name, - ACTIONS(613), 2, + ACTIONS(635), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(615), 2, + ACTIONS(637), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1554), 2, + STATE(1606), 2, sym_qualified_name, sym__reserved_identifier, - STATE(2329), 2, + STATE(2389), 2, sym_use_instead_of_clause, sym_use_as_clause, ACTIONS(310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(760), 4, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(1733), 4, + STATE(1763), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1548), 10, + STATE(1613), 10, sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, @@ -86088,28 +86764,74 @@ static const uint16_t ts_small_parse_table[] = { sym__string, sym_dynamic_variable_name, sym_variable_name, - [8039] = 8, + [8339] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_LPAREN, - STATE(676), 1, - sym_arguments, - STATE(690), 1, + STATE(689), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1722), 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(1720), 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(1612), 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, + [8399] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(690), 1, + sym_text_interpolation, + ACTIONS(1664), 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, @@ -86118,14 +86840,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 26, + ACTIONS(1662), 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_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, @@ -86145,7 +86874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8104] = 29, + [8459] = 30, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -86154,63 +86883,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(316), 1, anon_sym_POUND_LBRACK, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1787), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1791), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1838), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1797), 1, + ACTIONS(1840), 1, anon_sym_QMARK, - ACTIONS(1799), 1, + ACTIONS(1842), 1, anon_sym_DOLLAR, - ACTIONS(1811), 1, + ACTIONS(1875), 1, + sym_grit_metavariable, + ACTIONS(1883), 1, anon_sym_RPAREN, STATE(691), 1, sym_text_interpolation, STATE(974), 1, sym_attribute_list, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, - STATE(1188), 1, + STATE(1196), 1, sym_visibility_modifier, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1543), 1, + STATE(1611), 1, sym__types, - STATE(1677), 1, + STATE(1734), 1, sym__type, - STATE(2040), 1, - sym_reference_modifier, - STATE(2043), 1, + STATE(1977), 1, sym_variable_name, - STATE(2568), 1, + STATE(2110), 1, + sym_reference_modifier, + STATE(2696), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, ACTIONS(248), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1469), 3, + STATE(1564), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(2321), 3, + STATE(2277), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -86223,71 +86954,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [8211] = 26, + [8569] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1813), 1, - sym_name, - ACTIONS(1819), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1822), 1, + ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(1825), 1, - anon_sym_RBRACE, - ACTIONS(1827), 1, - anon_sym_LPAREN, - ACTIONS(1830), 1, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, aux_sym_cast_type_token1, - ACTIONS(1833), 1, - anon_sym_LBRACK, - ACTIONS(1842), 1, + ACTIONS(639), 1, anon_sym_LT_LT_LT, - ACTIONS(1845), 1, + ACTIONS(643), 1, anon_sym_DOLLAR, - STATE(1566), 1, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1824), 1, + anon_sym_LPAREN, + ACTIONS(1877), 1, + sym_name, + ACTIONS(1881), 1, + sym_grit_metavariable, + ACTIONS(1885), 1, + anon_sym_RBRACE, + STATE(692), 1, + sym_text_interpolation, + STATE(711), 1, + aux_sym_use_list_repeat1, + STATE(1592), 1, sym_class_constant_access_expression, - STATE(1722), 1, + STATE(1778), 1, sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, + STATE(2595), 1, sym__scope_resolution_qualifier, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, sym_namespace_name, - ACTIONS(1836), 2, + ACTIONS(635), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(1839), 2, + ACTIONS(637), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(692), 2, - sym_text_interpolation, - aux_sym_use_list_repeat1, - STATE(1554), 2, + STATE(1606), 2, sym_qualified_name, sym__reserved_identifier, - STATE(2329), 2, + STATE(2389), 2, sym_use_instead_of_clause, sym_use_as_clause, - ACTIONS(1816), 3, + ACTIONS(310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(760), 4, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(1733), 4, + STATE(1763), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1548), 10, + STATE(1613), 10, sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, @@ -86298,22 +87032,19 @@ static const uint16_t ts_small_parse_table[] = { sym__string, sym_dynamic_variable_name, sym_variable_name, - [8312] = 7, + [8675] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, - anon_sym_LPAREN, - STATE(673), 1, - sym_arguments, STATE(693), 1, sym_text_interpolation, - ACTIONS(1775), 12, + ACTIONS(1654), 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, @@ -86322,16 +87053,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1773), 31, + ACTIONS(1652), 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_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, @@ -86354,18 +87087,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8375] = 7, + [8735] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(681), 1, + STATE(598), 1, sym_arguments, STATE(694), 1, sym_text_interpolation, - ACTIONS(1779), 12, + ACTIONS(1889), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86378,12 +87111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1777), 31, + ACTIONS(1887), 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, @@ -86410,155 +87144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8438] = 8, + [8799] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, - anon_sym_LPAREN, STATE(695), 1, sym_text_interpolation, - STATE(744), 1, - sym_arguments, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1614), 12, + ACTIONS(1754), 13, 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(1622), 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, - [8503] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(306), 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(713), 1, - anon_sym_AMP, - ACTIONS(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1848), 1, - sym_name, - STATE(696), 1, - sym_text_interpolation, - STATE(1722), 1, - sym__dereferencable_expression, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(2090), 1, - sym__list_destructing, - STATE(2091), 1, - sym_by_ref, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, - sym__scope_resolution_qualifier, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 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(1554), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1548), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1527), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - 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, - [8610] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(593), 1, - sym_arguments, - STATE(697), 1, - sym_text_interpolation, - ACTIONS(1638), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -86567,7 +87165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1636), 32, + ACTIONS(1752), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86576,8 +87174,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86600,18 +87199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8671] = 7, + [8859] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(698), 1, - sym_text_interpolation, - STATE(751), 1, + STATE(591), 1, sym_arguments, - ACTIONS(1634), 12, + STATE(696), 1, + sym_text_interpolation, + ACTIONS(1893), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -86624,12 +87223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1632), 31, + ACTIONS(1891), 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, @@ -86656,23 +87256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8734] = 7, + [8923] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_EQ, - STATE(699), 1, + STATE(697), 1, sym_text_interpolation, - ACTIONS(1854), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1852), 12, + ACTIONS(1750), 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, @@ -86681,19 +87277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1850), 30, + ACTIONS(1748), 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_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, @@ -86712,7 +87311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8797] = 29, + [8983] = 30, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -86721,63 +87320,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(316), 1, anon_sym_POUND_LBRACK, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1787), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(1791), 1, + ACTIONS(1834), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1838), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1797), 1, + ACTIONS(1840), 1, anon_sym_QMARK, - ACTIONS(1799), 1, + ACTIONS(1842), 1, anon_sym_DOLLAR, - ACTIONS(1859), 1, + ACTIONS(1875), 1, + sym_grit_metavariable, + ACTIONS(1895), 1, anon_sym_RPAREN, - STATE(700), 1, + STATE(698), 1, sym_text_interpolation, STATE(974), 1, sym_attribute_list, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, - STATE(1188), 1, + STATE(1196), 1, sym_visibility_modifier, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1543), 1, + STATE(1611), 1, sym__types, - STATE(1677), 1, + STATE(1734), 1, sym__type, - STATE(2040), 1, - sym_reference_modifier, - STATE(2043), 1, + STATE(1977), 1, sym_variable_name, - STATE(2568), 1, + STATE(2110), 1, + sym_reference_modifier, + STATE(2696), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, ACTIONS(248), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1469), 3, + STATE(1564), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(2321), 3, + STATE(2277), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -86790,20 +87391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [8904] = 6, + [9093] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(599), 1, - sym_arguments, - STATE(701), 1, + STATE(699), 1, sym_text_interpolation, - ACTIONS(1634), 12, + ACTIONS(1734), 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, @@ -86812,7 +87412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1632), 32, + ACTIONS(1732), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86821,8 +87421,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86845,28 +87446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8965] = 8, + [9153] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(702), 1, + STATE(700), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 12, + ACTIONS(1660), 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, @@ -86875,14 +87467,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 26, + ACTIONS(1658), 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_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, @@ -86902,20 +87501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9030] = 6, + [9213] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(598), 1, - sym_arguments, - STATE(703), 1, + STATE(701), 1, sym_text_interpolation, - ACTIONS(1626), 12, + ACTIONS(1718), 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, @@ -86924,7 +87522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 32, + ACTIONS(1716), 33, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -86933,8 +87531,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -86957,28 +87556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9091] = 8, + [9273] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(704), 1, + STATE(702), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1761), 12, + ACTIONS(1738), 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, @@ -86987,14 +87577,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 26, + ACTIONS(1736), 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_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, @@ -87014,22 +87611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9156] = 7, + [9333] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, - STATE(705), 1, + STATE(703), 1, sym_text_interpolation, - ACTIONS(1642), 12, + ACTIONS(1746), 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, @@ -87038,16 +87632,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 31, + ACTIONS(1744), 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_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, @@ -87070,22 +87666,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9219] = 7, + [9393] = 30, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(306), 1, + aux_sym__list_destructing_token1, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(781), 1, + anon_sym_AMP, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, - STATE(706), 1, + ACTIONS(1897), 1, + sym_name, + ACTIONS(1899), 1, + sym_grit_metavariable, + STATE(704), 1, sym_text_interpolation, - STATE(724), 1, - sym_arguments, - ACTIONS(1638), 12, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1778), 1, + sym__dereferencable_expression, + STATE(2153), 1, + sym_by_ref, + STATE(2154), 1, + sym__list_destructing, + STATE(2595), 1, + sym__scope_resolution_qualifier, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1606), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1613), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(796), 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(1533), 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, + [9503] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(705), 1, + sym_text_interpolation, + ACTIONS(1710), 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, @@ -87094,16 +87767,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1636), 31, + ACTIONS(1708), 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_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, @@ -87126,22 +87801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9282] = 7, + [9563] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(593), 1, - sym_arguments, - STATE(707), 1, + STATE(706), 1, sym_text_interpolation, - ACTIONS(1638), 12, + ACTIONS(1668), 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, @@ -87150,16 +87822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1636), 31, + ACTIONS(1666), 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_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, @@ -87182,22 +87856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9345] = 7, + [9623] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, - anon_sym_LPAREN, - STATE(708), 1, + STATE(707), 1, sym_text_interpolation, - STATE(726), 1, - sym_arguments, - ACTIONS(1642), 12, + ACTIONS(1730), 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, @@ -87206,16 +87877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 31, + ACTIONS(1728), 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_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, @@ -87238,22 +87911,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9408] = 7, + [9683] = 30, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1834), 1, anon_sym_LPAREN, - STATE(599), 1, - sym_arguments, + ACTIONS(1838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1840), 1, + anon_sym_QMARK, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(1875), 1, + sym_grit_metavariable, + ACTIONS(1901), 1, + anon_sym_RPAREN, + STATE(708), 1, + sym_text_interpolation, + STATE(974), 1, + sym_attribute_list, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1196), 1, + sym_visibility_modifier, + STATE(1473), 1, + sym_qualified_name, + STATE(1611), 1, + sym__types, + STATE(1734), 1, + sym__type, + STATE(1977), 1, + sym_variable_name, + STATE(2110), 1, + sym_reference_modifier, + STATE(2696), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(248), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + STATE(2277), 3, + sym_property_promotion_parameter, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1804), 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, + [9793] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(709), 1, sym_text_interpolation, - ACTIONS(1634), 12, + ACTIONS(1706), 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, @@ -87262,16 +88012,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1632), 31, + ACTIONS(1704), 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, + [9853] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(710), 1, + sym_text_interpolation, + ACTIONS(1742), 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(1740), 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, @@ -87294,72 +88101,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9471] = 27, + [9913] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1903), 1, + sym_name, + ACTIONS(1909), 1, aux_sym_namespace_definition_token1, - ACTIONS(585), 1, + ACTIONS(1912), 1, + anon_sym_BSLASH, + ACTIONS(1915), 1, + anon_sym_RBRACE, + ACTIONS(1917), 1, + anon_sym_LPAREN, + ACTIONS(1920), 1, aux_sym_cast_type_token1, - ACTIONS(617), 1, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1932), 1, anon_sym_LT_LT_LT, - ACTIONS(621), 1, + ACTIONS(1935), 1, anon_sym_DOLLAR, - ACTIONS(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1807), 1, - sym_name, - ACTIONS(1861), 1, - anon_sym_RBRACE, - STATE(692), 1, - aux_sym_use_list_repeat1, - STATE(710), 1, - sym_text_interpolation, - STATE(1566), 1, + ACTIONS(1938), 1, + sym_grit_metavariable, + STATE(1592), 1, sym_class_constant_access_expression, - STATE(1722), 1, + STATE(1778), 1, sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, + STATE(2595), 1, sym__scope_resolution_qualifier, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, sym_namespace_name, - ACTIONS(613), 2, + ACTIONS(1926), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(615), 2, + ACTIONS(1929), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1554), 2, + STATE(711), 2, + sym_text_interpolation, + aux_sym_use_list_repeat1, + STATE(1606), 2, sym_qualified_name, sym__reserved_identifier, - STATE(2329), 2, + STATE(2389), 2, sym_use_instead_of_clause, sym_use_as_clause, - ACTIONS(310), 3, + ACTIONS(1906), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(760), 4, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(1733), 4, + STATE(1763), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1548), 10, + STATE(1613), 10, sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, @@ -87370,23 +88178,14 @@ static const uint16_t ts_small_parse_table[] = { sym__string, sym_dynamic_variable_name, sym_variable_name, - [9574] = 7, + [10017] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(711), 1, + STATE(712), 1, sym_text_interpolation, - ACTIONS(1620), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 13, + ACTIONS(1726), 13, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87400,70 +88199,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 25, + ACTIONS(1724), 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_RPAREN, - 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, - [9637] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1755), 1, anon_sym_LPAREN, - STATE(712), 1, - sym_text_interpolation, - STATE(744), 1, - sym_arguments, - ACTIONS(1616), 5, - anon_sym_LBRACE, + 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(1865), 12, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1863), 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, @@ -87483,22 +88233,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9702] = 7, + [10077] = 30, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(306), 1, + aux_sym__list_destructing_token1, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(781), 1, + anon_sym_AMP, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, + ACTIONS(1897), 1, + sym_name, + ACTIONS(1941), 1, + sym_grit_metavariable, STATE(713), 1, sym_text_interpolation, - STATE(730), 1, - sym_arguments, - ACTIONS(1630), 12, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1778), 1, + sym__dereferencable_expression, + STATE(2500), 1, + sym_by_ref, + STATE(2501), 1, + sym__list_destructing, + STATE(2595), 1, + sym__scope_resolution_qualifier, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1606), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1613), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1587), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1563), 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, + [10187] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(714), 1, + sym_text_interpolation, + ACTIONS(1714), 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, @@ -87507,16 +88334,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1628), 31, + ACTIONS(1712), 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_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, @@ -87539,96 +88368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9765] = 29, + [10247] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1791), 1, - anon_sym_LPAREN, - ACTIONS(1795), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1797), 1, - anon_sym_QMARK, - ACTIONS(1799), 1, - anon_sym_DOLLAR, ACTIONS(1867), 1, - anon_sym_RPAREN, - STATE(714), 1, - sym_text_interpolation, - STATE(974), 1, - sym_attribute_list, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1188), 1, - sym_visibility_modifier, - STATE(1425), 1, - sym_qualified_name, - STATE(1543), 1, - sym__types, - STATE(1677), 1, - sym__type, - STATE(2040), 1, - sym_reference_modifier, - STATE(2043), 1, - sym_variable_name, - STATE(2568), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(248), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2321), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1738), 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, - [9872] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1755), 1, anon_sym_LPAREN, STATE(715), 1, sym_text_interpolation, - STATE(732), 1, + STATE(786), 1, sym_arguments, - ACTIONS(1626), 12, + ACTIONS(1690), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87641,7 +88392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 31, + ACTIONS(1688), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87673,24 +88424,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9935] = 8, + [10310] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, STATE(716), 1, sym_text_interpolation, - STATE(753), 1, - sym_arguments, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1750), 12, + ACTIONS(1871), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87703,7 +88454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1748), 26, + ACTIONS(1869), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87730,24 +88481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10000] = 8, + [10375] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, + STATE(709), 1, + sym_arguments, STATE(717), 1, sym_text_interpolation, - STATE(744), 1, - sym_arguments, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1871), 12, + ACTIONS(1893), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87760,14 +88505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1869), 26, + ACTIONS(1891), 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, @@ -87787,96 +88537,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10065] = 29, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(306), 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(713), 1, - anon_sym_AMP, - ACTIONS(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1848), 1, - sym_name, - STATE(718), 1, - sym_text_interpolation, - STATE(1722), 1, - sym__dereferencable_expression, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(2382), 1, - sym__list_destructing, - STATE(2384), 1, - sym_by_ref, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, - sym__scope_resolution_qualifier, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 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(1554), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1548), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(760), 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(1472), 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, - [10172] = 7, + [10438] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, - STATE(598), 1, + STATE(702), 1, sym_arguments, - STATE(719), 1, + STATE(718), 1, sym_text_interpolation, - ACTIONS(1626), 12, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87889,19 +88567,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 31, + ACTIONS(1676), 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, @@ -87921,24 +88594,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10235] = 8, + [10503] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1867), 1, anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(720), 1, + STATE(719), 1, sym_text_interpolation, - ACTIONS(1616), 5, + STATE(755), 1, + sym_arguments, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 12, + ACTIONS(1945), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -87951,7 +88624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 26, + ACTIONS(1943), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -87978,25 +88651,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10300] = 6, + [10568] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(721), 1, + ACTIONS(1867), 1, + anon_sym_LPAREN, + STATE(720), 1, sym_text_interpolation, - ACTIONS(1616), 5, + STATE(755), 1, + sym_arguments, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1614), 13, + ACTIONS(1945), 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, @@ -88005,15 +88681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1622), 27, + ACTIONS(1943), 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, @@ -88033,18 +88708,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10361] = 7, + [10633] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, - STATE(594), 1, + STATE(699), 1, sym_arguments, - STATE(722), 1, + STATE(721), 1, sym_text_interpolation, - ACTIONS(1630), 12, + ACTIONS(1889), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88057,7 +88732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1628), 31, + ACTIONS(1887), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88089,72 +88764,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10424] = 29, + [10696] = 29, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1787), 1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(781), 1, anon_sym_AMP, - ACTIONS(1791), 1, - anon_sym_LPAREN, - ACTIONS(1795), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1797), 1, + ACTIONS(899), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1824), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + sym_name, + ACTIONS(1947), 1, + sym_grit_metavariable, + STATE(722), 1, + sym_text_interpolation, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1778), 1, + sym__dereferencable_expression, + STATE(2349), 1, + sym__array_destructing, + STATE(2350), 1, + sym_by_ref, + STATE(2595), 1, + sym__scope_resolution_qualifier, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1606), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1613), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1625), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1540), 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, + [10803] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, + STATE(723), 1, + sym_text_interpolation, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1871), 12, + anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(1873), 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(1869), 26, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RPAREN, - STATE(723), 1, + 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, + [10868] = 29, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1834), 1, + anon_sym_LPAREN, + ACTIONS(1838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1840), 1, + anon_sym_QMARK, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(1875), 1, + sym_grit_metavariable, + STATE(724), 1, sym_text_interpolation, STATE(974), 1, sym_attribute_list, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, - STATE(1188), 1, + STATE(1196), 1, sym_visibility_modifier, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1543), 1, + STATE(1611), 1, sym__types, - STATE(1677), 1, + STATE(1734), 1, sym__type, - STATE(2040), 1, - sym_reference_modifier, - STATE(2043), 1, + STATE(1977), 1, sym_variable_name, - STATE(2568), 1, + STATE(2110), 1, + sym_reference_modifier, + STATE(2696), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, ACTIONS(248), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1469), 3, + STATE(1564), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - STATE(2321), 3, + STATE(2277), 3, sym_property_promotion_parameter, sym_simple_parameter, sym_variadic_parameter, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -88167,14 +88977,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [10531] = 5, + [10975] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(724), 1, + ACTIONS(1816), 1, + anon_sym_LPAREN, + STATE(702), 1, + sym_arguments, + STATE(725), 1, sym_text_interpolation, - ACTIONS(1670), 12, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88187,20 +89007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1668), 32, + ACTIONS(1676), 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, @@ -88220,14 +89034,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10589] = 5, + [11040] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(725), 1, + ACTIONS(1867), 1, + anon_sym_LPAREN, + STATE(726), 1, sym_text_interpolation, - ACTIONS(1608), 12, + STATE(755), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1680), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88240,20 +89064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1606), 32, + ACTIONS(1686), 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, @@ -88273,14 +89091,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10647] = 5, + [11105] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(726), 1, + ACTIONS(1867), 1, + anon_sym_LPAREN, + STATE(727), 1, sym_text_interpolation, - ACTIONS(1666), 12, + STATE(762), 1, + sym_arguments, + ACTIONS(1672), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88293,14 +89115,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1664), 32, + ACTIONS(1670), 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, @@ -88326,14 +89147,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10705] = 5, + [11168] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(727), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, + STATE(728), 1, sym_text_interpolation, - ACTIONS(1682), 12, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88346,20 +89177,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 32, + ACTIONS(1676), 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, @@ -88379,67 +89204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10763] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(728), 1, - sym_text_interpolation, - ACTIONS(1877), 19, - 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, - sym_grit_metavariable, - ACTIONS(1875), 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, - [10821] = 5, + [11233] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + STATE(597), 1, + sym_arguments, STATE(729), 1, sym_text_interpolation, - ACTIONS(1881), 12, + ACTIONS(1690), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88452,7 +89226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1879), 32, + ACTIONS(1688), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88485,14 +89259,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10879] = 5, + [11294] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, STATE(730), 1, sym_text_interpolation, - ACTIONS(1674), 12, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88505,20 +89289,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1672), 32, + ACTIONS(1676), 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, @@ -88538,14 +89316,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10937] = 5, + [11359] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + STATE(600), 1, + sym_arguments, STATE(731), 1, sym_text_interpolation, - ACTIONS(1885), 12, + ACTIONS(1672), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88558,7 +89338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1883), 32, + ACTIONS(1670), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88591,14 +89371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10995] = 5, + [11420] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1956), 1, + anon_sym_EQ, STATE(732), 1, sym_text_interpolation, - ACTIONS(1690), 12, + ACTIONS(1953), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1951), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88611,9 +89396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 32, + ACTIONS(1949), 30, anon_sym_SEMI, - anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -88625,7 +89409,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, @@ -88644,14 +89427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11053] = 5, + [11483] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1867), 1, + anon_sym_LPAREN, STATE(733), 1, sym_text_interpolation, - ACTIONS(1600), 12, + STATE(778), 1, + sym_arguments, + ACTIONS(1702), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88664,14 +89451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 32, + ACTIONS(1700), 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, @@ -88697,14 +89483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11111] = 5, + [11546] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + STATE(595), 1, + sym_arguments, STATE(734), 1, sym_text_interpolation, - ACTIONS(1889), 12, + ACTIONS(1702), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88717,7 +89505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1887), 32, + ACTIONS(1700), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88750,14 +89538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11169] = 5, + [11607] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + STATE(593), 1, + sym_arguments, STATE(735), 1, sym_text_interpolation, - ACTIONS(1662), 12, + ACTIONS(1698), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88770,7 +89560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 32, + ACTIONS(1696), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -88803,14 +89593,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11227] = 5, + [11668] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(597), 1, + sym_arguments, STATE(736), 1, sym_text_interpolation, - ACTIONS(1893), 12, + ACTIONS(1690), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88823,14 +89617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1891), 32, + ACTIONS(1688), 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, @@ -88856,14 +89649,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11285] = 5, + [11731] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1867), 1, + anon_sym_LPAREN, STATE(737), 1, sym_text_interpolation, - ACTIONS(1897), 12, + STATE(771), 1, + sym_arguments, + ACTIONS(1698), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88876,14 +89673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 32, + ACTIONS(1696), 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, @@ -88909,14 +89705,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11343] = 5, + [11794] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1867), 1, + anon_sym_LPAREN, STATE(738), 1, sym_text_interpolation, - ACTIONS(1901), 12, + STATE(755), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1960), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88929,20 +89735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1899), 32, + ACTIONS(1958), 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, @@ -88962,14 +89762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11401] = 5, + [11859] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + STATE(591), 1, + sym_arguments, STATE(739), 1, sym_text_interpolation, - ACTIONS(1905), 12, + ACTIONS(1694), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -88982,7 +89784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1903), 32, + ACTIONS(1692), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89015,16 +89817,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11459] = 6, + [11920] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1907), 1, - anon_sym_COLON_COLON, + ACTIONS(1867), 1, + anon_sym_LPAREN, STATE(740), 1, sym_text_interpolation, - ACTIONS(1646), 12, + STATE(755), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1960), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89037,19 +89847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1644), 31, + ACTIONS(1958), 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_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -89069,14 +89874,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11519] = 5, + [11985] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1867), 1, + anon_sym_LPAREN, STATE(741), 1, sym_text_interpolation, - ACTIONS(1911), 12, + STATE(772), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1865), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89089,20 +89904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1909), 32, + ACTIONS(1863), 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, @@ -89122,14 +89931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11577] = 5, + [12050] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(600), 1, + sym_arguments, STATE(742), 1, sym_text_interpolation, - ACTIONS(1915), 12, + ACTIONS(1672), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89142,14 +89955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1913), 32, + ACTIONS(1670), 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, @@ -89175,14 +89987,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11635] = 5, + [12113] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(595), 1, + sym_arguments, STATE(743), 1, sym_text_interpolation, - ACTIONS(1678), 12, + ACTIONS(1702), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89195,14 +90011,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1676), 32, + ACTIONS(1700), 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, @@ -89228,14 +90043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11693] = 5, + [12176] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(593), 1, + sym_arguments, STATE(744), 1, sym_text_interpolation, - ACTIONS(1654), 12, + ACTIONS(1698), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89248,14 +90067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 32, + ACTIONS(1696), 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, @@ -89281,14 +90099,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11751] = 5, + [12239] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1962), 1, + anon_sym_LPAREN, STATE(745), 1, sym_text_interpolation, - ACTIONS(1919), 12, + STATE(986), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1865), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89301,20 +90129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1917), 32, + ACTIONS(1863), 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, @@ -89334,14 +90156,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11809] = 5, + [12304] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1867), 1, + anon_sym_LPAREN, STATE(746), 1, sym_text_interpolation, - ACTIONS(1923), 12, + STATE(772), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1865), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89354,20 +90186,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1921), 32, + ACTIONS(1863), 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, @@ -89387,18 +90213,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11867] = 5, + [12369] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(747), 1, sym_text_interpolation, - ACTIONS(1927), 12, + ACTIONS(1684), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 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, @@ -89407,20 +90243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1925), 32, + ACTIONS(1676), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_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, @@ -89440,14 +90269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11925] = 5, + [12432] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(591), 1, + sym_arguments, STATE(748), 1, sym_text_interpolation, - ACTIONS(1931), 12, + ACTIONS(1694), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89460,14 +90293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1929), 32, + ACTIONS(1692), 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, @@ -89493,90 +90325,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11983] = 28, + [12495] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1791), 1, + ACTIONS(1867), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1797), 1, - anon_sym_QMARK, - ACTIONS(1799), 1, - anon_sym_DOLLAR, STATE(749), 1, sym_text_interpolation, - STATE(974), 1, - sym_attribute_list, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1188), 1, - sym_visibility_modifier, - STATE(1425), 1, - sym_qualified_name, - STATE(1543), 1, - sym__types, - STATE(1677), 1, - sym__type, - STATE(2040), 1, - sym_reference_modifier, - STATE(2043), 1, - sym_variable_name, - STATE(2568), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(248), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - STATE(2321), 3, - sym_property_promotion_parameter, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1738), 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, - [12087] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(750), 1, - sym_text_interpolation, - ACTIONS(1935), 12, + STATE(752), 1, + sym_arguments, + ACTIONS(1694), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89589,14 +90349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1933), 32, + ACTIONS(1692), 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, @@ -89622,18 +90381,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12145] = 5, + [12558] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(751), 1, + STATE(750), 1, sym_text_interpolation, - ACTIONS(1694), 12, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1680), 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, @@ -89642,20 +90408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1692), 32, + ACTIONS(1686), 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_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_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -89675,14 +90436,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12203] = 5, + [12619] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(752), 1, + ACTIONS(1867), 1, + anon_sym_LPAREN, + STATE(751), 1, sym_text_interpolation, - ACTIONS(1658), 12, + STATE(755), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1680), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89695,20 +90466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 32, + ACTIONS(1686), 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, @@ -89728,21 +90493,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12261] = 6, + [12684] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(753), 1, + STATE(752), 1, sym_text_interpolation, - ACTIONS(1652), 6, + ACTIONS(1706), 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(1704), 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(1939), 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, + [12742] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1964), 1, + anon_sym_COLON_COLON, + STATE(753), 1, + sym_text_interpolation, + ACTIONS(1718), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89755,14 +90568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1937), 26, + ACTIONS(1716), 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, @@ -89782,14 +90600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12321] = 5, + [12802] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(754), 1, sym_text_interpolation, - ACTIONS(1594), 12, + ACTIONS(1968), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89802,7 +90620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 32, + ACTIONS(1966), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89835,14 +90653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12379] = 5, + [12860] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(755), 1, sym_text_interpolation, - ACTIONS(1943), 12, + ACTIONS(1738), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89855,7 +90673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1941), 32, + ACTIONS(1736), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89888,14 +90706,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12437] = 5, + [12918] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, STATE(756), 1, sym_text_interpolation, - ACTIONS(1947), 12, + ACTIONS(1972), 19, + 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, + sym_grit_metavariable, + ACTIONS(1970), 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, + [12976] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(757), 1, + sym_text_interpolation, + ACTIONS(1976), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89908,7 +90779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1945), 32, + ACTIONS(1974), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89941,14 +90812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12495] = 5, + [13034] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(757), 1, + STATE(758), 1, sym_text_interpolation, - ACTIONS(1951), 12, + ACTIONS(1980), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -89961,7 +90832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 32, + ACTIONS(1978), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -89994,14 +90865,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12553] = 5, + [13092] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(758), 1, + STATE(759), 1, sym_text_interpolation, - ACTIONS(1955), 12, + ACTIONS(1984), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90014,7 +90885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1953), 32, + ACTIONS(1982), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90047,90 +90918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12611] = 28, - 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(713), 1, - anon_sym_AMP, - ACTIONS(869), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1848), 1, - sym_name, - STATE(759), 1, - sym_text_interpolation, - STATE(1722), 1, - sym__dereferencable_expression, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(2291), 1, - sym_by_ref, - STATE(2295), 1, - sym__array_destructing, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, - sym__scope_resolution_qualifier, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 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(1554), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1548), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1573), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1485), 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, - [12715] = 5, + [13150] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(760), 1, sym_text_interpolation, - ACTIONS(1959), 12, + ACTIONS(1988), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90143,7 +90938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1957), 32, + ACTIONS(1986), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90176,14 +90971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12773] = 5, + [13208] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(761), 1, sym_text_interpolation, - ACTIONS(1650), 12, + ACTIONS(1992), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90196,7 +90991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1648), 32, + ACTIONS(1990), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90229,14 +91024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12831] = 5, + [13266] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(762), 1, sym_text_interpolation, - ACTIONS(1963), 12, + ACTIONS(1742), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90249,7 +91044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1961), 32, + ACTIONS(1740), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90282,14 +91077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12889] = 5, + [13324] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(763), 1, sym_text_interpolation, - ACTIONS(1686), 12, + ACTIONS(1996), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90302,7 +91097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1684), 32, + ACTIONS(1994), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90335,14 +91130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12947] = 5, + [13382] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(764), 1, sym_text_interpolation, - ACTIONS(1604), 12, + ACTIONS(1951), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90355,7 +91150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 32, + ACTIONS(1949), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90388,14 +91183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13005] = 5, + [13440] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(765), 1, sym_text_interpolation, - ACTIONS(1852), 12, + ACTIONS(1746), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90408,7 +91203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1850), 32, + ACTIONS(1744), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90441,14 +91236,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13063] = 5, + [13498] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(766), 1, sym_text_interpolation, - ACTIONS(1576), 12, + ACTIONS(1632), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90461,7 +91256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1578), 32, + ACTIONS(1634), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90494,14 +91289,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13121] = 5, + [13556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(767), 1, sym_text_interpolation, - ACTIONS(1967), 12, + ACTIONS(2000), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90514,7 +91309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1965), 32, + ACTIONS(1998), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90547,28 +91342,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13179] = 8, + [13614] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, - anon_sym_LPAREN, STATE(768), 1, sym_text_interpolation, - STATE(805), 1, - sym_arguments, - ACTIONS(1616), 5, + ACTIONS(2004), 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(2002), 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(1614), 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, + [13672] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(769), 1, + sym_text_interpolation, + ACTIONS(1654), 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, @@ -90577,13 +91415,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1622), 24, - sym__automatic_semicolon, + ACTIONS(1652), 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_DASH_DASH, - anon_sym_PLUS_PLUS, + 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, @@ -90602,19 +91448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13242] = 7, + [13730] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1854), 1, - anon_sym_RPAREN, - ACTIONS(1857), 1, - anon_sym_EQ, - STATE(769), 1, + STATE(770), 1, sym_text_interpolation, - ACTIONS(1852), 11, + ACTIONS(1726), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -90625,13 +91468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1850), 30, + ACTIONS(1724), 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, @@ -90656,18 +91501,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13303] = 5, + [13788] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(770), 1, + STATE(771), 1, sym_text_interpolation, - ACTIONS(1043), 11, + ACTIONS(1714), 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, @@ -90675,20 +91521,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1041), 32, + ACTIONS(1712), 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, @@ -90708,20 +91554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13360] = 6, + [13846] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(771), 1, + STATE(772), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1736), 6, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1871), 12, + ACTIONS(2008), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90734,7 +91581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1869), 26, + ACTIONS(2006), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -90761,29 +91608,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13419] = 10, + [13906] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - anon_sym_BSLASH, - STATE(615), 1, - sym_arguments, - STATE(772), 1, + STATE(773), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 11, + ACTIONS(2012), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -90794,12 +91628,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 23, - sym__automatic_semicolon, + ACTIONS(2010), 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, anon_sym_STAR_STAR, @@ -90818,20 +91661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13486] = 6, + [13964] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(773), 1, + STATE(774), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1614), 12, + ACTIONS(2016), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -90844,14 +91681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1622), 26, + ACTIONS(2014), 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, @@ -90871,22 +91714,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13545] = 7, + [14022] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, - anon_sym_LPAREN, - STATE(774), 1, + STATE(775), 1, sym_text_interpolation, - STATE(800), 1, - sym_arguments, - ACTIONS(1630), 12, + ACTIONS(2020), 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, @@ -90895,18 +91734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1628), 29, - sym__automatic_semicolon, + ACTIONS(2018), 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_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, @@ -90925,18 +91767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13606] = 5, + [14080] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(775), 1, + STATE(776), 1, sym_text_interpolation, - ACTIONS(1039), 11, + ACTIONS(2024), 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, @@ -90944,20 +91787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1037), 32, + ACTIONS(2022), 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, @@ -90977,22 +91820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13663] = 7, + [14138] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, - anon_sym_LPAREN, - STATE(776), 1, + STATE(777), 1, sym_text_interpolation, - STATE(797), 1, - sym_arguments, - ACTIONS(1626), 12, + ACTIONS(2028), 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, @@ -91001,18 +91840,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 29, - sym__automatic_semicolon, + ACTIONS(2026), 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_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, @@ -91031,22 +91873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13724] = 7, + [14196] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, - anon_sym_LPAREN, - STATE(777), 1, + STATE(778), 1, sym_text_interpolation, - STATE(789), 1, - sym_arguments, - ACTIONS(1642), 12, + ACTIONS(1722), 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, @@ -91055,18 +91893,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 29, - sym__automatic_semicolon, + ACTIONS(1720), 32, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_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, @@ -91085,22 +91926,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13785] = 7, + [14254] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, - anon_sym_LPAREN, - STATE(778), 1, + STATE(779), 1, sym_text_interpolation, - STATE(796), 1, - sym_arguments, - ACTIONS(1634), 12, + ACTIONS(2032), 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, @@ -91109,18 +91946,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1632), 29, - sym__automatic_semicolon, + ACTIONS(2030), 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_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, @@ -91139,29 +91979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13846] = 10, + [14312] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1969), 1, - anon_sym_LPAREN, - STATE(779), 1, + STATE(780), 1, sym_text_interpolation, - STATE(805), 1, - sym_arguments, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 11, + ACTIONS(2036), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -91172,12 +91999,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 23, - sym__automatic_semicolon, + ACTIONS(2034), 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, anon_sym_STAR_STAR, @@ -91196,20 +92032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13913] = 6, + [14370] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(780), 1, + STATE(781), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1865), 12, + ACTIONS(2040), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -91222,14 +92052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1863), 26, + ACTIONS(2038), 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, @@ -91249,31 +92085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13972] = 9, + [14428] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, - anon_sym_LPAREN, - STATE(781), 1, + STATE(782), 1, sym_text_interpolation, - STATE(805), 1, - sym_arguments, - ACTIONS(1708), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 12, + ACTIONS(2044), 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, @@ -91282,11 +92105,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 22, - sym__automatic_semicolon, + ACTIONS(2042), 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, anon_sym_STAR_STAR, @@ -91305,20 +92138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14037] = 6, + [14486] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(782), 1, + STATE(783), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1761), 12, + ACTIONS(2048), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -91331,14 +92158,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 26, + ACTIONS(2046), 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, @@ -91358,29 +92191,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14096] = 10, + [14544] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - anon_sym_BSLASH, - STATE(589), 1, - sym_arguments, - STATE(783), 1, + STATE(784), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1761), 11, + ACTIONS(2052), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -91391,12 +92211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 23, - sym__automatic_semicolon, + ACTIONS(2050), 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, anon_sym_STAR_STAR, @@ -91415,29 +92244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14163] = 10, + [14602] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1971), 1, - anon_sym_LPAREN, - STATE(784), 1, + STATE(785), 1, sym_text_interpolation, - STATE(881), 1, - sym_arguments, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1750), 11, + ACTIONS(2056), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -91448,12 +92264,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1748), 23, - sym__automatic_semicolon, + ACTIONS(2054), 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, anon_sym_STAR_STAR, @@ -91472,72 +92297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14230] = 5, + [14660] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(785), 1, - sym_text_interpolation, - ACTIONS(1975), 18, - 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, - sym_grit_metavariable, - ACTIONS(1973), 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, - [14287] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(786), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 12, + ACTIONS(1730), 12, anon_sym_AMP, anon_sym_COLON, anon_sym_QMARK, @@ -91550,14 +92317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 26, + ACTIONS(1728), 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, @@ -91577,22 +92350,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14346] = 7, + [14718] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, - anon_sym_LPAREN, STATE(787), 1, sym_text_interpolation, - STATE(792), 1, - sym_arguments, - ACTIONS(1638), 12, + ACTIONS(2060), 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, @@ -91601,18 +92370,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1636), 29, - sym__automatic_semicolon, + ACTIONS(2058), 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_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, @@ -91631,18 +92403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14407] = 5, + [14776] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(788), 1, sym_text_interpolation, - ACTIONS(1600), 12, + ACTIONS(1710), 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, @@ -91651,19 +92423,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 30, - sym__automatic_semicolon, + ACTIONS(1708), 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_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, @@ -91682,18 +92456,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14463] = 5, + [14834] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(789), 1, sym_text_interpolation, - ACTIONS(1666), 12, + ACTIONS(1660), 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, @@ -91702,19 +92476,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1664), 30, - sym__automatic_semicolon, + ACTIONS(1658), 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_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, @@ -91733,31 +92509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14519] = 11, + [14892] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1977), 1, - anon_sym_COLON, - STATE(589), 1, - sym_arguments, STATE(790), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 11, + ACTIONS(2064), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -91768,10 +92529,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 21, + ACTIONS(2062), 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, anon_sym_STAR_STAR, @@ -91790,18 +92562,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14587] = 5, + [14950] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(791), 1, sym_text_interpolation, - ACTIONS(1646), 12, + ACTIONS(2068), 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, @@ -91810,19 +92582,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1644), 30, - sym__automatic_semicolon, + ACTIONS(2066), 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_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, @@ -91841,18 +92615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14643] = 5, + [15008] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(792), 1, sym_text_interpolation, - ACTIONS(1670), 12, + ACTIONS(1734), 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, @@ -91861,19 +92635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1668), 30, - sym__automatic_semicolon, + ACTIONS(1732), 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_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, @@ -91892,18 +92668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14699] = 5, + [15066] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(793), 1, sym_text_interpolation, - ACTIONS(1678), 12, + ACTIONS(1664), 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, @@ -91912,19 +92688,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1676), 30, - sym__automatic_semicolon, + ACTIONS(1662), 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_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, @@ -91943,18 +92721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14755] = 5, + [15124] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(794), 1, sym_text_interpolation, - ACTIONS(1604), 12, + ACTIONS(1668), 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, @@ -91963,19 +92741,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 30, - sym__automatic_semicolon, + ACTIONS(1666), 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_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, @@ -91994,18 +92774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14811] = 5, + [15182] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(795), 1, sym_text_interpolation, - ACTIONS(1608), 12, + ACTIONS(1750), 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, @@ -92014,19 +92794,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1606), 30, - sym__automatic_semicolon, + ACTIONS(1748), 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_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, @@ -92045,18 +92827,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14867] = 5, + [15240] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(796), 1, sym_text_interpolation, - ACTIONS(1694), 12, + ACTIONS(2072), 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, @@ -92065,19 +92847,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1692), 30, - sym__automatic_semicolon, + ACTIONS(2070), 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_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, @@ -92096,18 +92880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14923] = 5, + [15298] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(797), 1, sym_text_interpolation, - ACTIONS(1690), 12, + ACTIONS(1754), 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, @@ -92116,19 +92900,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 30, - sym__automatic_semicolon, + ACTIONS(1752), 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_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, @@ -92147,33 +92933,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14979] = 11, + [15356] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(2074), 1, anon_sym_LPAREN, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1979), 1, - anon_sym_COLON, - STATE(615), 1, - sym_arguments, STATE(798), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + STATE(843), 1, + sym_arguments, + ACTIONS(1764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 11, + ACTIONS(1678), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -92182,10 +92966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 21, + ACTIONS(1676), 22, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92204,65 +92989,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15047] = 5, + [15421] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, STATE(799), 1, sym_text_interpolation, - ACTIONS(1682), 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(1680), 30, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(2078), 18, + anon_sym_BSLASH, anon_sym_LPAREN, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_BANG, + anon_sym_AT, 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, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [15103] = 5, + 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, + sym_grit_metavariable, + ACTIONS(2076), 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, + [15478] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2074), 1, + anon_sym_LPAREN, STATE(800), 1, sym_text_interpolation, - ACTIONS(1674), 12, + STATE(843), 1, + sym_arguments, + ACTIONS(1764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92275,19 +93074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1672), 30, + ACTIONS(1676), 22, 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, @@ -92306,18 +93097,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15159] = 5, + [15543] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(801), 1, sym_text_interpolation, - ACTIONS(1594), 12, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1960), 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, @@ -92326,19 +93123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 30, - sym__automatic_semicolon, + ACTIONS(1958), 26, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_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, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, @@ -92357,14 +93150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15215] = 5, + [15602] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2074), 1, + anon_sym_LPAREN, STATE(802), 1, sym_text_interpolation, - ACTIONS(1658), 12, + STATE(828), 1, + sym_arguments, + ACTIONS(1672), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92377,13 +93174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 30, + ACTIONS(1670), 29, 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, @@ -92408,18 +93204,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15271] = 5, + [15663] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(2074), 1, + anon_sym_LPAREN, STATE(803), 1, sym_text_interpolation, - ACTIONS(1662), 12, + STATE(843), 1, + sym_arguments, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -92428,19 +93237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 30, + ACTIONS(1676), 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, @@ -92459,31 +93261,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15327] = 11, + [15730] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1981), 1, - anon_sym_COLON, - STATE(615), 1, - sym_arguments, STATE(804), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 11, + ACTIONS(1678), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -92494,10 +93287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 21, - sym__automatic_semicolon, + ACTIONS(1676), 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, @@ -92516,14 +93314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15395] = 5, + [15789] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2074), 1, + anon_sym_LPAREN, STATE(805), 1, sym_text_interpolation, - ACTIONS(1654), 12, + STATE(854), 1, + sym_arguments, + ACTIONS(1694), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92536,13 +93338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 30, + ACTIONS(1692), 29, 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, @@ -92567,14 +93368,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15451] = 5, + [15850] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(806), 1, sym_text_interpolation, - ACTIONS(1650), 12, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1945), 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(1943), 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, + [15909] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2074), 1, + anon_sym_LPAREN, + STATE(807), 1, + sym_text_interpolation, + STATE(848), 1, + sym_arguments, + ACTIONS(1690), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92587,13 +93445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1648), 30, + ACTIONS(1688), 29, 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, @@ -92618,14 +93475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15507] = 5, + [15970] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(807), 1, + ACTIONS(2074), 1, + anon_sym_LPAREN, + STATE(808), 1, sym_text_interpolation, - ACTIONS(1686), 12, + STATE(835), 1, + sym_arguments, + ACTIONS(1698), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92638,13 +93499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1684), 30, + ACTIONS(1696), 29, 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, @@ -92669,86 +93529,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15563] = 25, + [16031] = 5, 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1848), 1, - sym_name, - STATE(808), 1, + STATE(809), 1, sym_text_interpolation, - STATE(1722), 1, - sym__dereferencable_expression, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, - sym__scope_resolution_qualifier, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 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(1554), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1548), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1538), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1516), 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, - [15658] = 6, + ACTIONS(1084), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + aux_sym_else_clause_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1082), 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, + [16088] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(598), 1, - sym_arguments, - STATE(809), 1, + ACTIONS(1953), 1, + anon_sym_RPAREN, + ACTIONS(1956), 1, + anon_sym_EQ, + STATE(810), 1, sym_text_interpolation, - ACTIONS(1626), 11, + ACTIONS(1951), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92760,11 +93604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 29, - sym__automatic_semicolon, + ACTIONS(1949), 30, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, anon_sym_PLUS, @@ -92772,6 +93616,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, @@ -92790,88 +93635,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15715] = 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1848), 1, - sym_name, - STATE(810), 1, - sym_text_interpolation, - STATE(1722), 1, - sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, - sym__scope_resolution_qualifier, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 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(771), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1554), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1548), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1733), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - 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, - [15810] = 7, + [16149] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(2080), 1, anon_sym_LPAREN, STATE(811), 1, sym_text_interpolation, - STATE(873), 1, + STATE(926), 1, sym_arguments, - ACTIONS(1630), 11, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1865), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92883,17 +93668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1628), 28, + ACTIONS(1863), 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, @@ -92912,18 +93692,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15869] = 7, + [16216] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(599), 1, + sym_arguments, STATE(812), 1, sym_text_interpolation, - STATE(877), 1, - sym_arguments, - ACTIONS(1634), 11, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1871), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -92935,17 +93725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1632), 28, + ACTIONS(1869), 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, @@ -92964,95 +93749,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15928] = 25, + [16283] = 6, 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1771), 1, - anon_sym_DOLLAR, - ACTIONS(1983), 1, - sym_name, STATE(813), 1, sym_text_interpolation, - STATE(1713), 1, - sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2471), 1, - sym__scope_resolution_qualifier, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 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(905), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1575), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1560), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1733), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(822), 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, - [16023] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1969), 1, - anon_sym_LPAREN, - STATE(805), 1, - sym_arguments, - STATE(814), 1, - sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 11, + ACTIONS(1871), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -93063,12 +93775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 23, - sym__automatic_semicolon, + ACTIONS(1869), 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, @@ -93087,27 +93802,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16084] = 8, + [16342] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(2074), 1, anon_sym_LPAREN, - STATE(805), 1, - sym_arguments, - STATE(815), 1, + STATE(814), 1, sym_text_interpolation, - ACTIONS(1616), 5, + STATE(843), 1, + sym_arguments, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 11, + ACTIONS(1680), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -93116,12 +93832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 23, + ACTIONS(1686), 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, @@ -93140,21 +93857,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16145] = 7, + [16405] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(2074), 1, anon_sym_LPAREN, - STATE(816), 1, + STATE(815), 1, sym_text_interpolation, - STATE(889), 1, + STATE(826), 1, sym_arguments, - ACTIONS(1638), 11, + ACTIONS(1702), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -93163,14 +93881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1636), 28, + ACTIONS(1700), 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, @@ -93192,18 +93911,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16204] = 7, + [16466] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(1762), 1, anon_sym_LPAREN, - STATE(793), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(649), 1, sym_arguments, - STATE(817), 1, + STATE(816), 1, sym_text_interpolation, - ACTIONS(1775), 11, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93215,17 +93944,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1773), 28, + ACTIONS(1676), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, 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, + [16533] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2074), 1, + anon_sym_LPAREN, + STATE(817), 1, + sym_text_interpolation, + STATE(843), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1680), 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(1686), 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, @@ -93244,165 +94023,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16263] = 25, + [16596] = 6, 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1985), 1, - sym_name, - ACTIONS(1987), 1, - anon_sym_LPAREN, STATE(818), 1, sym_text_interpolation, - STATE(1664), 1, - sym__dereferencable_expression, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - STATE(2614), 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(1545), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1551), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(834), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(768), 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, - [16358] = 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1785), 1, - anon_sym_DOLLAR, - ACTIONS(1989), 1, - sym_name, - ACTIONS(1991), 1, - anon_sym_LPAREN, - STATE(819), 1, - sym_text_interpolation, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(1743), 1, - sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - STATE(2637), 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(1536), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1535), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(773), 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, - [16453] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1704), 1, - anon_sym_LPAREN, - STATE(615), 1, - sym_arguments, - STATE(820), 1, - sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 11, + ACTIONS(1680), 12, anon_sym_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE, anon_sym_DASH, @@ -93413,12 +94049,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 23, - sym__automatic_semicolon, + ACTIONS(1686), 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, + [16655] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(819), 1, + sym_text_interpolation, + ACTIONS(1088), 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(1086), 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, @@ -93437,69 +94128,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16514] = 25, + [16712] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(585), 1, + ACTIONS(607), 1, aux_sym_cast_type_token1, - ACTIONS(617), 1, + ACTIONS(639), 1, anon_sym_LT_LT_LT, - ACTIONS(1572), 1, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_DOLLAR, - ACTIONS(1989), 1, - sym_name, - ACTIONS(1991), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, - STATE(821), 1, + ACTIONS(1897), 1, + sym_name, + ACTIONS(2082), 1, + sym_grit_metavariable, + STATE(820), 1, sym_text_interpolation, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(1743), 1, + STATE(1778), 1, sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2496), 1, + STATE(2595), 1, + sym__scope_resolution_qualifier, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, sym_namespace_name, - STATE(2637), 1, - sym__scope_resolution_qualifier, - ACTIONS(613), 2, + ACTIONS(635), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(615), 2, + ACTIONS(637), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1536), 2, + STATE(806), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1606), 2, sym_qualified_name, sym__reserved_identifier, ACTIONS(310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1535), 3, + STATE(1613), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(760), 4, + STATE(1763), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(780), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(712), 7, + STATE(1525), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -93507,27 +94200,18 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [16609] = 8, + [16810] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_LPAREN, - STATE(822), 1, + STATE(821), 1, sym_text_interpolation, - STATE(869), 1, - sym_arguments, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1871), 11, + ACTIONS(1668), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -93536,12 +94220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1869), 23, + ACTIONS(1666), 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, @@ -93560,21 +94251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16670] = 7, + [16866] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(594), 1, - sym_arguments, - STATE(823), 1, + STATE(822), 1, sym_text_interpolation, - ACTIONS(1630), 11, + ACTIONS(1718), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -93583,14 +94271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1628), 28, + ACTIONS(1716), 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, @@ -93612,129 +94302,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16729] = 8, + [16922] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, - STATE(615), 1, - sym_arguments, - STATE(824), 1, + ACTIONS(1897), 1, + sym_name, + ACTIONS(2084), 1, + sym_grit_metavariable, + STATE(823), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1610), 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, - [16790] = 7, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1778), 1, + sym__dereferencable_expression, + STATE(2595), 1, + sym__scope_resolution_qualifier, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1606), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1613), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1576), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1514), 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, + [17020] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, - STATE(825), 1, + ACTIONS(1897), 1, + sym_name, + ACTIONS(2086), 1, + sym_grit_metavariable, + STATE(824), 1, sym_text_interpolation, - STATE(893), 1, - sym_arguments, - ACTIONS(1642), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1640), 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, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16849] = 8, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1778), 1, + sym__dereferencable_expression, + STATE(2595), 1, + sym__scope_resolution_qualifier, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1606), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1613), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1586), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1560), 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, + [17118] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1993), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(826), 1, - sym_text_interpolation, - STATE(1070), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(2088), 1, + anon_sym_COLON, + STATE(599), 1, sym_arguments, - ACTIONS(1616), 5, + STATE(825), 1, + sym_text_interpolation, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1750), 11, + ACTIONS(1678), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -93746,11 +94481,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1748), 23, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1676), 21, anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_PLUS, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -93770,21 +94503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16910] = 7, + [17186] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, - anon_sym_LPAREN, - STATE(800), 1, - sym_arguments, - STATE(827), 1, + STATE(826), 1, sym_text_interpolation, - ACTIONS(1779), 11, + ACTIONS(1722), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -93793,14 +94523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1777), 28, + ACTIONS(1720), 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, @@ -93822,27 +94554,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16969] = 8, + [17242] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2090), 1, + sym_name, + ACTIONS(2092), 1, + sym_grit_metavariable, + STATE(827), 1, + sym_text_interpolation, + STATE(1800), 1, + sym__dereferencable_expression, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(2705), 1, + sym__scope_resolution_qualifier, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(872), 2, + sym_qualified_name, + sym__reserved_identifier, + STATE(1763), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(1820), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(857), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(947), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(1613), 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, + [17340] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(828), 1, sym_text_interpolation, - STATE(881), 1, - sym_arguments, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1750), 11, + ACTIONS(1742), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -93851,12 +94646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1748), 23, + ACTIONS(1740), 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, @@ -93875,121 +94677,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17030] = 7, + [17396] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1856), 1, + anon_sym_DOLLAR, + ACTIONS(2094), 1, + sym_name, + ACTIONS(2096), 1, anon_sym_LPAREN, - STATE(599), 1, - sym_arguments, + ACTIONS(2098), 1, + sym_grit_metavariable, STATE(829), 1, sym_text_interpolation, - ACTIONS(1634), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1632), 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, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [17089] = 25, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1772), 1, + sym__dereferencable_expression, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + STATE(2721), 1, + sym__scope_resolution_qualifier, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1607), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1622), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(801), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(738), 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, + [17494] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(585), 1, + ACTIONS(607), 1, aux_sym_cast_type_token1, - ACTIONS(617), 1, + ACTIONS(639), 1, anon_sym_LT_LT_LT, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(1572), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1769), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, - ACTIONS(1848), 1, + ACTIONS(1856), 1, + anon_sym_DOLLAR, + ACTIONS(2094), 1, sym_name, + ACTIONS(2100), 1, + sym_grit_metavariable, STATE(830), 1, sym_text_interpolation, - STATE(1722), 1, + STATE(1772), 1, sym__dereferencable_expression, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, - sym__scope_resolution_qualifier, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2654), 1, + sym__scope_resolution_qualifier, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, sym_namespace_name, - ACTIONS(613), 2, + ACTIONS(635), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(615), 2, + ACTIONS(637), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1554), 2, + STATE(806), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1607), 2, sym_qualified_name, sym__reserved_identifier, ACTIONS(310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1548), 3, + STATE(1622), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(760), 4, + STATE(1763), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(1526), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1444), 7, + STATE(719), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -93997,24 +94821,30 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [17184] = 8, + [17592] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1762), 1, anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(2102), 1, + anon_sym_COLON, + STATE(649), 1, + sym_arguments, STATE(831), 1, sym_text_interpolation, - STATE(869), 1, - sym_arguments, - ACTIONS(1616), 5, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1614), 11, + ACTIONS(1678), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94026,11 +94856,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1622), 23, + ACTIONS(1676), 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, @@ -94050,122 +94878,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17245] = 8, + [17660] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2104), 1, + sym_name, + ACTIONS(2106), 1, + sym_grit_metavariable, STATE(832), 1, sym_text_interpolation, - STATE(869), 1, - sym_arguments, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1865), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1863), 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, - [17306] = 25, + STATE(1792), 1, + sym__dereferencable_expression, + STATE(2588), 1, + sym__scope_resolution_qualifier, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(943), 2, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + STATE(1597), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1599), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1763), 3, + sym_class_constant_access_expression, + sym_cast_variable, + sym_scoped_property_access_expression, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(873), 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, + [17758] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(585), 1, + ACTIONS(607), 1, aux_sym_cast_type_token1, - ACTIONS(617), 1, + ACTIONS(639), 1, anon_sym_LT_LT_LT, - ACTIONS(1572), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1856), 1, anon_sym_DOLLAR, - ACTIONS(1983), 1, + ACTIONS(2094), 1, sym_name, - ACTIONS(1995), 1, + ACTIONS(2096), 1, anon_sym_LPAREN, + ACTIONS(2108), 1, + sym_grit_metavariable, STATE(833), 1, sym_text_interpolation, - STATE(1713), 1, - sym__dereferencable_expression, - STATE(1733), 1, + STATE(1763), 1, sym_class_constant_access_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2496), 1, + STATE(1772), 1, + sym__dereferencable_expression, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, sym_namespace_name, - STATE(2638), 1, + STATE(2721), 1, sym__scope_resolution_qualifier, - ACTIONS(613), 2, + ACTIONS(635), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(615), 2, + ACTIONS(637), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1575), 2, + STATE(1607), 2, sym_qualified_name, sym__reserved_identifier, ACTIONS(310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1560), 3, + STATE(1622), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(760), 4, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(908), 4, + STATE(818), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(832), 7, + STATE(726), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -94173,20 +95022,86 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [17401] = 6, + [17856] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, sym_comment, + ACTIONS(1824), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + sym_name, + ACTIONS(2110), 1, + sym_grit_metavariable, STATE(834), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1614), 12, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1778), 1, + sym__dereferencable_expression, + STATE(2595), 1, + sym__scope_resolution_qualifier, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1606), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1613), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(750), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + 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, + [17954] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(835), 1, + sym_text_interpolation, + ACTIONS(1714), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -94199,13 +95114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1622), 24, + ACTIONS(1712), 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, @@ -94224,21 +95145,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17458] = 7, + [18010] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_LPAREN, - STATE(835), 1, + STATE(836), 1, sym_text_interpolation, - STATE(876), 1, - sym_arguments, - ACTIONS(1626), 11, + ACTIONS(1654), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94247,14 +95165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 28, + ACTIONS(1652), 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, @@ -94276,91 +95196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17517] = 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1848), 1, - sym_name, - STATE(836), 1, - sym_text_interpolation, - STATE(1722), 1, - sym__dereferencable_expression, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, - sym__scope_resolution_qualifier, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 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(1554), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1548), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(721), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1452), 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, - [17612] = 7, + [18066] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(593), 1, - sym_arguments, STATE(837), 1, sym_text_interpolation, - ACTIONS(1638), 11, + ACTIONS(1664), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94369,14 +95216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1636), 28, + ACTIONS(1662), 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, @@ -94398,21 +95247,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17671] = 7, + [18122] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(592), 1, - sym_arguments, STATE(838), 1, sym_text_interpolation, - ACTIONS(1642), 11, + ACTIONS(1746), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94421,14 +95267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 28, + ACTIONS(1744), 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, @@ -94450,21 +95298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17730] = 7, + [18178] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, - anon_sym_LPAREN, - STATE(617), 1, - sym_arguments, STATE(839), 1, sym_text_interpolation, - ACTIONS(1775), 11, + ACTIONS(1726), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94473,14 +95318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1773), 28, + ACTIONS(1724), 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, @@ -94502,69 +95349,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [17789] = 25, + [18234] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(585), 1, + ACTIONS(607), 1, aux_sym_cast_type_token1, - ACTIONS(617), 1, + ACTIONS(639), 1, anon_sym_LT_LT_LT, - ACTIONS(1572), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1769), 1, + ACTIONS(1824), 1, anon_sym_LPAREN, - ACTIONS(1771), 1, + ACTIONS(1856), 1, anon_sym_DOLLAR, - ACTIONS(1997), 1, + ACTIONS(2112), 1, sym_name, + ACTIONS(2114), 1, + sym_grit_metavariable, STATE(840), 1, sym_text_interpolation, - STATE(1734), 1, + STATE(1779), 1, sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2603), 1, - sym_namespace_name, - STATE(2605), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2627), 1, + STATE(2685), 1, sym__scope_resolution_qualifier, - ACTIONS(613), 2, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(615), 2, + ACTIONS(637), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(851), 2, + STATE(723), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1733), 2, + STATE(1763), 2, sym_class_constant_access_expression, sym_cast_variable, - ACTIONS(1765), 3, + ACTIONS(310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(849), 3, + STATE(716), 3, sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - STATE(907), 3, + STATE(813), 3, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(760), 4, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(1548), 7, + STATE(1613), 7, sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, @@ -94572,69 +95421,143 @@ static const uint16_t ts_small_parse_table[] = { sym_nullsafe_member_call_expression, sym_array_creation_expression, sym__string, - [17884] = 25, + [18332] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(585), 1, + ACTIONS(607), 1, aux_sym_cast_type_token1, - ACTIONS(617), 1, + ACTIONS(639), 1, anon_sym_LT_LT_LT, - ACTIONS(1572), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1582), 1, - anon_sym_LPAREN, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1999), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(2104), 1, sym_name, + ACTIONS(2116), 1, + anon_sym_LPAREN, + ACTIONS(2118), 1, + sym_grit_metavariable, STATE(841), 1, sym_text_interpolation, - STATE(1733), 1, + STATE(1763), 1, sym_class_constant_access_expression, - STATE(1749), 1, + STATE(1792), 1, sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, sym_namespace_name, - STATE(2653), 1, + STATE(2723), 1, sym__scope_resolution_qualifier, - ACTIONS(613), 2, + ACTIONS(635), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(615), 2, + ACTIONS(637), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(1558), 2, + STATE(1597), 2, sym_qualified_name, sym__reserved_identifier, ACTIONS(310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1557), 3, + STATE(1599), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(721), 4, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(945), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(760), 4, + STATE(868), 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, + [18430] = 26, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1824), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + sym_name, + ACTIONS(2120), 1, + sym_grit_metavariable, + STATE(842), 1, + sym_text_interpolation, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1778), 1, + sym__dereferencable_expression, + STATE(2595), 1, + sym__scope_resolution_qualifier, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1606), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1613), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(649), 7, + STATE(1583), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1494), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -94642,17 +95565,18 @@ static const uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [17979] = 5, + [18528] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(842), 1, + STATE(843), 1, sym_text_interpolation, - ACTIONS(1728), 11, + ACTIONS(1738), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94661,16 +95585,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1730), 30, + ACTIONS(1736), 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, @@ -94692,27 +95616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18034] = 8, + [18584] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_LPAREN, - STATE(843), 1, + STATE(844), 1, sym_text_interpolation, - STATE(881), 1, - sym_arguments, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1750), 11, + ACTIONS(1754), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94721,12 +95636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1748), 23, + ACTIONS(1752), 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, @@ -94745,17 +95667,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18095] = 5, + [18640] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(844), 1, + STATE(845), 1, sym_text_interpolation, - ACTIONS(1646), 11, + ACTIONS(1734), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94764,16 +95687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1644), 30, + ACTIONS(1732), 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, @@ -94795,21 +95718,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18150] = 7, + [18696] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1704), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1638), 1, anon_sym_LPAREN, - STATE(627), 1, - sym_arguments, - STATE(845), 1, + ACTIONS(1640), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2122), 1, + sym_name, + ACTIONS(2124), 1, + sym_grit_metavariable, + STATE(846), 1, + sym_text_interpolation, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1764), 1, + sym__dereferencable_expression, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + STATE(2749), 1, + sym__scope_resolution_qualifier, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1620), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1621), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(750), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(670), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + [18794] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(847), 1, sym_text_interpolation, - ACTIONS(1779), 11, + ACTIONS(1750), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94818,14 +95810,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1777), 28, + ACTIONS(1748), 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, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [18850] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(848), 1, + sym_text_interpolation, + ACTIONS(1730), 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(1728), 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, @@ -94847,89 +95892,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18209] = 25, + [18906] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(585), 1, + ACTIONS(607), 1, aux_sym_cast_type_token1, - ACTIONS(617), 1, + ACTIONS(639), 1, anon_sym_LT_LT_LT, - ACTIONS(1572), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1785), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(2001), 1, + ACTIONS(2104), 1, sym_name, - STATE(846), 1, + ACTIONS(2116), 1, + anon_sym_LPAREN, + ACTIONS(2126), 1, + sym_grit_metavariable, + STATE(849), 1, sym_text_interpolation, - STATE(1709), 1, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(1792), 1, sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, sym_namespace_name, - STATE(2618), 1, + STATE(2723), 1, sym__scope_resolution_qualifier, - ACTIONS(613), 2, + ACTIONS(635), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(615), 2, + ACTIONS(637), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(704), 2, + STATE(1597), 2, sym_qualified_name, sym__reserved_identifier, - STATE(1733), 2, - sym_class_constant_access_expression, - sym_cast_variable, ACTIONS(310), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(688), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(782), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(760), 4, + STATE(1599), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - STATE(1548), 7, - sym_parenthesized_expression, + STATE(944), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(858), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [18304] = 6, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + [19004] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(592), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(2128), 1, + anon_sym_COLON, + STATE(649), 1, sym_arguments, - STATE(847), 1, + STATE(850), 1, + sym_text_interpolation, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1676), 21, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [19072] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(851), 1, sym_text_interpolation, - ACTIONS(1642), 11, + ACTIONS(1710), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94938,15 +96041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 29, + ACTIONS(1708), 30, 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, @@ -94968,19 +96072,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18361] = 6, + [19128] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(593), 1, - sym_arguments, - STATE(848), 1, + STATE(852), 1, sym_text_interpolation, - ACTIONS(1638), 11, + ACTIONS(1660), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94989,15 +96092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1636), 29, + ACTIONS(1658), 30, 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, @@ -95019,27 +96123,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18418] = 8, + [19184] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(607), 1, + aux_sym_cast_type_token1, + ACTIONS(639), 1, + anon_sym_LT_LT_LT, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1648), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(2130), 1, + sym_name, + ACTIONS(2132), 1, anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(849), 1, + ACTIONS(2134), 1, + sym_grit_metavariable, + STATE(853), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1761), 11, + STATE(1727), 1, + sym__dereferencable_expression, + STATE(1763), 1, + sym_class_constant_access_expression, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2675), 1, + sym__scope_resolution_qualifier, + STATE(2687), 1, + sym_relative_scope, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(635), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(637), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(1596), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(310), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1600), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(796), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + STATE(869), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(814), 7, + sym_function_call_expression, + sym_scoped_call_expression, + sym_member_call_expression, + sym_nullsafe_member_call_expression, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + [19282] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(854), 1, + sym_text_interpolation, + ACTIONS(1706), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -95048,12 +96215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 23, + ACTIONS(1704), 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, @@ -95072,18 +96246,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18479] = 5, + [19338] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(850), 1, + STATE(855), 1, sym_text_interpolation, - ACTIONS(1146), 11, + ACTIONS(1764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -95091,19 +96275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1144), 30, + ACTIONS(1676), 22, + 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, @@ -95122,24 +96298,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18534] = 8, + [19397] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(851), 1, + STATE(856), 1, sym_text_interpolation, - ACTIONS(1616), 5, + STATE(937), 1, + sym_arguments, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1761), 11, + ACTIONS(1945), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95151,7 +96327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 23, + ACTIONS(1943), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95175,16 +96351,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18595] = 6, + [19458] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_EQ, - STATE(852), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, + STATE(857), 1, sym_text_interpolation, - ACTIONS(1852), 11, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1871), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95196,18 +96380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1850), 29, + ACTIONS(1869), 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, @@ -95226,27 +96404,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18652] = 7, + [19519] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(853), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(858), 1, sym_text_interpolation, - ACTIONS(1708), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1616), 5, + STATE(937), 1, + sym_arguments, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1612), 12, + ACTIONS(1960), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -95255,11 +96433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 22, + ACTIONS(1958), 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, @@ -95278,16 +96457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18711] = 6, + [19580] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(594), 1, + STATE(600), 1, sym_arguments, - STATE(854), 1, + STATE(859), 1, sym_text_interpolation, - ACTIONS(1630), 11, + ACTIONS(1672), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95299,7 +96478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1628), 29, + ACTIONS(1670), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -95329,18 +96508,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18768] = 7, + [19637] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(598), 1, - sym_arguments, - STATE(855), 1, + ACTIONS(1956), 1, + anon_sym_EQ, + STATE(860), 1, sym_text_interpolation, - ACTIONS(1626), 11, + ACTIONS(1951), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95352,12 +96529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1624), 28, + ACTIONS(1949), 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, @@ -95381,16 +96559,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18827] = 6, + [19694] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(599), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(649), 1, sym_arguments, - STATE(856), 1, + STATE(861), 1, sym_text_interpolation, - ACTIONS(1634), 11, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95402,18 +96588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1632), 29, + ACTIONS(1676), 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, @@ -95432,154 +96612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [18884] = 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1769), 1, - anon_sym_LPAREN, - ACTIONS(1785), 1, - anon_sym_DOLLAR, - ACTIONS(1989), 1, - sym_name, - STATE(857), 1, - sym_text_interpolation, - STATE(1743), 1, - sym__dereferencable_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2537), 1, - sym__scope_resolution_qualifier, - STATE(2603), 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(771), 2, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - STATE(1536), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1535), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1733), 3, - sym_class_constant_access_expression, - sym_cast_variable, - sym_scoped_property_access_expression, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(717), 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, - [18979] = 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1771), 1, - anon_sym_DOLLAR, - ACTIONS(1983), 1, - sym_name, - ACTIONS(1995), 1, - anon_sym_LPAREN, - STATE(858), 1, - sym_text_interpolation, - STATE(1713), 1, - sym__dereferencable_expression, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - STATE(2638), 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(1575), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1560), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(906), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(831), 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, - [19074] = 5, + [19755] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(859), 1, + STATE(862), 1, sym_text_interpolation, - ACTIONS(1104), 11, + ACTIONS(1188), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95591,7 +96631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1102), 30, + ACTIONS(1186), 30, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -95622,84 +96662,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19129] = 25, + [19810] = 8, 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(1572), 1, - anon_sym_LBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1769), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - ACTIONS(1848), 1, - sym_name, - STATE(860), 1, + STATE(863), 1, sym_text_interpolation, - STATE(1722), 1, - sym__dereferencable_expression, - STATE(1733), 1, - sym_class_constant_access_expression, - STATE(2459), 1, - sym_relative_scope, - STATE(2484), 1, - sym__scope_resolution_qualifier, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 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(1554), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(310), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1548), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(760), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - STATE(1522), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1451), 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, - [19224] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(861), 1, - sym_text_interpolation, - ACTIONS(1951), 11, + STATE(937), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1960), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95711,18 +96691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1949), 29, + ACTIONS(1958), 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, @@ -95741,16 +96715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19278] = 6, + [19871] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_EQ, - STATE(862), 1, + ACTIONS(2074), 1, + anon_sym_LPAREN, + STATE(854), 1, + sym_arguments, + STATE(864), 1, sym_text_interpolation, - ACTIONS(1852), 11, + ACTIONS(1893), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95762,12 +96738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1850), 28, + ACTIONS(1891), 28, + 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, @@ -95791,14 +96767,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19334] = 5, + [19930] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(863), 1, + ACTIONS(2074), 1, + anon_sym_LPAREN, + STATE(843), 1, + sym_arguments, + STATE(865), 1, sym_text_interpolation, - ACTIONS(1662), 11, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95810,18 +96796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 29, + ACTIONS(1676), 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, @@ -95840,14 +96820,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19388] = 5, + [19991] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(864), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(649), 1, + sym_arguments, + STATE(866), 1, sym_text_interpolation, - ACTIONS(1600), 11, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95859,18 +96849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 29, + ACTIONS(1676), 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, @@ -95889,14 +96873,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19442] = 5, + [20052] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(865), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(867), 1, sym_text_interpolation, - ACTIONS(1955), 11, + STATE(926), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1865), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95908,18 +96902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1953), 29, + ACTIONS(1863), 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, @@ -95938,14 +96926,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19496] = 5, + [20113] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(866), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(868), 1, sym_text_interpolation, - ACTIONS(1959), 11, + STATE(937), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1680), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -95957,18 +96955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1957), 29, + ACTIONS(1686), 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, @@ -95987,17 +96979,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19550] = 5, + [20174] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(867), 1, + STATE(869), 1, sym_text_interpolation, - ACTIONS(1931), 11, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1680), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -96006,18 +97005,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1929), 29, + ACTIONS(1686), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, 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, + [20231] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2074), 1, anon_sym_LPAREN, - anon_sym_PLUS, + STATE(843), 1, + sym_arguments, + STATE(870), 1, + sym_text_interpolation, + ACTIONS(1682), 5, + anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1678), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1676), 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, @@ -96036,14 +97083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19604] = 5, + [20292] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(868), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(591), 1, + sym_arguments, + STATE(871), 1, sym_text_interpolation, - ACTIONS(1881), 11, + ACTIONS(1694), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96055,13 +97106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1879), 29, + ACTIONS(1692), 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, @@ -96085,14 +97135,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19658] = 5, + [20351] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(869), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, + STATE(872), 1, sym_text_interpolation, - ACTIONS(1654), 11, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1871), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96104,18 +97164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 29, + ACTIONS(1869), 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, @@ -96134,14 +97188,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19712] = 5, + [20412] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(870), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(873), 1, sym_text_interpolation, - ACTIONS(1852), 11, + STATE(937), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1945), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96153,18 +97217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1850), 29, + ACTIONS(1943), 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, @@ -96183,14 +97241,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19766] = 5, + [20473] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(871), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(593), 1, + sym_arguments, + STATE(874), 1, sym_text_interpolation, - ACTIONS(1658), 11, + ACTIONS(1698), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96202,13 +97264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1656), 29, + ACTIONS(1696), 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, @@ -96232,14 +97293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19820] = 5, + [20532] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(872), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(875), 1, sym_text_interpolation, - ACTIONS(1594), 11, + STATE(902), 1, + sym_arguments, + ACTIONS(1694), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96251,13 +97316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 29, + ACTIONS(1692), 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, @@ -96281,14 +97345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19874] = 5, + [20591] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(873), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(637), 1, + sym_arguments, + STATE(876), 1, sym_text_interpolation, - ACTIONS(1674), 11, + ACTIONS(1893), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96300,13 +97368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1672), 29, + ACTIONS(1891), 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, @@ -96330,14 +97397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19928] = 5, + [20650] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(874), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(877), 1, sym_text_interpolation, - ACTIONS(1682), 11, + STATE(914), 1, + sym_arguments, + ACTIONS(1698), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96349,13 +97420,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1680), 29, + ACTIONS(1696), 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, @@ -96379,14 +97449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [19982] = 5, + [20709] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(875), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(595), 1, + sym_arguments, + STATE(878), 1, sym_text_interpolation, - ACTIONS(1915), 11, + ACTIONS(1702), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96398,13 +97472,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1913), 29, + ACTIONS(1700), 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, @@ -96428,14 +97501,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20036] = 5, + [20768] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(876), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(879), 1, sym_text_interpolation, - ACTIONS(1690), 11, + STATE(923), 1, + sym_arguments, + ACTIONS(1702), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96447,13 +97524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 29, + ACTIONS(1700), 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, @@ -96477,14 +97553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20090] = 5, + [20827] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(877), 1, + STATE(597), 1, + sym_arguments, + STATE(880), 1, sym_text_interpolation, - ACTIONS(1694), 11, + ACTIONS(1690), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96496,7 +97574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1692), 29, + ACTIONS(1688), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96526,18 +97604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20144] = 5, + [20884] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(878), 1, + STATE(881), 1, sym_text_interpolation, - ACTIONS(1919), 11, + ACTIONS(1122), 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, @@ -96545,18 +97623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1917), 29, - sym__automatic_semicolon, + ACTIONS(1120), 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, @@ -96575,14 +97654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20198] = 5, + [20939] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(879), 1, + STATE(595), 1, + sym_arguments, + STATE(882), 1, sym_text_interpolation, - ACTIONS(1608), 11, + ACTIONS(1702), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96594,7 +97675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1606), 29, + ACTIONS(1700), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96624,14 +97705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20252] = 5, + [20996] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(880), 1, + STATE(593), 1, + sym_arguments, + STATE(883), 1, sym_text_interpolation, - ACTIONS(1963), 11, + ACTIONS(1698), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96643,7 +97726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1961), 29, + ACTIONS(1696), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -96673,21 +97756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20306] = 6, + [21053] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(881), 1, + STATE(591), 1, + sym_arguments, + STATE(884), 1, sym_text_interpolation, - ACTIONS(1652), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1939), 11, + ACTIONS(1694), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96699,12 +97777,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1937), 23, + ACTIONS(1692), 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, @@ -96723,14 +97807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20362] = 5, + [21110] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(882), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(885), 1, sym_text_interpolation, - ACTIONS(1686), 11, + STATE(929), 1, + sym_arguments, + ACTIONS(1672), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96742,13 +97830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1684), 29, + ACTIONS(1670), 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, @@ -96772,14 +97859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20416] = 5, + [21169] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(883), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(886), 1, sym_text_interpolation, - ACTIONS(1604), 11, + STATE(896), 1, + sym_arguments, + ACTIONS(1690), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96791,13 +97882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 29, + ACTIONS(1688), 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, @@ -96821,14 +97911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20470] = 5, + [21228] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(884), 1, + STATE(887), 1, sym_text_interpolation, - ACTIONS(1650), 11, + ACTIONS(1794), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96840,10 +97930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1648), 29, + ACTIONS(1796), 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, @@ -96870,14 +97961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20524] = 5, + [21283] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(885), 1, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(633), 1, + sym_arguments, + STATE(888), 1, sym_text_interpolation, - ACTIONS(1911), 11, + ACTIONS(1889), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96889,13 +97984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1909), 29, + ACTIONS(1887), 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, @@ -96919,14 +98013,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20578] = 5, + [21342] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(886), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(889), 1, sym_text_interpolation, - ACTIONS(1678), 11, + STATE(926), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1865), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96938,18 +98042,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1676), 29, + ACTIONS(1863), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - 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, + [21403] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(890), 1, + sym_text_interpolation, + STATE(937), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, + ACTIONS(1680), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1686), 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, @@ -96968,14 +98119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20632] = 5, + [21464] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(887), 1, + STATE(891), 1, sym_text_interpolation, - ACTIONS(1893), 11, + ACTIONS(1718), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -96987,10 +98138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1891), 29, + ACTIONS(1716), 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, @@ -97017,14 +98169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20686] = 5, + [21519] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(888), 1, + ACTIONS(2136), 1, + anon_sym_LPAREN, + STATE(892), 1, sym_text_interpolation, - ACTIONS(1905), 11, + STATE(1168), 1, + sym_arguments, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1865), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97036,18 +98198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1903), 29, + ACTIONS(1863), 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, @@ -97066,14 +98222,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20740] = 5, + [21580] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(889), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(597), 1, + sym_arguments, + STATE(893), 1, sym_text_interpolation, - ACTIONS(1670), 11, + ACTIONS(1690), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97085,13 +98245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1668), 29, + ACTIONS(1688), 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, @@ -97115,14 +98274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20794] = 5, + [21639] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(890), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(600), 1, + sym_arguments, + STATE(894), 1, sym_text_interpolation, - ACTIONS(1885), 11, + ACTIONS(1672), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97134,13 +98297,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1883), 29, + ACTIONS(1670), 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, @@ -97164,14 +98326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20848] = 5, + [21698] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(891), 1, + ACTIONS(2074), 1, + anon_sym_LPAREN, + STATE(845), 1, + sym_arguments, + STATE(895), 1, sym_text_interpolation, - ACTIONS(1927), 11, + ACTIONS(1889), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97183,13 +98349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1925), 29, + ACTIONS(1887), 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, @@ -97213,14 +98378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20902] = 5, + [21757] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(892), 1, + STATE(896), 1, sym_text_interpolation, - ACTIONS(1923), 11, + ACTIONS(1730), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97232,7 +98397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1921), 29, + ACTIONS(1728), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97262,14 +98427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [20956] = 5, + [21811] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(893), 1, + STATE(897), 1, sym_text_interpolation, - ACTIONS(1666), 11, + ACTIONS(2012), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97281,7 +98446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1664), 29, + ACTIONS(2010), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97311,14 +98476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21010] = 5, + [21865] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(894), 1, + STATE(898), 1, sym_text_interpolation, - ACTIONS(1901), 11, + ACTIONS(1754), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97330,7 +98495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1899), 29, + ACTIONS(1752), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97360,14 +98525,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21064] = 5, + [21919] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(895), 1, + STATE(899), 1, sym_text_interpolation, - ACTIONS(1967), 11, + ACTIONS(1750), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97379,7 +98544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1965), 29, + ACTIONS(1748), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97409,14 +98574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21118] = 5, + [21973] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(896), 1, + STATE(900), 1, sym_text_interpolation, - ACTIONS(1943), 11, + ACTIONS(2028), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97428,7 +98593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1941), 29, + ACTIONS(2026), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97458,19 +98623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21172] = 7, + [22027] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_EQ, - STATE(897), 1, + STATE(901), 1, sym_text_interpolation, - ACTIONS(2003), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1852), 11, + ACTIONS(1660), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97482,7 +98642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1850), 26, + ACTIONS(1658), 29, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -97509,14 +98672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21230] = 5, + [22081] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(898), 1, + STATE(902), 1, sym_text_interpolation, - ACTIONS(1889), 11, + ACTIONS(1706), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97528,7 +98691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1887), 29, + ACTIONS(1704), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97558,16 +98721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21284] = 6, + [22135] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1907), 1, - anon_sym_COLON_COLON, - STATE(899), 1, + ACTIONS(1956), 1, + anon_sym_EQ, + STATE(903), 1, sym_text_interpolation, - ACTIONS(1646), 11, + ACTIONS(1951), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97579,14 +98742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1644), 28, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1949), 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, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -97608,14 +98771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21340] = 5, + [22191] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(900), 1, + STATE(904), 1, sym_text_interpolation, - ACTIONS(1576), 11, + ACTIONS(2036), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97627,7 +98790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1578), 29, + ACTIONS(2034), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97657,14 +98820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21394] = 5, + [22245] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(901), 1, + STATE(905), 1, sym_text_interpolation, - ACTIONS(1935), 11, + ACTIONS(1746), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97676,7 +98839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1933), 29, + ACTIONS(1744), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97706,14 +98869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21448] = 5, + [22299] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(902), 1, + STATE(906), 1, sym_text_interpolation, - ACTIONS(1947), 11, + ACTIONS(2016), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97725,7 +98888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1945), 29, + ACTIONS(2014), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97755,14 +98918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21502] = 5, + [22353] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(903), 1, + STATE(907), 1, sym_text_interpolation, - ACTIONS(1897), 11, + ACTIONS(2024), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97774,7 +98937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1895), 29, + ACTIONS(2022), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -97804,20 +98967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21556] = 6, + [22407] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(904), 1, + STATE(908), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1612), 11, + ACTIONS(2060), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97829,12 +98986,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 23, + ACTIONS(2058), 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, @@ -97853,20 +99016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21611] = 6, + [22461] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(905), 1, + STATE(909), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1871), 11, + ACTIONS(2020), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97878,12 +99035,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1869), 23, + ACTIONS(2018), 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, @@ -97902,20 +99065,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21666] = 6, + [22515] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(906), 1, + STATE(910), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1614), 11, + ACTIONS(2052), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97927,12 +99084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1622), 23, + ACTIONS(2050), 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, @@ -97951,20 +99114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21721] = 6, + [22569] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(907), 1, + STATE(911), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1761), 11, + ACTIONS(1654), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -97976,12 +99133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 23, + ACTIONS(1652), 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, @@ -98000,20 +99163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21776] = 6, + [22623] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(908), 1, + STATE(912), 1, sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1865), 11, + ACTIONS(2032), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -98025,12 +99182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1863), 23, + ACTIONS(2030), 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, @@ -98049,17 +99212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21831] = 5, + [22677] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(909), 1, + STATE(913), 1, sym_text_interpolation, - ACTIONS(2007), 10, + ACTIONS(1726), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98067,17 +99231,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2005), 28, + ACTIONS(1724), 29, + 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, + 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, @@ -98096,17 +99261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21883] = 5, + [22731] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(910), 1, + STATE(914), 1, sym_text_interpolation, - ACTIONS(2011), 10, + ACTIONS(1714), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98114,17 +99280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2009), 28, + ACTIONS(1712), 29, + 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, + 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, @@ -98143,19 +99310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21935] = 6, + [22785] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2017), 1, - aux_sym_binary_expression_token1, - STATE(911), 1, + STATE(915), 1, sym_text_interpolation, - ACTIONS(2015), 10, + ACTIONS(1996), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98163,17 +99329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2013), 27, + ACTIONS(1994), 29, + 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, + 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, aux_sym_binary_expression_token2, @@ -98191,17 +99359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [21989] = 5, + [22839] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(912), 1, + STATE(916), 1, sym_text_interpolation, - ACTIONS(2015), 10, + ACTIONS(2064), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98209,17 +99378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2013), 28, + ACTIONS(2062), 29, + 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, + 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, @@ -98238,17 +99408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22041] = 5, + [22893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(913), 1, + STATE(917), 1, sym_text_interpolation, - ACTIONS(2021), 10, + ACTIONS(1988), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98256,17 +99427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2019), 28, + ACTIONS(1986), 29, + 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, + 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, @@ -98285,17 +99457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22093] = 5, + [22947] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(914), 1, + STATE(918), 1, sym_text_interpolation, - ACTIONS(2025), 10, + ACTIONS(1968), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98303,17 +99476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2023), 28, + ACTIONS(1966), 29, + 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, + 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, @@ -98332,17 +99506,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22145] = 5, + [23001] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(915), 1, + STATE(919), 1, sym_text_interpolation, - ACTIONS(2029), 10, + ACTIONS(1976), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98350,17 +99525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2027), 28, + ACTIONS(1974), 29, + 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, + 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, @@ -98379,17 +99555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22197] = 5, + [23055] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(916), 1, + STATE(920), 1, sym_text_interpolation, - ACTIONS(2033), 10, + ACTIONS(1992), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98397,17 +99574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2031), 28, + ACTIONS(1990), 29, + 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, + 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, @@ -98426,17 +99604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22249] = 5, + [23109] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(917), 1, + STATE(921), 1, sym_text_interpolation, - ACTIONS(2037), 10, + ACTIONS(1664), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98444,17 +99623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2035), 28, + ACTIONS(1662), 29, + 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, + 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, @@ -98473,17 +99653,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22301] = 5, + [23163] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(918), 1, + ACTIONS(1964), 1, + anon_sym_COLON_COLON, + STATE(922), 1, sym_text_interpolation, - ACTIONS(2041), 10, + ACTIONS(1718), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98491,17 +99674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2039), 28, + ACTIONS(1716), 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, + anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, + 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, @@ -98520,17 +99703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22353] = 5, + [23219] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(919), 1, + STATE(923), 1, sym_text_interpolation, - ACTIONS(2045), 10, + ACTIONS(1722), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98538,17 +99722,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2043), 28, + ACTIONS(1720), 29, + 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, + 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, @@ -98567,17 +99752,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22405] = 5, + [23273] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(920), 1, + STATE(924), 1, sym_text_interpolation, - ACTIONS(2049), 10, + ACTIONS(1980), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98585,17 +99771,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2047), 28, + ACTIONS(1978), 29, + 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, + 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, @@ -98614,17 +99801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22457] = 5, + [23327] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(921), 1, + STATE(925), 1, sym_text_interpolation, - ACTIONS(2053), 10, + ACTIONS(2068), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98632,17 +99820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2051), 28, + ACTIONS(2066), 29, + 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, + 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, @@ -98661,17 +99850,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22509] = 5, + [23381] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(922), 1, + STATE(926), 1, sym_text_interpolation, - ACTIONS(2057), 10, + ACTIONS(1736), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(2008), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98679,17 +99876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2055), 28, + ACTIONS(2006), 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, @@ -98708,17 +99900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22561] = 5, + [23437] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(923), 1, + STATE(927), 1, sym_text_interpolation, - ACTIONS(2061), 10, + ACTIONS(2004), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98726,17 +99919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2059), 28, + ACTIONS(2002), 29, + 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, + 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, @@ -98755,17 +99949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22613] = 5, + [23491] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(924), 1, + STATE(928), 1, sym_text_interpolation, - ACTIONS(2065), 10, + ACTIONS(1951), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98773,17 +99968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2063), 28, + ACTIONS(1949), 29, + 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, + 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, @@ -98802,17 +99998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22665] = 5, + [23545] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(925), 1, + STATE(929), 1, sym_text_interpolation, - ACTIONS(2069), 10, + ACTIONS(1742), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98820,17 +100017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2067), 28, + ACTIONS(1740), 29, + 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, + 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, @@ -98849,17 +100047,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22717] = 5, + [23599] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(926), 1, + STATE(930), 1, sym_text_interpolation, - ACTIONS(2073), 10, + ACTIONS(1734), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98867,17 +100066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2071), 28, + ACTIONS(1732), 29, + 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, + 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, @@ -98896,17 +100096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22769] = 5, + [23653] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(927), 1, + STATE(931), 1, sym_text_interpolation, - ACTIONS(2077), 10, + ACTIONS(2056), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98914,17 +100115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2075), 28, + ACTIONS(2054), 29, + 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, + 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, @@ -98943,17 +100145,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22821] = 5, + [23707] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(928), 1, + STATE(932), 1, sym_text_interpolation, - ACTIONS(2081), 10, + ACTIONS(2072), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -98961,17 +100164,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2079), 28, + ACTIONS(2070), 29, + 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, + 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, @@ -98990,17 +100194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22873] = 5, + [23761] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(929), 1, + STATE(933), 1, sym_text_interpolation, - ACTIONS(2085), 10, + ACTIONS(1632), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99008,17 +100213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2083), 28, + ACTIONS(1634), 29, + 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, + 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, @@ -99037,17 +100243,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22925] = 5, + [23815] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(930), 1, + STATE(934), 1, sym_text_interpolation, - ACTIONS(2089), 10, + ACTIONS(2000), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99055,17 +100262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2087), 28, + ACTIONS(1998), 29, + 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, + 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, @@ -99084,17 +100292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22977] = 5, + [23869] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(931), 1, + STATE(935), 1, sym_text_interpolation, - ACTIONS(2093), 10, + ACTIONS(2048), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99102,17 +100311,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2091), 28, + ACTIONS(2046), 29, + 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, + 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, @@ -99131,17 +100341,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23029] = 5, + [23923] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(932), 1, + STATE(936), 1, sym_text_interpolation, - ACTIONS(2097), 10, + ACTIONS(2044), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99149,17 +100360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2095), 28, + ACTIONS(2042), 29, + 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, + 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, @@ -99178,17 +100390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23081] = 5, + [23977] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(933), 1, + STATE(937), 1, sym_text_interpolation, - ACTIONS(2101), 10, + ACTIONS(1738), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99196,17 +100409,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2099), 28, + ACTIONS(1736), 29, + 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, + 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, @@ -99225,17 +100439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23133] = 5, + [24031] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(934), 1, + STATE(938), 1, sym_text_interpolation, - ACTIONS(2105), 10, + ACTIONS(1710), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99243,17 +100458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2103), 28, + ACTIONS(1708), 29, + 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, + 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, @@ -99272,17 +100488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23185] = 5, + [24085] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(935), 1, + STATE(939), 1, sym_text_interpolation, - ACTIONS(2109), 10, + ACTIONS(2040), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99290,17 +100507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2107), 28, + ACTIONS(2038), 29, + 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, + 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, @@ -99319,17 +100537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23237] = 5, + [24139] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(936), 1, + STATE(940), 1, sym_text_interpolation, - ACTIONS(2113), 10, + ACTIONS(1668), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99337,17 +100556,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2111), 28, + ACTIONS(1666), 29, + 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, + anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_DASH, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + 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, + [24193] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1956), 1, + anon_sym_EQ, + STATE(941), 1, + sym_text_interpolation, + ACTIONS(2138), 2, + anon_sym_COMMA, anon_sym_RBRACK, + ACTIONS(1951), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1949), 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, @@ -99366,17 +100637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23289] = 5, + [24251] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(937), 1, + STATE(942), 1, sym_text_interpolation, - ACTIONS(2117), 10, + ACTIONS(1984), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99384,17 +100656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2115), 28, + ACTIONS(1982), 29, + 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, + 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, @@ -99413,17 +100686,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23341] = 5, + [24305] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(938), 1, + STATE(943), 1, sym_text_interpolation, - ACTIONS(2121), 10, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1945), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99431,17 +100711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2119), 28, + ACTIONS(1943), 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, @@ -99460,17 +100735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23393] = 5, + [24360] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(939), 1, + STATE(944), 1, sym_text_interpolation, - ACTIONS(2125), 10, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1960), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99478,17 +100760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2123), 28, + ACTIONS(1958), 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, @@ -99507,17 +100784,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23445] = 5, + [24415] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(940), 1, + STATE(945), 1, sym_text_interpolation, - ACTIONS(2129), 10, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1680), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99525,17 +100809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2127), 28, + ACTIONS(1686), 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, @@ -99554,17 +100833,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23497] = 5, + [24470] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(941), 1, + STATE(946), 1, sym_text_interpolation, - ACTIONS(2133), 10, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1678), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99572,17 +100858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2131), 28, + ACTIONS(1676), 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, @@ -99601,17 +100882,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23549] = 5, + [24525] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(942), 1, + STATE(947), 1, sym_text_interpolation, - ACTIONS(2137), 10, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1871), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -99619,17 +100907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2135), 28, + ACTIONS(1869), 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, @@ -99648,14 +100931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23601] = 5, + [24580] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(943), 1, + STATE(948), 1, sym_text_interpolation, - ACTIONS(2141), 10, + ACTIONS(2142), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99666,7 +100949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 28, + ACTIONS(2140), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99695,14 +100978,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23653] = 5, + [24632] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - STATE(944), 1, + ACTIONS(2148), 1, + anon_sym_POUND_LBRACK, + STATE(1040), 1, + sym_attribute_group, + STATE(949), 2, + sym_text_interpolation, + aux_sym_attribute_list_repeat1, + ACTIONS(2146), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + sym_grit_metavariable, + ACTIONS(2144), 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, + [24688] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(950), 1, sym_text_interpolation, - ACTIONS(2145), 10, + ACTIONS(2153), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99713,7 +101045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2143), 28, + ACTIONS(2151), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99742,14 +101074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23705] = 5, + [24740] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(945), 1, + STATE(951), 1, sym_text_interpolation, - ACTIONS(2149), 10, + ACTIONS(2157), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -99760,7 +101092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2147), 28, + ACTIONS(2155), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -99789,106 +101121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23757] = 5, + [24792] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(946), 1, - sym_text_interpolation, - ACTIONS(2153), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2151), 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, - [23809] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(947), 1, - sym_text_interpolation, - ACTIONS(2157), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2155), 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, - [23861] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(948), 1, + STATE(952), 1, sym_text_interpolation, ACTIONS(2161), 10, anon_sym_AMP, @@ -99930,12 +101168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23913] = 5, + [24844] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(949), 1, + STATE(953), 1, sym_text_interpolation, ACTIONS(2165), 10, anon_sym_AMP, @@ -99977,12 +101215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23965] = 5, + [24896] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(950), 1, + STATE(954), 1, sym_text_interpolation, ACTIONS(2169), 10, anon_sym_AMP, @@ -100024,12 +101262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24017] = 5, + [24948] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(951), 1, + STATE(955), 1, sym_text_interpolation, ACTIONS(2173), 10, anon_sym_AMP, @@ -100071,12 +101309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24069] = 5, + [25000] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(952), 1, + STATE(956), 1, sym_text_interpolation, ACTIONS(2177), 10, anon_sym_AMP, @@ -100118,12 +101356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24121] = 5, + [25052] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(953), 1, + STATE(957), 1, sym_text_interpolation, ACTIONS(2181), 10, anon_sym_AMP, @@ -100165,12 +101403,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24173] = 5, + [25104] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(954), 1, + STATE(958), 1, sym_text_interpolation, ACTIONS(2185), 10, anon_sym_AMP, @@ -100212,14 +101450,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24225] = 5, + [25156] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(955), 1, + ACTIONS(2187), 1, + aux_sym_binary_expression_token1, + STATE(959), 1, sym_text_interpolation, - ACTIONS(2189), 10, + ACTIONS(2185), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100230,7 +101470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2187), 28, + ACTIONS(2183), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100241,7 +101481,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, @@ -100259,14 +101498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24277] = 5, + [25210] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(956), 1, + STATE(960), 1, sym_text_interpolation, - ACTIONS(2193), 10, + ACTIONS(2191), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100277,7 +101516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2191), 28, + ACTIONS(2189), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100306,14 +101545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24329] = 5, + [25262] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(957), 1, + STATE(961), 1, sym_text_interpolation, - ACTIONS(2197), 10, + ACTIONS(2195), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100324,7 +101563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2195), 28, + ACTIONS(2193), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100353,14 +101592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24381] = 5, + [25314] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(958), 1, + STATE(962), 1, sym_text_interpolation, - ACTIONS(1594), 10, + ACTIONS(2199), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100371,7 +101610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 28, + ACTIONS(2197), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100400,14 +101639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24433] = 5, + [25366] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(959), 1, + STATE(963), 1, sym_text_interpolation, - ACTIONS(2201), 10, + ACTIONS(2203), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100418,7 +101657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2199), 28, + ACTIONS(2201), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100447,14 +101686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24485] = 5, + [25418] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(960), 1, + STATE(964), 1, sym_text_interpolation, - ACTIONS(2205), 10, + ACTIONS(2207), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100465,7 +101704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2203), 28, + ACTIONS(2205), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100494,14 +101733,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24537] = 5, + [25470] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(961), 1, + STATE(965), 1, sym_text_interpolation, - ACTIONS(1600), 10, + ACTIONS(2211), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100512,7 +101751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 28, + ACTIONS(2209), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100541,14 +101780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24589] = 5, + [25522] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(962), 1, + STATE(966), 1, sym_text_interpolation, - ACTIONS(1604), 10, + ACTIONS(2215), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100559,7 +101798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1602), 28, + ACTIONS(2213), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100588,14 +101827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24641] = 5, + [25574] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(963), 1, + STATE(967), 1, sym_text_interpolation, - ACTIONS(2209), 10, + ACTIONS(2219), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100606,7 +101845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2207), 28, + ACTIONS(2217), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100635,14 +101874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24693] = 5, + [25626] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(964), 1, + STATE(968), 1, sym_text_interpolation, - ACTIONS(2213), 10, + ACTIONS(2223), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100653,7 +101892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2211), 28, + ACTIONS(2221), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100682,14 +101921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24745] = 5, + [25678] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(965), 1, + STATE(969), 1, sym_text_interpolation, - ACTIONS(2217), 10, + ACTIONS(2227), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100700,7 +101939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2215), 28, + ACTIONS(2225), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100729,14 +101968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24797] = 5, + [25730] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(966), 1, + STATE(970), 1, sym_text_interpolation, - ACTIONS(2221), 10, + ACTIONS(2231), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100747,7 +101986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2219), 28, + ACTIONS(2229), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100776,14 +102015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24849] = 5, + [25782] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(967), 1, + STATE(971), 1, sym_text_interpolation, - ACTIONS(1612), 10, + ACTIONS(2235), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100794,7 +102033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 28, + ACTIONS(2233), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100823,14 +102062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24901] = 5, + [25834] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(968), 1, + STATE(972), 1, sym_text_interpolation, - ACTIONS(1939), 10, + ACTIONS(1668), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100841,7 +102080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1937), 28, + ACTIONS(1666), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100870,14 +102109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24953] = 5, + [25886] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(969), 1, + STATE(973), 1, sym_text_interpolation, - ACTIONS(2225), 10, + ACTIONS(2239), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100888,7 +102127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2223), 28, + ACTIONS(2237), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -100917,61 +102156,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25005] = 5, + [25938] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - STATE(970), 1, - sym_text_interpolation, - ACTIONS(1608), 10, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1830), 1, anon_sym_AMP, + ACTIONS(1834), 1, + anon_sym_LPAREN, + ACTIONS(1840), 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(1606), 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, - [25057] = 5, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(2241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(974), 1, + sym_text_interpolation, + STATE(1201), 1, + sym_visibility_modifier, + STATE(1473), 1, + sym_qualified_name, + STATE(1611), 1, + sym__types, + STATE(1769), 1, + sym__type, + STATE(2113), 1, + sym_reference_modifier, + STATE(2118), 1, + sym_variable_name, + STATE(2696), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(248), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1804), 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, + [26028] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(971), 1, + STATE(975), 1, sym_text_interpolation, - ACTIONS(2229), 10, + ACTIONS(1660), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -100982,7 +102240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2227), 28, + ACTIONS(1658), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -101011,14 +102269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25109] = 5, + [26080] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(972), 1, + STATE(976), 1, sym_text_interpolation, - ACTIONS(2233), 10, + ACTIONS(2247), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101029,7 +102287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2231), 28, + ACTIONS(2245), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -101058,14 +102316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25161] = 5, + [26132] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(973), 1, + STATE(977), 1, sym_text_interpolation, - ACTIONS(2237), 10, + ACTIONS(2251), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101076,7 +102334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2235), 28, + ACTIONS(2249), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -101105,82 +102363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25213] = 23, + [26184] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1791), 1, - anon_sym_LPAREN, - ACTIONS(1797), 1, - anon_sym_QMARK, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(2239), 1, - anon_sym_DOT_DOT_DOT, - STATE(974), 1, - sym_text_interpolation, - STATE(1194), 1, - sym_visibility_modifier, - STATE(1425), 1, - sym_qualified_name, - STATE(1543), 1, - sym__types, - STATE(1673), 1, - sym__type, - STATE(1987), 1, - sym_variable_name, - STATE(2004), 1, - sym_reference_modifier, - STATE(2568), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(248), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1738), 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, - [25300] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(975), 1, + STATE(978), 1, sym_text_interpolation, - ACTIONS(1146), 11, + ACTIONS(2255), 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, @@ -101188,15 +102381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1144), 26, - sym__automatic_semicolon, + ACTIONS(2253), 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, @@ -101215,18 +102410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25351] = 5, + [26236] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(976), 1, + STATE(979), 1, sym_text_interpolation, - ACTIONS(1104), 11, + ACTIONS(2259), 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, @@ -101234,15 +102428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1102), 26, - sym__automatic_semicolon, + ACTIONS(2257), 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, @@ -101261,597 +102457,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25402] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2245), 1, - anon_sym_POUND_LBRACK, - STATE(1034), 1, - sym_attribute_group, - STATE(977), 2, - sym_text_interpolation, - aux_sym_attribute_list_repeat1, - ACTIONS(2243), 5, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(2241), 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, - [25457] = 8, + [26288] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - STATE(977), 1, - aux_sym_attribute_list_repeat1, - STATE(978), 1, + STATE(980), 1, sym_text_interpolation, - STATE(1034), 1, - sym_attribute_group, - ACTIONS(2250), 5, - anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - ACTIONS(2248), 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, - [25514] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, + ACTIONS(2263), 10, anon_sym_AMP, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2256), 1, anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - STATE(979), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 9, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2261), 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, - [25598] = 18, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2270), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - STATE(980), 1, + [26340] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(981), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2267), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 13, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2265), 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, - [25674] = 21, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [26392] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + STATE(982), 1, + sym_text_interpolation, + ACTIONS(2271), 10, anon_sym_AMP, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2256), 1, anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - STATE(981), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2288), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2269), 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, - [25756] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - ACTIONS(2292), 1, - anon_sym_QMARK, - STATE(982), 1, + [26444] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(983), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2275), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2290), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 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, - [25838] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - STATE(983), 1, + [26496] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(984), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2279), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2294), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2277), 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, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [25920] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - STATE(984), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2274), 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(2296), 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, - [26008] = 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [26548] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, STATE(985), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 3, + ACTIONS(2283), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2276), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 14, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2281), 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, - [26078] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, + [26600] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(986), 1, sym_text_interpolation, - ACTIONS(1761), 2, + ACTIONS(2008), 10, + anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 13, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2006), 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, - [26152] = 8, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [26652] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2286), 1, - anon_sym_PERCENT, STATE(987), 1, sym_text_interpolation, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2287), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101860,8 +102802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 24, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2285), 28, anon_sym_SEMI, + anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, @@ -101869,8 +102814,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101885,77 +102832,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [26208] = 21, + anon_sym_PERCENT, + [26704] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, STATE(988), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2291), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2289), 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, - [26290] = 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, + anon_sym_PERCENT, + [26756] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + STATE(949), 1, + aux_sym_attribute_list_repeat1, STATE(989), 1, sym_text_interpolation, - ACTIONS(1761), 10, + STATE(1040), 1, + sym_attribute_group, + ACTIONS(2295), 6, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + sym_grit_metavariable, + ACTIONS(2293), 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, + [26814] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(990), 1, + sym_text_interpolation, + ACTIONS(2299), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -101966,8 +102948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 25, + ACTIONS(2297), 28, anon_sym_SEMI, + anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, @@ -101975,8 +102958,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101992,413 +102977,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26342] = 21, + [26866] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + STATE(991), 1, + sym_text_interpolation, + ACTIONS(1678), 10, anon_sym_AMP, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2256), 1, anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - STATE(990), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1676), 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, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [26424] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - STATE(991), 1, + [26918] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(992), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2303), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 8, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2301), 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, - aux_sym_binary_expression_token3, - [26510] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2266), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - ACTIONS(2304), 1, - anon_sym_QMARK, - STATE(992), 1, + [26970] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(993), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2307), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2302), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2305), 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, - [26592] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2268), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - STATE(993), 1, + [27022] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(994), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2311), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 12, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2309), 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, - [26670] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - STATE(994), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2274), 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(2306), 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, - [26758] = 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [27074] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, STATE(995), 1, sym_text_interpolation, - ACTIONS(1761), 2, + ACTIONS(2315), 10, + anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 14, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2313), 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, - [26830] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, + [27126] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(996), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1761), 5, + ACTIONS(2319), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2317), 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, @@ -102408,158 +103253,114 @@ 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, - [26896] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [27178] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + STATE(997), 1, + sym_text_interpolation, + ACTIONS(2323), 10, anon_sym_AMP, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2256), 1, anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - STATE(997), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2308), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2321), 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, - [26984] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, + [27230] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(998), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2327), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2135), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2325), 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, - [27072] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2262), 1, + anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, - ACTIONS(2282), 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, - ACTIONS(2286), 1, anon_sym_PERCENT, + [27282] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(999), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2331), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102568,15 +103369,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 19, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 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, @@ -102588,88 +103396,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [27134] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [27334] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + STATE(1000), 1, + sym_text_interpolation, + ACTIONS(2335), 10, anon_sym_AMP, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2256), 1, anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - STATE(1000), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2310), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2333), 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, - [27222] = 9, + 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, + [27386] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2286), 1, - anon_sym_PERCENT, STATE(1001), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2339), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102678,15 +103463,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 22, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2337), 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, @@ -102701,283 +103493,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [27280] = 24, + anon_sym_PERCENT, + [27438] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + STATE(1002), 1, + sym_text_interpolation, + ACTIONS(2343), 10, anon_sym_AMP, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2256), 1, anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - STATE(1002), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2312), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2341), 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, - [27368] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, + [27490] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1003), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(1664), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2314), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1662), 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, - [27456] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, + [27542] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1004), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2347), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2316), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2345), 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, - [27544] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, + [27594] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1005), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2351), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2318), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2349), 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, - [27632] = 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, + [27646] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2286), 1, - anon_sym_PERCENT, STATE(1006), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2355), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -102986,15 +103698,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 20, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2353), 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, @@ -103006,82 +103725,65 @@ 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, - [27692] = 25, + anon_sym_PERCENT, + [27698] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + STATE(1007), 1, + sym_text_interpolation, + ACTIONS(2359), 10, anon_sym_AMP, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2256), 1, anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2320), 1, - anon_sym_EQ_GT, - STATE(1007), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2215), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2357), 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, - [27782] = 6, + 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, + [27750] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, STATE(1008), 1, sym_text_interpolation, - ACTIONS(1761), 10, + ACTIONS(1654), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103092,8 +103794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 25, + ACTIONS(1652), 28, anon_sym_SEMI, + anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_COLON, @@ -103101,8 +103804,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103118,319 +103823,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27834] = 24, + [27802] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + STATE(1009), 1, + sym_text_interpolation, + ACTIONS(2363), 10, anon_sym_AMP, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2256), 1, anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - STATE(1009), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2322), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2361), 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, - [27922] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2266), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2282), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2286), 1, anon_sym_PERCENT, + [27854] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1010), 1, sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2367), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2324), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2365), 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, - [28004] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, - anon_sym_QMARK, - ACTIONS(2330), 1, - anon_sym_PIPE, - ACTIONS(2334), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2338), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, anon_sym_CARET, - ACTIONS(2350), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2354), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2358), 1, anon_sym_PERCENT, + [27906] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1011), 1, sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2371), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2348), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2288), 9, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2369), 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, - [28085] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [27958] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, STATE(1012), 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, - [28134] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2326), 1, + ACTIONS(2375), 10, anon_sym_AMP, - ACTIONS(2328), 1, anon_sym_QMARK, - ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2334), 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(2373), 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, - ACTIONS(2336), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, anon_sym_CARET, - ACTIONS(2350), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2354), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2358), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, + [28010] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1013), 1, sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2379), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2348), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2135), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2377), 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, - [28221] = 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, + [28062] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2358), 1, - anon_sym_PERCENT, STATE(1014), 1, sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2383), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103439,14 +104074,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 19, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2381), 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, @@ -103458,30 +104101,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, - [28280] = 11, + anon_sym_PERCENT, + [28114] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2354), 1, - anon_sym_DOT, - ACTIONS(2358), 1, - anon_sym_PERCENT, STATE(1015), 1, sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2387), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -103490,14 +104121,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 18, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2385), 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, @@ -103509,106 +104148,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [28341] = 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [28166] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2326), 1, + STATE(1016), 1, + sym_text_interpolation, + ACTIONS(1122), 11, anon_sym_AMP, - ACTIONS(2330), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2340), 1, - anon_sym_AMP_AMP, - ACTIONS(2342), 1, - anon_sym_CARET, - ACTIONS(2350), 1, - anon_sym_GT_EQ, - ACTIONS(2354), 1, - anon_sym_DOT, - ACTIONS(2358), 1, - anon_sym_PERCENT, - STATE(1016), 1, - sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2344), 2, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2348), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 11, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1120), 26, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_RBRACK, + 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, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - [28418] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2350), 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, - ACTIONS(2354), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2358), 1, anon_sym_PERCENT, + [28217] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1017), 1, sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2348), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1761), 5, + ACTIONS(1188), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + aux_sym_else_clause_token1, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 17, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1186), 26, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_RBRACK, + 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, aux_sym_binary_expression_token4, @@ -103618,162 +104238,125 @@ 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, - [28483] = 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [28268] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, STATE(1018), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2294), 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, - [28564] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2358), 1, - anon_sym_PERCENT, - STATE(1019), 1, - sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 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(1759), 21, + ACTIONS(1869), 8, 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, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [28621] = 16, + [28354] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2350), 1, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - STATE(1020), 1, + STATE(1019), 1, sym_text_interpolation, - ACTIONS(1761), 2, + ACTIONS(1871), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 13, + ACTIONS(1869), 13, 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, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -103781,278 +104364,343 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [28692] = 22, + [28428] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(1871), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - STATE(1021), 1, + STATE(1020), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 8, + ACTIONS(1869), 12, 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, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [28775] = 23, + anon_sym_PIPE_PIPE, + [28506] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1022), 1, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + STATE(1021), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 7, + ACTIONS(2427), 7, 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_token3, - [28860] = 21, + [28594] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, + sym_comment, + STATE(1022), 1, + sym_text_interpolation, + ACTIONS(2433), 7, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + sym_grit_metavariable, + ACTIONS(2431), 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, + [28644] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, STATE(1023), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 9, + ACTIONS(2435), 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, - [28941] = 21, + [28726] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, - anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, + ACTIONS(2439), 1, + anon_sym_QMARK, STATE(1024), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2324), 9, + ACTIONS(2437), 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, - [29022] = 6, + [28808] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, STATE(1025), 1, sym_text_interpolation, - ACTIONS(1761), 10, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 24, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 14, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, + anon_sym_RPAREN, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -104061,249 +104709,202 @@ 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, - anon_sym_PERCENT, - [29073] = 21, + [28878] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2330), 1, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, STATE(1026), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 9, + ACTIONS(2441), 7, 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, - [29154] = 8, + [28966] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2358), 1, - anon_sym_PERCENT, - STATE(1027), 1, - sym_text_interpolation, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2389), 1, anon_sym_AMP, + ACTIONS(2391), 1, anon_sym_QMARK, + ACTIONS(2393), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1759), 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, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, anon_sym_AMP_AMP, + ACTIONS(2409), 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, - [29209] = 18, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2330), 1, - anon_sym_PIPE, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2342), 1, - anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - STATE(1028), 1, + STATE(1027), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 12, + ACTIONS(2443), 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, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [29284] = 21, + [29048] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_QMARK, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2330), 1, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - STATE(1029), 1, + STATE(1028), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2290), 9, + ACTIONS(1869), 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, - [29365] = 6, + [29130] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - STATE(1030), 1, + STATE(1029), 1, sym_text_interpolation, - ACTIONS(1761), 10, + ACTIONS(1871), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -104314,14 +104915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 24, + ACTIONS(1869), 25, 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, aux_sym_binary_expression_token2, @@ -104339,784 +104941,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [29416] = 24, + [29182] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1031), 1, + STATE(1030), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2312), 6, + ACTIONS(1869), 9, 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, - [29503] = 5, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [29266] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1032), 1, - sym_text_interpolation, - ACTIONS(2372), 6, + ACTIONS(2389), 1, anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2370), 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, - [29552] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2304), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - STATE(1033), 1, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2445), 1, + anon_sym_EQ_GT, + STATE(1031), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2302), 9, + ACTIONS(2179), 6, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RPAREN, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [29633] = 5, + [29356] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1034), 1, - sym_text_interpolation, - ACTIONS(2376), 6, + ACTIONS(2389), 1, anon_sym_AMP, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLAR, - ACTIONS(2374), 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(2391), 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, - [29682] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2336), 1, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2342), 1, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - STATE(1035), 1, + STATE(1032), 1, sym_text_interpolation, - ACTIONS(1761), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 12, + ACTIONS(2447), 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, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [29755] = 15, + [29438] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2336), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2350), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - STATE(1036), 1, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + STATE(1033), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1761), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 13, + ACTIONS(2449), 7, 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, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [29824] = 24, + [29526] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1037), 1, + STATE(1034), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2296), 6, + ACTIONS(2451), 7, 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, - [29911] = 24, + [29614] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(1871), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1038), 1, + STATE(1035), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2306), 6, + ACTIONS(1869), 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, - [29998] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, - anon_sym_QMARK, - ACTIONS(2330), 1, - anon_sym_PIPE, - ACTIONS(2334), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, - anon_sym_AMP_AMP, - ACTIONS(2342), 1, - anon_sym_CARET, - ACTIONS(2350), 1, - anon_sym_GT_EQ, - ACTIONS(2354), 1, - anon_sym_DOT, - ACTIONS(2358), 1, - anon_sym_PERCENT, - ACTIONS(2364), 1, aux_sym_binary_expression_token2, - ACTIONS(2366), 1, aux_sym_binary_expression_token3, - ACTIONS(2368), 1, aux_sym_binary_expression_token4, - STATE(1039), 1, - sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2344), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2348), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2346), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2322), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [30085] = 24, + [29696] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2326), 1, + STATE(1036), 1, + sym_text_interpolation, + ACTIONS(2455), 7, anon_sym_AMP, - ACTIONS(2328), 1, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + sym_grit_metavariable, + ACTIONS(2453), 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, - ACTIONS(2330), 1, - anon_sym_PIPE, - ACTIONS(2334), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, - anon_sym_AMP_AMP, - ACTIONS(2342), 1, - anon_sym_CARET, - ACTIONS(2350), 1, - anon_sym_GT_EQ, - ACTIONS(2354), 1, - anon_sym_DOT, - ACTIONS(2358), 1, - anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1040), 1, - sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2344), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2348), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2346), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2308), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - aux_sym_binary_expression_token1, - [30172] = 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, + [29746] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1041), 1, + STATE(1037), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2310), 6, + ACTIONS(2457), 7, 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, - [30259] = 25, + [29834] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2378), 1, - anon_sym_EQ_GT, - STATE(1042), 1, + STATE(1038), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2215), 5, + ACTIONS(2459), 7, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_RPAREN, aux_sym_binary_expression_token1, - [30348] = 24, + [29922] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1043), 1, + STATE(1039), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2318), 6, + ACTIONS(2461), 7, 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, - [30435] = 5, + [30010] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1044), 1, + STATE(1040), 1, sym_text_interpolation, - ACTIONS(2382), 6, + ACTIONS(2465), 7, anon_sym_AMP, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(2380), 29, + sym_grit_metavariable, + ACTIONS(2463), 29, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -105146,266 +105600,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [30484] = 24, + [30060] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1045), 1, + STATE(1041), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2316), 6, + ACTIONS(2361), 7, 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, - [30571] = 24, + [30148] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(1871), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, - anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1046), 1, + STATE(1042), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2314), 6, + ACTIONS(1869), 13, 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, - [30658] = 13, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [30224] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - STATE(1047), 1, + ACTIONS(2469), 1, + anon_sym_QMARK, + STATE(1043), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1761), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1759), 16, - sym__automatic_semicolon, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2467), 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_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, - [30722] = 24, + [30306] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, + ACTIONS(2403), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2409), 1, anon_sym_CARET, - STATE(1048), 1, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + STATE(1044), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2316), 5, - sym__automatic_semicolon, + ACTIONS(2471), 7, 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_binary_expression_token1, - [30808] = 10, + [30394] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2398), 1, - anon_sym_PERCENT, - STATE(1049), 1, + STATE(1045), 1, sym_text_interpolation, - ACTIONS(2384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(1871), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105414,11 +105865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 18, - sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1869), 25, 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, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -105432,56 +105889,46 @@ 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, - [30866] = 18, + anon_sym_PERCENT, + [30446] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2386), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2404), 1, - anon_sym_PIPE, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1050), 1, + STATE(1046), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, + ACTIONS(1871), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 11, - sym__automatic_semicolon, + ACTIONS(1869), 20, 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_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -105489,253 +105936,282 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [30940] = 19, + anon_sym_CARET, + anon_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, + [30506] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2386), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2404), 1, - anon_sym_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1051), 1, + STATE(1047), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, + ACTIONS(1871), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 10, - sym__automatic_semicolon, + ACTIONS(1869), 22, 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_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - [31016] = 22, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [30564] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, - anon_sym_QMARK, - ACTIONS(2404), 1, - anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1052), 1, + STATE(1048), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, + ACTIONS(1871), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 7, - sym__automatic_semicolon, + ACTIONS(1869), 19, 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_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [31098] = 23, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [30626] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, - anon_sym_QMARK, - ACTIONS(2404), 1, - anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1053), 1, + STATE(1049), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 6, - sym__automatic_semicolon, + ACTIONS(1871), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1869), 18, 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_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, - [31182] = 21, + aux_sym_binary_expression_token4, + anon_sym_PIPE_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, + [30692] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, + STATE(1050), 1, + sym_text_interpolation, + ACTIONS(1871), 2, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1054), 1, - sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 8, - sym__automatic_semicolon, + ACTIONS(1869), 14, 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_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [31262] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [30764] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, + sym_comment, + STATE(1051), 1, + sym_text_interpolation, + ACTIONS(2475), 7, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + sym_grit_metavariable, + ACTIONS(2473), 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, + [30814] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - STATE(1055), 1, + ACTIONS(2425), 1, + anon_sym_PERCENT, + STATE(1052), 1, sym_text_interpolation, - ACTIONS(1761), 10, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -105744,13 +106220,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(1759), 23, - sym__automatic_semicolon, + ACTIONS(1869), 24, 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, aux_sym_binary_expression_token1, @@ -105769,114 +106245,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [31312] = 21, + [30870] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2404), 1, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2414), 1, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2409), 1, anon_sym_CARET, - STATE(1056), 1, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + STATE(1053), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 8, - sym__automatic_semicolon, + ACTIONS(2477), 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, + [30958] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + STATE(1054), 1, + sym_text_interpolation, + ACTIONS(1871), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1869), 24, 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, - [31392] = 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [31009] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1057), 1, + STATE(1055), 1, sym_text_interpolation, - ACTIONS(1761), 2, + ACTIONS(1871), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2384), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 11, - sym__automatic_semicolon, + ACTIONS(1869), 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, @@ -105884,417 +106410,639 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [31464] = 15, + [31082] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - STATE(1058), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, + aux_sym_binary_expression_token3, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1056), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1761), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2388), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 12, - sym__automatic_semicolon, + ACTIONS(2461), 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, - [31532] = 24, + [31169] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2503), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2505), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2507), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2515), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1059), 1, + STATE(1057), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2296), 5, - sym__automatic_semicolon, + ACTIONS(2427), 6, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RBRACK, aux_sym_binary_expression_token1, - [31618] = 16, + [31256] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - STATE(1060), 1, - sym_text_interpolation, - ACTIONS(1761), 2, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 1, anon_sym_PIPE, - ACTIONS(2384), 2, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, + aux_sym_binary_expression_token3, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1058), 1, + sym_text_interpolation, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 12, - sym__automatic_semicolon, + ACTIONS(2471), 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, - [31688] = 24, + [31343] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2503), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2505), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2507), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2515), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1061), 1, + STATE(1059), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2306), 5, - sym__automatic_semicolon, + ACTIONS(2459), 6, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_RBRACK, aux_sym_binary_expression_token1, - [31774] = 5, + [31430] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1062), 1, - sym_text_interpolation, - ACTIONS(2061), 10, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 1, anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, + aux_sym_binary_expression_token3, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1060), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2059), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2457), 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, + [31517] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, + ACTIONS(2515), 1, anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2519), 1, + anon_sym_EQ_GT, + STATE(1061), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2489), 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, - [31822] = 5, + ACTIONS(2179), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [31606] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1063), 1, - sym_text_interpolation, - ACTIONS(2065), 10, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 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(2063), 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(2507), 1, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, + ACTIONS(2515), 1, anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - anon_sym_CARET, + STATE(1062), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2489), 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, - [31870] = 5, + ACTIONS(2451), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [31693] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1064), 1, - sym_text_interpolation, - ACTIONS(2069), 10, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 1, anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1063), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2067), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2447), 9, 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, - 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, - [31918] = 5, + [31774] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1065), 1, - sym_text_interpolation, - ACTIONS(2157), 10, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 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(2155), 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(2507), 1, anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, + ACTIONS(2515), 1, anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - anon_sym_CARET, + STATE(1064), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2489), 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, - [31966] = 5, + ACTIONS(2449), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + aux_sym_binary_expression_token1, + [31861] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2523), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2528), 1, + aux_sym_final_modifier_token1, + ACTIONS(2531), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2534), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2537), 1, + sym_var_modifier, + ACTIONS(2543), 1, + sym_grit_metavariable, + STATE(1369), 1, + sym__modifier, + STATE(1065), 2, + sym_text_interpolation, + aux_sym_property_declaration_repeat1, + ACTIONS(2526), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(2540), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1370), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(2521), 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, + [31928] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2501), 1, + anon_sym_PERCENT, STATE(1066), 1, sym_text_interpolation, - ACTIONS(2153), 10, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106303,18 +107051,16 @@ 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(2151), 24, - sym__automatic_semicolon, + ACTIONS(1869), 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -106329,121 +107075,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [32014] = 9, + [31983] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(1871), 1, + anon_sym_QMARK, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2398), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, anon_sym_PERCENT, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, STATE(1067), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 20, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 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, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [32070] = 21, + [32064] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2503), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2505), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2507), 1, anon_sym_QMARK_QMARK, - ACTIONS(2414), 1, + ACTIONS(2515), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, STATE(1068), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2324), 8, - sym__automatic_semicolon, + ACTIONS(2443), 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, - [32150] = 5, + [32145] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, STATE(1069), 1, sym_text_interpolation, - ACTIONS(2073), 10, + ACTIONS(1871), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106454,16 +107215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2071), 24, - sym__automatic_semicolon, + ACTIONS(1869), 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -106479,205 +107240,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [32198] = 5, + [32196] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1070), 1, - sym_text_interpolation, - ACTIONS(1939), 10, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 1, anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1070), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1937), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 9, 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, - 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, + [32277] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2493), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2497), 1, anon_sym_DOT, + ACTIONS(2501), 1, anon_sym_PERCENT, - [32246] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(1071), 1, - sym_text_interpolation, - ACTIONS(2141), 10, - anon_sym_AMP, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 1, anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1071), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2139), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 7, 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, - 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, - [32294] = 5, + [32362] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1072), 1, - sym_text_interpolation, - ACTIONS(2229), 10, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 1, anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1072), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2227), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 8, 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, - 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, + [32445] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1871), 1, + anon_sym_QMARK, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2493), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2497), 1, anon_sym_DOT, + ACTIONS(2501), 1, anon_sym_PERCENT, - [32342] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, STATE(1073), 1, sym_text_interpolation, - ACTIONS(2169), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2167), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 11, 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, - 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, - [32390] = 6, + [32522] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(1871), 1, + anon_sym_QMARK, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - STATE(1074), 1, - sym_text_interpolation, - ACTIONS(1761), 10, + ACTIONS(2481), 1, anon_sym_AMP, - anon_sym_QMARK, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2505), 1, anon_sym_PIPE, + STATE(1074), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 23, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 12, 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, @@ -106685,87 +107538,103 @@ 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, - anon_sym_PERCENT, - [32440] = 5, + [32597] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, STATE(1075), 1, sym_text_interpolation, - ACTIONS(2193), 10, - anon_sym_AMP, + ACTIONS(1871), 2, anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2191), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 13, 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, - 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, - [32488] = 5, + [32668] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, STATE(1076), 1, sym_text_interpolation, - ACTIONS(2145), 10, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1871), 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(2143), 24, - sym__automatic_semicolon, + ACTIONS(1869), 17, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -106775,20 +107644,30 @@ 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, - [32536] = 5, + [32733] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, STATE(1077), 1, sym_text_interpolation, - ACTIONS(2133), 10, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106797,18 +107676,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(2131), 24, - sym__automatic_semicolon, + ACTIONS(1869), 18, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -106820,84 +107695,87 @@ 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, - [32584] = 21, + [32794] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2503), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2505), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2507), 1, anon_sym_QMARK_QMARK, - ACTIONS(2414), 1, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, + aux_sym_binary_expression_token3, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, STATE(1078), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2294), 8, - sym__automatic_semicolon, + ACTIONS(2441), 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, - [32664] = 8, + [32881] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2398), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, STATE(1079), 1, sym_text_interpolation, - ACTIONS(2396), 2, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(1871), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106906,13 +107784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 22, - sym__automatic_semicolon, + ACTIONS(1869), 21, 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, @@ -106929,14 +107806,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [32718] = 5, + [32938] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2501), 1, + anon_sym_PERCENT, STATE(1080), 1, sym_text_interpolation, - ACTIONS(2045), 10, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -106945,18 +107835,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(2043), 24, - sym__automatic_semicolon, + ACTIONS(1869), 19, 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, - anon_sym_STAR_STAR, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, @@ -106968,276 +107854,375 @@ 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, - [32766] = 5, + [32997] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, STATE(1081), 1, sym_text_interpolation, - ACTIONS(2081), 10, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2079), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 13, 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, - 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, - [32814] = 5, + [33066] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1082), 1, - sym_text_interpolation, - ACTIONS(2007), 10, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 1, anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, + aux_sym_binary_expression_token3, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1082), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2005), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2477), 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, + [33153] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, + ACTIONS(2515), 1, anon_sym_PIPE_PIPE, + ACTIONS(2517), 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, - [32862] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, STATE(1083), 1, sym_text_interpolation, - ACTIONS(2093), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2091), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2361), 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, + [33240] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 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(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2493), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2497), 1, anon_sym_DOT, + ACTIONS(2501), 1, anon_sym_PERCENT, - [32910] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(1084), 1, - sym_text_interpolation, - ACTIONS(1604), 10, - anon_sym_AMP, + ACTIONS(2503), 1, anon_sym_QMARK, + ACTIONS(2505), 1, anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1084), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1602), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2435), 9, 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, - 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, + [33321] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2439), 1, + anon_sym_QMARK, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2493), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2497), 1, anon_sym_DOT, + ACTIONS(2501), 1, anon_sym_PERCENT, - [32958] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, STATE(1085), 1, sym_text_interpolation, - ACTIONS(2217), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2215), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2437), 9, 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, - 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, + [33402] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2469), 1, + anon_sym_QMARK, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2493), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2497), 1, anon_sym_DOT, + ACTIONS(2501), 1, anon_sym_PERCENT, - [33006] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, STATE(1086), 1, sym_text_interpolation, - ACTIONS(2041), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2039), 24, - sym__automatic_semicolon, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2467), 9, 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, - 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, - [33054] = 5, + [33483] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1087), 1, sym_text_interpolation, - ACTIONS(1594), 10, + ACTIONS(2339), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107248,7 +108233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1592), 24, + ACTIONS(2337), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107273,57 +108258,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33102] = 5, + [33531] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1088), 1, - sym_text_interpolation, - ACTIONS(2105), 10, + ACTIONS(2546), 1, anon_sym_AMP, + ACTIONS(2548), 1, anon_sym_QMARK, + ACTIONS(2550), 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(2103), 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(2554), 1, anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, anon_sym_STAR_STAR, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, + ACTIONS(2560), 1, aux_sym_binary_expression_token3, + ACTIONS(2562), 1, aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, anon_sym_AMP_AMP, + ACTIONS(2568), 1, anon_sym_CARET, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1088), 1, + sym_text_interpolation, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2572), 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, - [33150] = 5, + ACTIONS(2451), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [33617] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1089), 1, sym_text_interpolation, - ACTIONS(1600), 10, + ACTIONS(1668), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107334,7 +108338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 24, + ACTIONS(1666), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107359,14 +108363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33198] = 5, + [33665] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1090), 1, sym_text_interpolation, - ACTIONS(2113), 10, + ACTIONS(2363), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107377,7 +108381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2111), 24, + ACTIONS(2361), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107402,14 +108406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33246] = 5, + [33713] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1091), 1, sym_text_interpolation, - ACTIONS(2121), 10, + ACTIONS(2247), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107420,7 +108424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2119), 24, + ACTIONS(2245), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107445,14 +108449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33294] = 5, + [33761] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, STATE(1092), 1, sym_text_interpolation, - ACTIONS(2137), 10, + ACTIONS(1871), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107463,7 +108469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2135), 24, + ACTIONS(1869), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107472,7 +108478,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, @@ -107488,14 +108493,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33342] = 5, + [33811] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2584), 1, + anon_sym_PERCENT, STATE(1093), 1, sym_text_interpolation, - ACTIONS(2173), 10, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107504,18 +108522,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(2171), 24, + ACTIONS(1869), 18, 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, @@ -107527,120 +108540,105 @@ 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, - [33390] = 21, + [33869] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_QMARK, - ACTIONS(2386), 1, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2404), 1, - anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, STATE(1094), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, + ACTIONS(1871), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2290), 8, + ACTIONS(1869), 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, - [33470] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [33925] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2414), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2568), 1, anon_sym_CARET, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, STATE(1095), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2288), 8, + ACTIONS(2435), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -107649,14 +108647,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [33550] = 5, + [34005] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, STATE(1096), 1, sym_text_interpolation, - ACTIONS(2149), 10, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -107665,18 +108678,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(2147), 24, + ACTIONS(1869), 17, 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, @@ -107688,38 +108696,47 @@ 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, - [33598] = 5, + [34065] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, STATE(1097), 1, sym_text_interpolation, - ACTIONS(1039), 10, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1871), 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(1037), 24, + ACTIONS(1869), 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, @@ -107729,278 +108746,362 @@ 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, - [33646] = 5, + [34129] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, STATE(1098), 1, sym_text_interpolation, - ACTIONS(1043), 10, - anon_sym_AMP, + ACTIONS(1871), 2, anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1041), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 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, - 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, - [33694] = 5, + [34199] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1099), 1, - sym_text_interpolation, - ACTIONS(2161), 10, - anon_sym_AMP, + ACTIONS(1871), 1, anon_sym_QMARK, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2550), 1, anon_sym_PIPE, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2568), 1, + anon_sym_CARET, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1099), 1, + sym_text_interpolation, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2159), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 11, 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, + [34273] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1871), 1, + anon_sym_QMARK, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2566), 1, + anon_sym_AMP_AMP, + ACTIONS(2568), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2576), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2580), 1, anon_sym_DOT, + ACTIONS(2584), 1, anon_sym_PERCENT, - [33742] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, STATE(1100), 1, sym_text_interpolation, - ACTIONS(2165), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2163), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 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, + [34349] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2548), 1, + anon_sym_QMARK, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, anon_sym_AMP_AMP, + ACTIONS(2568), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2576), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2580), 1, anon_sym_DOT, + ACTIONS(2584), 1, anon_sym_PERCENT, - [33790] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, STATE(1101), 1, sym_text_interpolation, - ACTIONS(2177), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2175), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 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, - anon_sym_QMARK_QMARK, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, + [34431] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2439), 1, + anon_sym_QMARK, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, anon_sym_AMP_AMP, + ACTIONS(2568), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2576), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2580), 1, anon_sym_DOT, + ACTIONS(2584), 1, anon_sym_PERCENT, - [33838] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, STATE(1102), 1, sym_text_interpolation, - ACTIONS(1608), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1606), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2437), 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, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [34511] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2548), 1, + anon_sym_QMARK, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, anon_sym_STAR_STAR, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, + ACTIONS(2562), 1, aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, anon_sym_AMP_AMP, + ACTIONS(2568), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2576), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2580), 1, anon_sym_DOT, + ACTIONS(2584), 1, anon_sym_PERCENT, - [33886] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, STATE(1103), 1, sym_text_interpolation, - ACTIONS(2205), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2203), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 6, 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, - [33934] = 5, + [34595] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1104), 1, sym_text_interpolation, - ACTIONS(2209), 10, + ACTIONS(2311), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108011,7 +109112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2207), 24, + ACTIONS(2309), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108036,14 +109137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [33982] = 5, + [34643] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1105), 1, sym_text_interpolation, - ACTIONS(1612), 10, + ACTIONS(2211), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108054,7 +109155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 24, + ACTIONS(2209), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108079,100 +109180,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34030] = 5, + [34691] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1106), 1, - sym_text_interpolation, - ACTIONS(2129), 10, + ACTIONS(2546), 1, anon_sym_AMP, + ACTIONS(2548), 1, anon_sym_QMARK, + ACTIONS(2550), 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(2127), 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(2554), 1, anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, anon_sym_AMP_AMP, + ACTIONS(2568), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2576), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2580), 1, anon_sym_DOT, + ACTIONS(2584), 1, anon_sym_PERCENT, - [34078] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(1107), 1, + STATE(1106), 1, sym_text_interpolation, - ACTIONS(2077), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2075), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 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, - [34126] = 5, + [34771] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1108), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + STATE(1107), 1, sym_text_interpolation, - ACTIONS(2125), 10, + ACTIONS(1871), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108183,7 +109259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2123), 24, + ACTIONS(1869), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108192,7 +109268,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, @@ -108208,57 +109283,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34174] = 5, + [34821] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1109), 1, - sym_text_interpolation, - ACTIONS(2213), 10, - anon_sym_AMP, + ACTIONS(1871), 1, anon_sym_QMARK, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2550), 1, anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, + anon_sym_AMP_AMP, + ACTIONS(2568), 1, + anon_sym_CARET, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1108), 1, + sym_text_interpolation, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2211), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 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, - [34222] = 5, + [34901] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1110), 1, + STATE(1109), 1, sym_text_interpolation, - ACTIONS(2117), 10, + ACTIONS(2181), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108269,7 +109360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2115), 24, + ACTIONS(2179), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108294,14 +109385,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34270] = 5, + [34949] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1111), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1110), 1, sym_text_interpolation, - ACTIONS(2109), 10, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108310,9 +109408,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(2107), 24, + ACTIONS(1869), 22, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108321,7 +109417,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, @@ -108336,77 +109431,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [34318] = 24, + [35003] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2568), 1, + anon_sym_CARET, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, + STATE(1111), 1, + sym_text_interpolation, + ACTIONS(1871), 2, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1112), 1, - sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2312), 5, + ACTIONS(1869), 11, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [34404] = 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, + [35075] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1113), 1, + STATE(1112), 1, sym_text_interpolation, - ACTIONS(2101), 10, + ACTIONS(2263), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108417,7 +109504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2099), 24, + ACTIONS(2261), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108442,230 +109529,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34452] = 5, + [35123] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1114), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1113), 1, sym_text_interpolation, - ACTIONS(2097), 10, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2095), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1869), 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, - 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, - [34500] = 24, + [35191] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, + ACTIONS(2560), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, + ACTIONS(2562), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2568), 1, anon_sym_CARET, - STATE(1115), 1, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1114), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2314), 5, + ACTIONS(2441), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [34586] = 11, + [35277] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2548), 1, + anon_sym_QMARK, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2394), 1, + ACTIONS(2564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, + anon_sym_AMP_AMP, + ACTIONS(2568), 1, + anon_sym_CARET, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - STATE(1116), 1, + STATE(1115), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1761), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 17, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2443), 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, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [34646] = 24, + [35357] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2568), 1, anon_sym_CARET, - STATE(1117), 1, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1116), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2318), 5, + ACTIONS(2447), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, aux_sym_binary_expression_token1, - [34732] = 5, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [35437] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1118), 1, + STATE(1117), 1, sym_text_interpolation, - ACTIONS(2033), 10, + ACTIONS(2153), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108676,7 +109780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2031), 24, + ACTIONS(2151), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108701,77 +109805,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34780] = 25, + [35485] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + STATE(1118), 1, + sym_text_interpolation, + ACTIONS(2235), 10, anon_sym_AMP, - ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - ACTIONS(2424), 1, - anon_sym_EQ_GT, - STATE(1119), 1, - sym_text_interpolation, - ACTIONS(2384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2420), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2215), 4, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2233), 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(2422), 4, + 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, - [34868] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [35533] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1120), 1, + STATE(1119), 1, sym_text_interpolation, - ACTIONS(2181), 10, + ACTIONS(2177), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108782,7 +109866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2179), 24, + ACTIONS(2175), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108807,57 +109891,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [34916] = 5, + [35581] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1121), 1, - sym_text_interpolation, - ACTIONS(2029), 10, + ACTIONS(2546), 1, anon_sym_AMP, + ACTIONS(2548), 1, anon_sym_QMARK, + ACTIONS(2550), 1, anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, + anon_sym_AMP_AMP, + ACTIONS(2568), 1, + anon_sym_CARET, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1120), 1, + sym_text_interpolation, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2027), 24, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(2477), 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, + [35667] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2548), 1, + anon_sym_QMARK, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, anon_sym_STAR_STAR, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, + ACTIONS(2560), 1, aux_sym_binary_expression_token3, + ACTIONS(2562), 1, aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, anon_sym_AMP_AMP, + ACTIONS(2568), 1, anon_sym_CARET, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1121), 1, + sym_text_interpolation, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2572), 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, - [34964] = 5, + ACTIONS(2457), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [35753] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1122), 1, sym_text_interpolation, - ACTIONS(2185), 10, + ACTIONS(2299), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108868,7 +110033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2183), 24, + ACTIONS(2297), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108893,76 +110058,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35012] = 24, + [35801] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + STATE(1123), 1, + sym_text_interpolation, + ACTIONS(2355), 10, anon_sym_AMP, - ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 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(2353), 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(2408), 1, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, anon_sym_CARET, - STATE(1123), 1, - sym_text_interpolation, - ACTIONS(2384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2422), 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(2308), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [35098] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [35849] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1124), 1, sym_text_interpolation, - ACTIONS(2049), 10, + ACTIONS(2327), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -108973,7 +110119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2047), 24, + ACTIONS(2325), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -108998,14 +110144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35146] = 5, + [35897] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1125), 1, sym_text_interpolation, - ACTIONS(2025), 10, + ACTIONS(2157), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109016,7 +110162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2023), 24, + ACTIONS(2155), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109041,14 +110187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35194] = 5, + [35945] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1126), 1, sym_text_interpolation, - ACTIONS(2089), 10, + ACTIONS(2371), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109059,7 +110205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2087), 24, + ACTIONS(2369), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109084,14 +110230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35242] = 5, + [35993] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1127), 1, sym_text_interpolation, - ACTIONS(2021), 10, + ACTIONS(2347), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109102,7 +110248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2019), 24, + ACTIONS(2345), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109127,76 +110273,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35290] = 24, + [36041] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + STATE(1128), 1, + sym_text_interpolation, + ACTIONS(2185), 10, anon_sym_AMP, - ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 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(2183), 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(2408), 1, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, anon_sym_CARET, - STATE(1128), 1, - sym_text_interpolation, - ACTIONS(2384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2422), 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(2322), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [35376] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [36089] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1129), 1, sym_text_interpolation, - ACTIONS(2011), 10, + ACTIONS(2331), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109207,7 +110334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2009), 24, + ACTIONS(2329), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109232,14 +110359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35424] = 5, + [36137] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1130), 1, sym_text_interpolation, - ACTIONS(2201), 10, + ACTIONS(2351), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109250,7 +110377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2199), 24, + ACTIONS(2349), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109275,76 +110402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35472] = 24, + [36185] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, - anon_sym_QMARK, - ACTIONS(2404), 1, - anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, STATE(1131), 1, sym_text_interpolation, - ACTIONS(2384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2422), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2135), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [35558] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(1132), 1, - sym_text_interpolation, - ACTIONS(2085), 10, + ACTIONS(2161), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109355,7 +110420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2083), 24, + ACTIONS(2159), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109380,46 +110445,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35606] = 13, + [36233] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2428), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2433), 1, - aux_sym_final_modifier_token1, - ACTIONS(2436), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2439), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2442), 1, - sym_var_modifier, - STATE(1330), 1, - sym__modifier, - STATE(1133), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(2431), 3, + ACTIONS(226), 1, anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2445), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1329), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(2426), 16, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(2243), 1, + sym_grit_metavariable, + ACTIONS(2586), 1, + sym_name, + STATE(1132), 1, + sym_text_interpolation, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(1698), 1, + sym__type, + STATE(1908), 1, + sym_const_element, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2635), 1, + sym__reserved_identifier, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, - anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -109430,74 +110503,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - sym_name, - [35670] = 21, + [36311] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2304), 1, - anon_sym_QMARK, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2404), 1, + ACTIONS(2548), 1, + anon_sym_QMARK, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2414), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2568), 1, anon_sym_CARET, - STATE(1134), 1, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1133), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2302), 8, + ACTIONS(2427), 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, - [35750] = 5, + [36397] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1135), 1, + ACTIONS(2590), 1, + aux_sym_binary_expression_token1, + STATE(1134), 1, sym_text_interpolation, - ACTIONS(2221), 10, + ACTIONS(2185), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109508,14 +110585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2219), 24, + ACTIONS(2183), 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, @@ -109533,76 +110609,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35798] = 24, + [36447] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + STATE(1135), 1, + sym_text_interpolation, + ACTIONS(2195), 10, anon_sym_AMP, - ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 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(2193), 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(2408), 1, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, anon_sym_CARET, - STATE(1136), 1, - sym_text_interpolation, - ACTIONS(2384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2422), 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(2310), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - aux_sym_binary_expression_token1, - [35884] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [36495] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(2243), 1, + sym_grit_metavariable, + ACTIONS(2586), 1, + sym_name, + STATE(1136), 1, + sym_text_interpolation, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(1671), 1, + sym__type, + STATE(1867), 1, + sym_const_element, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2635), 1, + sym__reserved_identifier, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1804), 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, + [36573] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, STATE(1137), 1, sym_text_interpolation, - ACTIONS(2053), 10, + ACTIONS(2259), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109613,7 +110728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2051), 24, + ACTIONS(2257), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109638,14 +110753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35932] = 5, + [36621] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1138), 1, sym_text_interpolation, - ACTIONS(2037), 10, + ACTIONS(2215), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109656,7 +110771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2035), 24, + ACTIONS(2213), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109681,14 +110796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [35980] = 5, + [36669] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1139), 1, sym_text_interpolation, - ACTIONS(2225), 10, + ACTIONS(2255), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109699,7 +110814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2223), 24, + ACTIONS(2253), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109724,14 +110839,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36028] = 5, + [36717] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1140), 1, sym_text_interpolation, - ACTIONS(2233), 10, + ACTIONS(2219), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109742,7 +110857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2231), 24, + ACTIONS(2217), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109767,14 +110882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36076] = 5, + [36765] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1141), 1, sym_text_interpolation, - ACTIONS(2057), 10, + ACTIONS(2239), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109785,7 +110900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2055), 24, + ACTIONS(2237), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109810,14 +110925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36124] = 5, + [36813] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, STATE(1142), 1, sym_text_interpolation, - ACTIONS(2015), 10, + ACTIONS(2207), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109828,7 +110943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2013), 24, + ACTIONS(2205), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109853,16 +110968,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36172] = 6, + [36861] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2448), 1, - aux_sym_binary_expression_token1, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(2243), 1, + sym_grit_metavariable, + ACTIONS(2586), 1, + sym_name, STATE(1143), 1, sym_text_interpolation, - ACTIONS(2015), 10, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(1675), 1, + sym__type, + STATE(1941), 1, + sym_const_element, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2635), 1, + sym__reserved_identifier, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1804), 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, + [36939] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(1144), 1, + sym_text_interpolation, + ACTIONS(2231), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109873,13 +111044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2013), 23, + ACTIONS(2229), 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, @@ -109897,14 +111069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36222] = 5, + [36987] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1144), 1, + STATE(1145), 1, sym_text_interpolation, - ACTIONS(2197), 10, + ACTIONS(2227), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109915,7 +111087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2195), 24, + ACTIONS(2225), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109940,14 +111112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36270] = 5, + [37035] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1145), 1, + STATE(1146), 1, sym_text_interpolation, - ACTIONS(2237), 10, + ACTIONS(2223), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -109958,7 +111130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2235), 24, + ACTIONS(2221), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -109983,14 +111155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36318] = 5, + [37083] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1146), 1, + STATE(1147), 1, sym_text_interpolation, - ACTIONS(2189), 10, + ACTIONS(2367), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110001,7 +111173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2187), 24, + ACTIONS(2365), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -110026,16 +111198,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36366] = 6, + [37131] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - STATE(1147), 1, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(2243), 1, + sym_grit_metavariable, + ACTIONS(2586), 1, + sym_name, + STATE(1148), 1, + sym_text_interpolation, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(1668), 1, + sym__type, + STATE(1919), 1, + sym_const_element, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2635), 1, + sym__reserved_identifier, + STATE(2697), 1, + sym_namespace_name, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1804), 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, + [37209] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(1149), 1, sym_text_interpolation, - ACTIONS(1761), 10, + ACTIONS(2283), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110046,14 +111274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 22, + ACTIONS(2281), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, @@ -110069,317 +111299,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [36415] = 21, + [37257] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1150), 1, + sym_text_interpolation, + ACTIONS(2375), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - STATE(1148), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(2324), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2373), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [36494] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_QMARK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - STATE(1149), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2470), 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(2294), 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, - [36573] = 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [37305] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_QMARK, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2456), 1, + ACTIONS(2548), 1, + anon_sym_QMARK, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - STATE(1150), 1, + STATE(1151), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2472), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(2290), 7, + ACTIONS(2361), 5, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [36652] = 21, + [37391] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1152), 1, + sym_text_interpolation, + ACTIONS(2165), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - STATE(1151), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 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_STAR, + anon_sym_SLASH, + ACTIONS(2163), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [36731] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2304), 1, - anon_sym_QMARK, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - STATE(1152), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2470), 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(2302), 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, - [36810] = 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [37439] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2482), 1, - anon_sym_PERCENT, STATE(1153), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2267), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110388,12 +111463,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 17, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2265), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, @@ -110405,25 +111486,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, - [36867] = 9, + anon_sym_PERCENT, + [37487] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2482), 1, - anon_sym_PERCENT, STATE(1154), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2275), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110432,12 +111506,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 19, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2273), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, @@ -110452,29 +111532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [36922] = 11, + anon_sym_PERCENT, + [37535] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, STATE(1155), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2191), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110483,12 +111549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 16, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2189), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, @@ -110500,46 +111572,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [36981] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [37583] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, STATE(1156), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1761), 5, + ACTIONS(2359), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 15, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2357), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, @@ -110549,358 +111613,278 @@ 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, - [37044] = 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [37631] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, STATE(1157), 1, sym_text_interpolation, - ACTIONS(1761), 2, + ACTIONS(2203), 10, + anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 11, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2201), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [37113] = 18, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2478), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2482), 1, anon_sym_PERCENT, + [37679] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1158), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2199), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2197), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [37186] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, anon_sym_CARET, - ACTIONS(2474), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2478), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2482), 1, anon_sym_PERCENT, + [37727] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1159), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(1084), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 9, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1082), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [37261] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_QMARK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, anon_sym_CARET, - ACTIONS(2474), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2478), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2482), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, + [37775] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1160), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2383), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2381), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [37342] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_QMARK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, anon_sym_CARET, - ACTIONS(2474), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2478), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2482), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, + [37823] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1161), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2315), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 5, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2313), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [37425] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_QMARK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2460), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 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(2464), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, anon_sym_CARET, - ACTIONS(2474), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [37871] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1162), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2343), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2341), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [37504] = 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, + anon_sym_PERCENT, + [37919] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, STATE(1163), 1, sym_text_interpolation, - ACTIONS(1761), 10, + ACTIONS(1088), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -110911,14 +111895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 22, + ACTIONS(1086), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, @@ -110934,77 +111920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [37553] = 19, + [37967] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(2488), 1, - sym_name, STATE(1164), 1, sym_text_interpolation, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(1627), 1, - sym__type, - STATE(1788), 1, - sym_const_element, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2522), 1, - sym__reserved_identifier, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1738), 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, - [37628] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2482), 1, - anon_sym_PERCENT, - STATE(1165), 1, - sym_text_interpolation, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 8, + ACTIONS(2387), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -111013,14 +111936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1759), 21, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2385), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, @@ -111035,658 +111962,608 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - [37681] = 17, + anon_sym_PERCENT, + [38015] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - STATE(1166), 1, + STATE(1165), 1, sym_text_interpolation, - ACTIONS(1761), 2, + ACTIONS(2271), 10, + anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 10, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2269), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [37752] = 15, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [38063] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2548), 1, + anon_sym_QMARK, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2474), 1, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, + anon_sym_AMP_AMP, + ACTIONS(2568), 1, + anon_sym_CARET, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - STATE(1167), 1, + STATE(1166), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1761), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(2472), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1759), 11, + ACTIONS(2461), 5, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [37819] = 24, + [38149] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1167), 1, + sym_text_interpolation, + ACTIONS(1654), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1168), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2296), 4, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1652), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - ACTIONS(2470), 4, + 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, - [37904] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [38197] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1168), 1, + sym_text_interpolation, + ACTIONS(2008), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 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(2006), 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(2462), 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(2464), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, anon_sym_CARET, - ACTIONS(2474), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2478), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2482), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, + [38245] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1169), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2379), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2306), 4, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2377), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - ACTIONS(2470), 4, + 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, - [37989] = 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [38293] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(2488), 1, - sym_name, STATE(1170), 1, sym_text_interpolation, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(1604), 1, - sym__type, - STATE(1810), 1, - sym_const_element, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2522), 1, - sym__reserved_identifier, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1738), 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, - [38064] = 21, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1761), 1, - anon_sym_QMARK, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2169), 10, anon_sym_AMP, - ACTIONS(2456), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(2460), 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(2167), 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(2462), 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(2464), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, anon_sym_CARET, - ACTIONS(2474), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2478), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2482), 1, anon_sym_PERCENT, + [38341] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1171), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2173), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1759), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 24, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [38143] = 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, + [38389] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, STATE(1172), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2472), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2310), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2470), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38228] = 24, + ACTIONS(2459), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [38475] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, STATE(1173), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2472), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2135), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2470), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38313] = 24, + ACTIONS(2449), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [38561] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1174), 1, + sym_text_interpolation, + ACTIONS(1664), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1174), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2322), 4, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1662), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - ACTIONS(2470), 4, + 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, - [38398] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [38609] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1175), 1, + sym_text_interpolation, + ACTIONS(2291), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1175), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2308), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2289), 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(2470), 4, + 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, - [38483] = 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [38657] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2488), 1, - sym_name, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2566), 1, + anon_sym_AMP_AMP, + ACTIONS(2568), 1, + anon_sym_CARET, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + ACTIONS(2592), 1, + anon_sym_EQ_GT, STATE(1176), 1, sym_text_interpolation, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(1631), 1, - sym__type, - STATE(1862), 1, - sym_const_element, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2522), 1, - sym__reserved_identifier, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1738), 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, - [38558] = 6, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2574), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2179), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_binary_expression_token1, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38745] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON, STATE(1177), 1, sym_text_interpolation, - ACTIONS(2053), 10, + ACTIONS(1660), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -111697,9 +112574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2051), 22, + ACTIONS(1658), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, aux_sym_binary_expression_token1, @@ -111720,16 +112599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [38607] = 6, + [38793] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON, STATE(1178), 1, sym_text_interpolation, - ACTIONS(2037), 10, + ACTIONS(2319), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -111740,9 +112617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2035), 22, + ACTIONS(2317), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, aux_sym_binary_expression_token1, @@ -111763,954 +112642,884 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [38656] = 19, + [38841] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(2488), 1, - sym_name, STATE(1179), 1, sym_text_interpolation, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(1636), 1, - sym__type, - STATE(1893), 1, - sym_const_element, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2522), 1, - sym__reserved_identifier, - STATE(2603), 1, - sym_namespace_name, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1738), 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, - [38731] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2335), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - ACTIONS(2496), 1, - anon_sym_EQ_GT, - STATE(1180), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2215), 3, + ACTIONS(2333), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - ACTIONS(2472), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2470), 4, + 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, - [38818] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [38889] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1181), 1, + STATE(1180), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2472), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2318), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2470), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38903] = 24, + ACTIONS(2471), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, + aux_sym_binary_expression_token1, + [38975] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1181), 1, + sym_text_interpolation, + ACTIONS(2251), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1182), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2316), 4, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2249), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - ACTIONS(2470), 4, + 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, - [38988] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [39023] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2469), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2546), 1, + anon_sym_AMP, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1183), 1, + STATE(1182), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2472), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2314), 4, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - aux_sym_binary_expression_token1, - ACTIONS(2470), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39073] = 24, + ACTIONS(2467), 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, + [39103] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1183), 1, + sym_text_interpolation, + ACTIONS(2323), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1184), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2312), 4, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2321), 24, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, - ACTIONS(2470), 4, + 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, - [39158] = 26, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [39151] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + STATE(1184), 1, + sym_text_interpolation, + ACTIONS(1678), 10, anon_sym_AMP, - ACTIONS(2328), 1, anon_sym_QMARK, - ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2334), 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(1676), 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(2336), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, anon_sym_CARET, - ACTIONS(2350), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2354), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2358), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2498), 1, - anon_sym_COMMA, - ACTIONS(2500), 1, - anon_sym_EQ_GT, + [39199] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, STATE(1185), 1, sym_text_interpolation, - STATE(1949), 1, - aux_sym_match_condition_list_repeat1, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2307), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2348), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2305), 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, - [39246] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [39247] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + STATE(1186), 1, + sym_text_interpolation, + ACTIONS(2279), 10, anon_sym_AMP, - ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 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(2277), 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(2408), 1, + anon_sym_STAR_STAR, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, anon_sym_CARET, - STATE(1186), 1, - sym_text_interpolation, - ACTIONS(2384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2392), 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, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2420), 2, + anon_sym_DOT, + anon_sym_PERCENT, + [39295] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(1187), 1, + sym_text_interpolation, + ACTIONS(2303), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2502), 3, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2301), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2422), 4, + 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, - [39330] = 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [39343] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1188), 1, + sym_text_interpolation, + ACTIONS(2142), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 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(2140), 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(2462), 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(2464), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, anon_sym_CARET, - ACTIONS(2474), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2478), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2482), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - ACTIONS(2504), 1, - anon_sym_EQ_GT, - STATE(1187), 1, + [39391] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(1189), 1, sym_text_interpolation, - ACTIONS(2215), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2287), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2472), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2285), 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, - [39416] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(246), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(1188), 1, - sym_text_interpolation, - STATE(1288), 1, - sym_readonly_modifier, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(1926), 1, - sym_variable_name, - STATE(2233), 1, - sym__type, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1738), 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, - [39492] = 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [39439] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2506), 1, - anon_sym_EQ_GT, - STATE(1189), 1, + STATE(1190), 1, sym_text_interpolation, - ACTIONS(2215), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2332), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2457), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39578] = 24, + [39524] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2634), 1, + anon_sym_COLON, + STATE(1191), 1, + sym_text_interpolation, + ACTIONS(2271), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2269), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, anon_sym_STAR_STAR, - ACTIONS(2390), 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, - ACTIONS(2394), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2398), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, + [39573] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2616), 1, anon_sym_CARET, - STATE(1190), 1, + ACTIONS(2624), 1, + anon_sym_GT_EQ, + ACTIONS(2628), 1, + anon_sym_DOT, + ACTIONS(2632), 1, + anon_sym_PERCENT, + STATE(1192), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2618), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2508), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2422), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39662] = 25, + ACTIONS(2447), 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, + [39652] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2510), 1, - anon_sym_EQ_GT, - STATE(1191), 1, + STATE(1193), 1, sym_text_interpolation, - ACTIONS(2215), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2332), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39748] = 25, + ACTIONS(1869), 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, + [39731] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, + ACTIONS(2608), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, + ACTIONS(2610), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2514), 1, - anon_sym_COMMA, - STATE(1192), 1, + ACTIONS(2624), 1, + anon_sym_GT_EQ, + ACTIONS(2628), 1, + anon_sym_DOT, + ACTIONS(2632), 1, + anon_sym_PERCENT, + STATE(1194), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2618), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2512), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2388), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2451), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39834] = 24, + [39816] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + STATE(1195), 1, + sym_text_interpolation, + ACTIONS(1871), 10, anon_sym_AMP, - ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 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(1869), 22, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, anon_sym_CARET, - STATE(1193), 1, - sym_text_interpolation, - ACTIONS(2384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2516), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2422), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [39918] = 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [39865] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, ACTIONS(246), 1, aux_sym_readonly_modifier_token1, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1742), 1, + ACTIONS(1808), 1, anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - ACTIONS(1799), 1, + ACTIONS(1842), 1, anon_sym_DOLLAR, - STATE(1194), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1196), 1, sym_text_interpolation, - STATE(1262), 1, + STATE(1245), 1, sym_readonly_modifier, - STATE(1419), 1, + STATE(1461), 1, sym__types, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1944), 1, + STATE(2103), 1, sym_variable_name, - STATE(2288), 1, + STATE(2420), 1, sym__type, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(1469), 3, + STATE(1564), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -112723,7289 +113532,8901 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [39994] = 25, + [39944] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(1871), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2594), 1, + anon_sym_AMP, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2514), 1, - anon_sym_COMMA, - STATE(1195), 1, + ACTIONS(2624), 1, + anon_sym_GT_EQ, + ACTIONS(2628), 1, + anon_sym_DOT, + ACTIONS(2632), 1, + anon_sym_PERCENT, + STATE(1197), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2618), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2518), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2388), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40080] = 24, + ACTIONS(1869), 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, + [40023] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, + STATE(1198), 1, + sym_text_interpolation, + ACTIONS(2630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 8, anon_sym_AMP, - ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1869), 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, - ACTIONS(2408), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, anon_sym_CARET, - STATE(1196), 1, - sym_text_interpolation, - ACTIONS(2384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2392), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2520), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2388), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2422), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [40163] = 28, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2528), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2530), 1, - anon_sym_RBRACE, - ACTIONS(2532), 1, - aux_sym_final_modifier_token1, - ACTIONS(2534), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1197), 1, - sym_text_interpolation, - STATE(1205), 1, - aux_sym_declaration_list_repeat1, - STATE(1299), 1, - sym_final_modifier, - STATE(1325), 1, - sym_visibility_modifier, - STATE(1330), 1, - sym__modifier, - STATE(1352), 1, - sym_attribute_list, - STATE(1380), 1, - sym__const_declaration, - STATE(1382), 1, - sym__member_declaration, - STATE(1390), 1, - sym__class_const_declaration, - STATE(1803), 1, - sym__function_definition_header, - ACTIONS(2540), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1329), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1391), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40254] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [40076] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, - anon_sym_AMP_AMP, - ACTIONS(2342), 1, - anon_sym_CARET, - ACTIONS(2350), 1, - anon_sym_GT_EQ, - ACTIONS(2354), 1, - anon_sym_DOT, - ACTIONS(2358), 1, - anon_sym_PERCENT, - ACTIONS(2364), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2366), 1, + ACTIONS(2608), 1, aux_sym_binary_expression_token3, - ACTIONS(2368), 1, + ACTIONS(2610), 1, aux_sym_binary_expression_token4, - STATE(1198), 1, - sym_text_interpolation, - ACTIONS(2332), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2344), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2352), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2356), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2542), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2348), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2346), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [40337] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, - anon_sym_QMARK, - ACTIONS(2330), 1, - anon_sym_PIPE, - ACTIONS(2334), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, - anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2512), 1, - anon_sym_SEMI, - ACTIONS(2544), 1, - anon_sym_COMMA, STATE(1199), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2441), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40422] = 24, + [40161] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2452), 1, + STATE(1200), 1, + sym_text_interpolation, + ACTIONS(1871), 10, anon_sym_AMP, - ACTIONS(2454), 1, anon_sym_QMARK, - ACTIONS(2456), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1200), 1, - sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2546), 2, + ACTIONS(1869), 22, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_RPAREN, - ACTIONS(2472), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2470), 4, + 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, - [40505] = 24, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [40210] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(246), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1201), 1, + sym_text_interpolation, + STATE(1272), 1, + sym_readonly_modifier, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(2208), 1, + sym_variable_name, + STATE(2288), 1, + sym__type, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1804), 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, + [40289] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1871), 1, + anon_sym_QMARK, + ACTIONS(2594), 1, + anon_sym_AMP, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1201), 1, + STATE(1202), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2548), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40588] = 27, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2550), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2553), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2556), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2559), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2562), 1, - anon_sym_RBRACE, - ACTIONS(2564), 1, - aux_sym_final_modifier_token1, - ACTIONS(2567), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2570), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2573), 1, - sym_var_modifier, - ACTIONS(2579), 1, - anon_sym_POUND_LBRACK, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1299), 1, - sym_final_modifier, - STATE(1325), 1, - sym_visibility_modifier, - STATE(1330), 1, - sym__modifier, - STATE(1352), 1, - sym_attribute_list, - STATE(1380), 1, - sym__const_declaration, - STATE(1382), 1, - sym__member_declaration, - STATE(1390), 1, - sym__class_const_declaration, - STATE(1803), 1, - sym__function_definition_header, - STATE(1202), 2, - sym_text_interpolation, - aux_sym_declaration_list_repeat1, - ACTIONS(2576), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1329), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1391), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40677] = 24, + ACTIONS(1869), 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, + anon_sym_PIPE_PIPE, + [40364] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(1871), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2594), 1, + anon_sym_AMP, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2334), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, - anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, STATE(1203), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2582), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2348), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40760] = 25, + ACTIONS(1869), 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [40437] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - ACTIONS(2512), 1, - anon_sym_RPAREN, - ACTIONS(2584), 1, - anon_sym_COMMA, STATE(1204), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2461), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40845] = 28, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2528), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2532), 1, - aux_sym_final_modifier_token1, - ACTIONS(2534), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2586), 1, - anon_sym_RBRACE, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1202), 1, - aux_sym_declaration_list_repeat1, - STATE(1205), 1, - sym_text_interpolation, - STATE(1299), 1, - sym_final_modifier, - STATE(1325), 1, - sym_visibility_modifier, - STATE(1330), 1, - sym__modifier, - STATE(1352), 1, - sym_attribute_list, - STATE(1380), 1, - sym__const_declaration, - STATE(1382), 1, - sym__member_declaration, - STATE(1390), 1, - sym__class_const_declaration, - STATE(1803), 1, - sym__function_definition_header, - ACTIONS(2540), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1329), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1391), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [40936] = 24, + [40522] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - STATE(1206), 1, + STATE(1205), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2588), 2, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(2348), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41019] = 25, + ACTIONS(2443), 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, + [40601] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, - anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2590), 1, - anon_sym_EQ_GT, - ACTIONS(2592), 1, - anon_sym_RPAREN, - STATE(1207), 1, + STATE(1206), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(1871), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41104] = 25, + ACTIONS(1869), 11, + 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, + [40670] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2634), 1, + anon_sym_COLON, + STATE(1207), 1, + sym_text_interpolation, + ACTIONS(2387), 10, anon_sym_AMP, - ACTIONS(2328), 1, anon_sym_QMARK, - ACTIONS(2330), 1, anon_sym_PIPE, - ACTIONS(2334), 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(2385), 22, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, anon_sym_CARET, - ACTIONS(2350), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(2354), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2358), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2518), 1, - anon_sym_SEMI, - ACTIONS(2544), 1, - anon_sym_COMMA, + [40719] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2624), 1, + anon_sym_GT_EQ, + ACTIONS(2628), 1, + anon_sym_DOT, + ACTIONS(2632), 1, + anon_sym_PERCENT, STATE(1208), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [41189] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, + ACTIONS(1871), 5, anon_sym_AMP, - ACTIONS(2254), 1, anon_sym_QMARK, - ACTIONS(2256), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1869), 15, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, - anon_sym_STAR_STAR, - ACTIONS(2264), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_GT_EQ, - ACTIONS(2282), 1, - anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2590), 1, - anon_sym_EQ_GT, - ACTIONS(2594), 1, - anon_sym_RPAREN, - STATE(1209), 1, - sym_text_interpolation, - ACTIONS(2258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2272), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2276), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2274), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41274] = 24, + [40782] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, - anon_sym_QMARK, - ACTIONS(2404), 1, - anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, - STATE(1210), 1, + STATE(1209), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, + ACTIONS(1871), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2596), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2388), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(1869), 16, + 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, - [41357] = 25, + [40841] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2590), 1, - anon_sym_EQ_GT, - ACTIONS(2598), 1, - anon_sym_RPAREN, - STATE(1211), 1, + STATE(1210), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2459), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41442] = 24, + [40926] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, + STATE(1211), 1, + sym_text_interpolation, + ACTIONS(2600), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2630), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1871), 8, anon_sym_AMP, - ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1869), 19, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 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, + [40981] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2632), 1, + anon_sym_PERCENT, STATE(1212), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, + ACTIONS(1871), 8, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2600), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2388), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(1869), 17, + 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, - [41525] = 24, + anon_sym_DOT, + [41038] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, + ACTIONS(2608), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, + ACTIONS(2610), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2616), 1, anon_sym_CARET, + ACTIONS(2624), 1, + anon_sym_GT_EQ, + ACTIONS(2628), 1, + anon_sym_DOT, + ACTIONS(2632), 1, + anon_sym_PERCENT, STATE(1213), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2618), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2602), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2388), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2361), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41608] = 24, + [41123] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2594), 1, + anon_sym_AMP, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2616), 1, + anon_sym_CARET, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, - anon_sym_QMARK, - ACTIONS(2404), 1, - anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, STATE(1214), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(1871), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2618), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2604), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2388), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41691] = 24, + ACTIONS(1869), 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [41194] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2390), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2394), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2400), 1, - anon_sym_AMP, - ACTIONS(2402), 1, - anon_sym_QMARK, - ACTIONS(2404), 1, - anon_sym_PIPE, - ACTIONS(2406), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, - aux_sym_binary_expression_token2, - ACTIONS(2410), 1, - aux_sym_binary_expression_token3, - ACTIONS(2412), 1, - aux_sym_binary_expression_token4, - ACTIONS(2414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, - anon_sym_AMP_AMP, - ACTIONS(2418), 1, - anon_sym_CARET, STATE(1215), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2618), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2606), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2388), 3, + ACTIONS(1871), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41774] = 24, + ACTIONS(1869), 11, + 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, + [41261] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, STATE(1216), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2608), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41857] = 28, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2528), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2532), 1, - aux_sym_final_modifier_token1, - ACTIONS(2534), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2610), 1, - anon_sym_RBRACE, - STATE(646), 1, - aux_sym_property_declaration_repeat1, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1217), 1, - sym_text_interpolation, - STATE(1230), 1, - aux_sym_declaration_list_repeat1, - STATE(1299), 1, - sym_final_modifier, - STATE(1325), 1, - sym_visibility_modifier, - STATE(1330), 1, - sym__modifier, - STATE(1352), 1, - sym_attribute_list, - STATE(1380), 1, - sym__const_declaration, - STATE(1382), 1, - sym__member_declaration, - STATE(1390), 1, - sym__class_const_declaration, - STATE(1803), 1, - sym__function_definition_header, - ACTIONS(2540), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1329), 3, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - STATE(1391), 3, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [41948] = 24, + ACTIONS(1869), 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, + [41342] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1218), 1, + STATE(1217), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2612), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42031] = 24, + ACTIONS(1869), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token3, + [41425] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1219), 1, + STATE(1218), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2614), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2471), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42114] = 24, + [41510] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1220), 1, + STATE(1219), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2616), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42197] = 24, + ACTIONS(2435), 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, + [41589] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2469), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2594), 1, + anon_sym_AMP, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1221), 1, + STATE(1220), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2618), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42280] = 24, + ACTIONS(2467), 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, + [41668] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1222), 1, + STATE(1221), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2620), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2427), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42363] = 24, + [41753] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1223), 1, + STATE(1222), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2622), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2449), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42446] = 24, + [41838] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2439), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2594), 1, + anon_sym_AMP, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1224), 1, + STATE(1223), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2624), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42529] = 24, + ACTIONS(2437), 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, + [41917] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - STATE(1225), 1, + STATE(1224), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2626), 2, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(2276), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2477), 4, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42612] = 24, + [42002] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1226), 1, + ACTIONS(2636), 1, + anon_sym_EQ_GT, + STATE(1225), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2628), 2, + ACTIONS(2179), 3, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2472), 3, + aux_sym_binary_expression_token1, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42695] = 24, + [42089] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_QMARK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - STATE(1227), 1, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2638), 1, + anon_sym_EQ_GT, + STATE(1226), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2179), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2630), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42778] = 25, + [42175] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - ACTIONS(2518), 1, - anon_sym_RPAREN, ACTIONS(2584), 1, + anon_sym_PERCENT, + ACTIONS(2642), 1, anon_sym_COMMA, - STATE(1228), 1, + STATE(1227), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2472), 3, + ACTIONS(2640), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42863] = 28, + [42261] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, ACTIONS(316), 1, anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, + ACTIONS(2646), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2648), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2528), 1, + ACTIONS(2650), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2532), 1, + ACTIONS(2652), 1, + anon_sym_RBRACE, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2656), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2632), 1, - anon_sym_RBRACE, - STATE(646), 1, + STATE(668), 1, aux_sym_property_declaration_repeat1, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, - STATE(1202), 1, - aux_sym_declaration_list_repeat1, - STATE(1229), 1, + STATE(1228), 1, sym_text_interpolation, - STATE(1299), 1, + STATE(1230), 1, + aux_sym_declaration_list_repeat1, + STATE(1276), 1, sym_final_modifier, - STATE(1325), 1, + STATE(1367), 1, sym_visibility_modifier, - STATE(1330), 1, + STATE(1369), 1, sym__modifier, - STATE(1352), 1, + STATE(1392), 1, sym_attribute_list, - STATE(1380), 1, + STATE(1423), 1, sym__const_declaration, - STATE(1382), 1, - sym__member_declaration, - STATE(1390), 1, + STATE(1426), 1, sym__class_const_declaration, - STATE(1803), 1, + STATE(1437), 1, + sym__member_declaration, + STATE(1852), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1329), 3, + STATE(1370), 3, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - STATE(1391), 3, + STATE(1422), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [42954] = 28, + [42353] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, ACTIONS(316), 1, anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, + ACTIONS(2646), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2648), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2528), 1, + ACTIONS(2650), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2532), 1, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2656), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2634), 1, + ACTIONS(2662), 1, anon_sym_RBRACE, - STATE(646), 1, + STATE(668), 1, aux_sym_property_declaration_repeat1, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, - STATE(1202), 1, - aux_sym_declaration_list_repeat1, - STATE(1230), 1, + STATE(1229), 1, sym_text_interpolation, - STATE(1299), 1, + STATE(1233), 1, + aux_sym_declaration_list_repeat1, + STATE(1276), 1, sym_final_modifier, - STATE(1325), 1, + STATE(1367), 1, sym_visibility_modifier, - STATE(1330), 1, + STATE(1369), 1, sym__modifier, - STATE(1352), 1, + STATE(1392), 1, sym_attribute_list, - STATE(1380), 1, + STATE(1423), 1, sym__const_declaration, - STATE(1382), 1, - sym__member_declaration, - STATE(1390), 1, + STATE(1426), 1, sym__class_const_declaration, - STATE(1803), 1, + STATE(1437), 1, + sym__member_declaration, + STATE(1852), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1329), 3, + STATE(1370), 3, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - STATE(1391), 3, + STATE(1422), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [43045] = 28, + [42445] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, + ACTIONS(2664), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, + ACTIONS(2667), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2670), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2528), 1, + ACTIONS(2673), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2532), 1, + ACTIONS(2676), 1, + anon_sym_RBRACE, + ACTIONS(2678), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2681), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, + ACTIONS(2684), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2636), 1, - anon_sym_RBRACE, - STATE(646), 1, + ACTIONS(2693), 1, + anon_sym_POUND_LBRACK, + STATE(668), 1, aux_sym_property_declaration_repeat1, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, - STATE(1229), 1, - aux_sym_declaration_list_repeat1, - STATE(1231), 1, - sym_text_interpolation, - STATE(1299), 1, + STATE(1276), 1, sym_final_modifier, - STATE(1325), 1, + STATE(1367), 1, sym_visibility_modifier, - STATE(1330), 1, + STATE(1369), 1, sym__modifier, - STATE(1352), 1, + STATE(1392), 1, sym_attribute_list, - STATE(1380), 1, + STATE(1423), 1, sym__const_declaration, - STATE(1382), 1, - sym__member_declaration, - STATE(1390), 1, + STATE(1426), 1, sym__class_const_declaration, - STATE(1803), 1, + STATE(1437), 1, + sym__member_declaration, + STATE(1852), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2687), 2, + sym_var_modifier, + sym_grit_metavariable, + STATE(1230), 2, + sym_text_interpolation, + aux_sym_declaration_list_repeat1, + ACTIONS(2690), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1329), 3, + STATE(1370), 3, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - STATE(1391), 3, + STATE(1422), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [43136] = 24, + [42535] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1232), 1, + STATE(1231), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2638), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2696), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43219] = 24, + [42619] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_QMARK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - STATE(1233), 1, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2698), 1, + anon_sym_COMMA, + ACTIONS(2700), 1, + anon_sym_EQ_GT, + STATE(1232), 1, sym_text_interpolation, - ACTIONS(2458), 2, + STATE(2160), 1, + aux_sym_match_condition_list_repeat1, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2640), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43302] = 28, + [42707] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, ACTIONS(316), 1, anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, + ACTIONS(2646), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2648), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2528), 1, + ACTIONS(2650), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2532), 1, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2656), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2642), 1, + ACTIONS(2702), 1, anon_sym_RBRACE, - STATE(646), 1, + STATE(668), 1, aux_sym_property_declaration_repeat1, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, - STATE(1202), 1, + STATE(1230), 1, aux_sym_declaration_list_repeat1, - STATE(1234), 1, + STATE(1233), 1, sym_text_interpolation, - STATE(1299), 1, + STATE(1276), 1, sym_final_modifier, - STATE(1325), 1, + STATE(1367), 1, sym_visibility_modifier, - STATE(1330), 1, + STATE(1369), 1, sym__modifier, - STATE(1352), 1, + STATE(1392), 1, sym_attribute_list, - STATE(1380), 1, + STATE(1423), 1, sym__const_declaration, - STATE(1382), 1, - sym__member_declaration, - STATE(1390), 1, + STATE(1426), 1, sym__class_const_declaration, - STATE(1803), 1, + STATE(1437), 1, + sym__member_declaration, + STATE(1852), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1329), 3, + STATE(1370), 3, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - STATE(1391), 3, + STATE(1422), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [43393] = 25, + [42799] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2590), 1, + ACTIONS(2704), 1, anon_sym_EQ_GT, - ACTIONS(2644), 1, - anon_sym_RPAREN, - STATE(1235), 1, + STATE(1234), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2179), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43478] = 24, + [42885] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_QMARK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, - anon_sym_CARET, - ACTIONS(2474), 1, - anon_sym_GT_EQ, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2646), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2648), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2650), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2654), 1, + aux_sym_final_modifier_token1, + ACTIONS(2656), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2706), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1228), 1, + aux_sym_declaration_list_repeat1, + STATE(1235), 1, + sym_text_interpolation, + STATE(1276), 1, + sym_final_modifier, + STATE(1367), 1, + sym_visibility_modifier, + STATE(1369), 1, + sym__modifier, + STATE(1392), 1, + sym_attribute_list, + STATE(1423), 1, + sym__const_declaration, + STATE(1426), 1, + sym__class_const_declaration, + STATE(1437), 1, + sym__member_declaration, + STATE(1852), 1, + sym__function_definition_header, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1370), 3, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + STATE(1422), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [42977] = 28, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2646), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2648), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2650), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2654), 1, + aux_sym_final_modifier_token1, + ACTIONS(2656), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2708), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, STATE(1236), 1, sym_text_interpolation, - ACTIONS(2458), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2468), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2476), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2480), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2646), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(2470), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [43561] = 24, + STATE(1241), 1, + aux_sym_declaration_list_repeat1, + STATE(1276), 1, + sym_final_modifier, + STATE(1367), 1, + sym_visibility_modifier, + STATE(1369), 1, + sym__modifier, + STATE(1392), 1, + sym_attribute_list, + STATE(1423), 1, + sym__const_declaration, + STATE(1426), 1, + sym__class_const_declaration, + STATE(1437), 1, + sym__member_declaration, + STATE(1852), 1, + sym__function_definition_header, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1370), 3, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + STATE(1422), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [43069] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2646), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2648), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2650), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2654), 1, + aux_sym_final_modifier_token1, + ACTIONS(2656), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2710), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1230), 1, + aux_sym_declaration_list_repeat1, + STATE(1237), 1, + sym_text_interpolation, + STATE(1276), 1, + sym_final_modifier, + STATE(1367), 1, + sym_visibility_modifier, + STATE(1369), 1, + sym__modifier, + STATE(1392), 1, + sym_attribute_list, + STATE(1423), 1, + sym__const_declaration, + STATE(1426), 1, + sym__class_const_declaration, + STATE(1437), 1, + sym__member_declaration, + STATE(1852), 1, + sym__function_definition_header, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1370), 3, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + STATE(1422), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [43161] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_QMARK, - ACTIONS(2456), 1, - anon_sym_PIPE, - ACTIONS(2460), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, - anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - STATE(1237), 1, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2712), 1, + anon_sym_EQ_GT, + STATE(1238), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2179), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2648), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43644] = 24, + [43247] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, + ACTIONS(2560), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, + ACTIONS(2562), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2568), 1, anon_sym_CARET, - STATE(1238), 1, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + ACTIONS(2642), 1, + anon_sym_COMMA, + STATE(1239), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2650), 2, + ACTIONS(2714), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(2388), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43727] = 24, + [43333] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1239), 1, + STATE(1240), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2652), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2716), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43810] = 28, + [43417] = 28, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, ACTIONS(316), 1, anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, + ACTIONS(2646), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2648), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2528), 1, + ACTIONS(2650), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2532), 1, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2656), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, + ACTIONS(2718), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1230), 1, + aux_sym_declaration_list_repeat1, + STATE(1241), 1, + sym_text_interpolation, + STATE(1276), 1, + sym_final_modifier, + STATE(1367), 1, + sym_visibility_modifier, + STATE(1369), 1, + sym__modifier, + STATE(1392), 1, + sym_attribute_list, + STATE(1423), 1, + sym__const_declaration, + STATE(1426), 1, + sym__class_const_declaration, + STATE(1437), 1, + sym__member_declaration, + STATE(1852), 1, + sym__function_definition_header, + ACTIONS(2658), 2, sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1370), 3, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + STATE(1422), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [43509] = 28, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2646), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2648), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2650), 1, + aux_sym_namespace_use_declaration_token3, ACTIONS(2654), 1, + aux_sym_final_modifier_token1, + ACTIONS(2656), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2720), 1, anon_sym_RBRACE, - STATE(646), 1, + STATE(668), 1, aux_sym_property_declaration_repeat1, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, - STATE(1234), 1, + STATE(1237), 1, aux_sym_declaration_list_repeat1, - STATE(1240), 1, + STATE(1242), 1, sym_text_interpolation, - STATE(1299), 1, + STATE(1276), 1, sym_final_modifier, - STATE(1325), 1, + STATE(1367), 1, sym_visibility_modifier, - STATE(1330), 1, + STATE(1369), 1, sym__modifier, - STATE(1352), 1, + STATE(1392), 1, sym_attribute_list, - STATE(1380), 1, + STATE(1423), 1, sym__const_declaration, - STATE(1382), 1, - sym__member_declaration, - STATE(1390), 1, + STATE(1426), 1, sym__class_const_declaration, - STATE(1803), 1, + STATE(1437), 1, + sym__member_declaration, + STATE(1852), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1329), 3, + STATE(1370), 3, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - STATE(1391), 3, + STATE(1422), 3, sym_property_declaration, sym_method_declaration, sym_use_declaration, - [43901] = 24, + [43601] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_STAR_STAR, - ACTIONS(2390), 1, - anon_sym_GT_EQ, - ACTIONS(2394), 1, - anon_sym_DOT, - ACTIONS(2398), 1, - anon_sym_PERCENT, - ACTIONS(2400), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2402), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2404), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2406), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2408), 1, + ACTIONS(2556), 1, + anon_sym_STAR_STAR, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - ACTIONS(2410), 1, + ACTIONS(2560), 1, aux_sym_binary_expression_token3, - ACTIONS(2412), 1, + ACTIONS(2562), 1, aux_sym_binary_expression_token4, - ACTIONS(2414), 1, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2416), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2418), 1, + ACTIONS(2568), 1, anon_sym_CARET, - STATE(1241), 1, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1243), 1, sym_text_interpolation, - ACTIONS(2384), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2392), 2, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2396), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2420), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2656), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2388), 3, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2422), 4, - anon_sym_LT_GT, + ACTIONS(2722), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(2572), 4, + anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43984] = 24, + [43685] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1242), 1, + STATE(1244), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2658), 2, + ACTIONS(2724), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44067] = 24, + [43768] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1245), 1, + sym_text_interpolation, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(2217), 1, + sym_variable_name, + STATE(2279), 1, + sym__type, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1804), 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, + [43841] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1243), 1, + STATE(1246), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2660), 2, + ACTIONS(2726), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44150] = 24, + [43924] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_STAR_STAR, - ACTIONS(2452), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2456), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2460), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2462), 1, + ACTIONS(2604), 1, + anon_sym_STAR_STAR, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2464), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2466), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2474), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2478), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2484), 1, - aux_sym_binary_expression_token2, - ACTIONS(2486), 1, - aux_sym_binary_expression_token4, - ACTIONS(2492), 1, - aux_sym_binary_expression_token3, - STATE(1244), 1, + STATE(1247), 1, sym_text_interpolation, - ACTIONS(2458), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2468), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2476), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2480), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2662), 2, + ACTIONS(2728), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2472), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2470), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44233] = 24, + [44007] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2664), 1, - anon_sym_RBRACE, - STATE(1245), 1, + STATE(1248), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2730), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44315] = 24, + [44090] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2666), 1, - anon_sym_COLON, - STATE(1246), 1, + ACTIONS(2732), 1, + anon_sym_EQ_GT, + ACTIONS(2734), 1, + anon_sym_RPAREN, + STATE(1249), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44397] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(224), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1596), 1, - sym_comment, - STATE(1247), 1, - sym_text_interpolation, - STATE(1401), 1, - sym__const_declaration, - STATE(2582), 1, - sym_visibility_modifier, - ACTIONS(248), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - ACTIONS(2670), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2668), 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, - [44449] = 24, + [44175] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2672), 1, - anon_sym_RBRACE, - STATE(1248), 1, + STATE(1250), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2736), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44531] = 24, + [44258] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2674), 1, - anon_sym_RBRACE, - STATE(1249), 1, + STATE(1251), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2738), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44613] = 24, + [44341] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2676), 1, - anon_sym_EQ_GT, - STATE(1250), 1, + STATE(1252), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2740), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44695] = 24, + [44424] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2678), 1, - anon_sym_RPAREN, - STATE(1251), 1, + STATE(1253), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2742), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44777] = 24, + [44507] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2680), 1, - anon_sym_RBRACK, - STATE(1252), 1, + STATE(1254), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44859] = 24, + [44590] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2682), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1253), 1, + ACTIONS(2714), 1, + anon_sym_RPAREN, + ACTIONS(2746), 1, + anon_sym_COMMA, + STATE(1255), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44941] = 24, + [44675] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2684), 1, - anon_sym_RBRACE, - STATE(1254), 1, + STATE(1256), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2748), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45023] = 24, + [44758] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2686), 1, - anon_sym_RBRACE, - STATE(1255), 1, + STATE(1257), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2750), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45105] = 24, + [44841] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2688), 1, - anon_sym_RBRACE, - STATE(1256), 1, + STATE(1258), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2752), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45187] = 24, + [44924] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2690), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1257), 1, + STATE(1259), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2754), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45269] = 24, + [45007] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2558), 1, + aux_sym_binary_expression_token2, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2684), 1, - anon_sym_RBRACK, - STATE(1258), 1, + STATE(1260), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2756), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45351] = 24, + [45090] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, - ACTIONS(2692), 1, - anon_sym_RBRACE, - STATE(1259), 1, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1261), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2758), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45433] = 24, + [45173] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, - ACTIONS(2694), 1, - anon_sym_RBRACE, - STATE(1260), 1, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1262), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2760), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45515] = 24, + [45256] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2696), 1, - anon_sym_RBRACE, - STATE(1261), 1, + ACTIONS(2732), 1, + anon_sym_EQ_GT, + ACTIONS(2762), 1, + anon_sym_RPAREN, + STATE(1263), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45597] = 18, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, - anon_sym_QMARK, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(1262), 1, - sym_text_interpolation, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(2159), 1, - sym_variable_name, - STATE(2216), 1, - sym__type, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1738), 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, - [45667] = 24, + [45341] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2698), 1, - anon_sym_RBRACE, - STATE(1263), 1, + STATE(1264), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2764), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45749] = 24, + [45424] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, - ACTIONS(2700), 1, - anon_sym_RBRACE, - STATE(1264), 1, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + STATE(1265), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2766), 2, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45831] = 24, + [45507] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2568), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2576), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2580), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2584), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2702), 1, - anon_sym_RBRACE, - STATE(1265), 1, + STATE(1266), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2570), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2578), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2582), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2768), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2574), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2572), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45913] = 24, + [45590] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2704), 1, - anon_sym_RBRACE, - STATE(1266), 1, + ACTIONS(2732), 1, + anon_sym_EQ_GT, + ACTIONS(2770), 1, + anon_sym_RPAREN, + STATE(1267), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45995] = 24, + [45675] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2706), 1, - anon_sym_RBRACE, - STATE(1267), 1, + ACTIONS(2640), 1, + anon_sym_RPAREN, + ACTIONS(2746), 1, + anon_sym_COMMA, + STATE(1268), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46077] = 24, + [45760] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2546), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2548), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2554), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2556), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2558), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2560), 1, + aux_sym_binary_expression_token3, + ACTIONS(2562), 1, + aux_sym_binary_expression_token4, + ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2566), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2568), 1, + anon_sym_CARET, + ACTIONS(2576), 1, + anon_sym_GT_EQ, + ACTIONS(2580), 1, + anon_sym_DOT, + ACTIONS(2584), 1, + anon_sym_PERCENT, + STATE(1269), 1, + sym_text_interpolation, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2570), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2578), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2582), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2772), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2574), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2572), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [45843] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, - ACTIONS(2708), 1, - anon_sym_RBRACE, - STATE(1268), 1, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2714), 1, + anon_sym_SEMI, + ACTIONS(2774), 1, + anon_sym_COMMA, + STATE(1270), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46159] = 24, + [45928] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2710), 1, - anon_sym_COLON, - STATE(1269), 1, + STATE(1271), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2776), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46241] = 24, + [46011] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_QMARK, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1272), 1, + sym_text_interpolation, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(2114), 1, + sym_variable_name, + STATE(2495), 1, + sym__type, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1804), 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, + [46084] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2712), 1, - anon_sym_RBRACE, - STATE(1270), 1, + STATE(1273), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2778), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46323] = 24, + [46167] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_AMP, - ACTIONS(2328), 1, - anon_sym_QMARK, - ACTIONS(2330), 1, - anon_sym_PIPE, - ACTIONS(2334), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, - anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, aux_sym_binary_expression_token2, - ACTIONS(2366), 1, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - ACTIONS(2368), 1, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, - ACTIONS(2714), 1, - anon_sym_RBRACK, - STATE(1271), 1, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2640), 1, + anon_sym_SEMI, + ACTIONS(2774), 1, + anon_sym_COMMA, + STATE(1274), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46405] = 24, + [46252] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2716), 1, - anon_sym_RBRACE, - STATE(1272), 1, + STATE(1275), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2780), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46487] = 24, + [46335] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(224), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(1656), 1, + sym_comment, + STATE(1276), 1, + sym_text_interpolation, + STATE(1425), 1, + sym__const_declaration, + STATE(2693), 1, + sym_visibility_modifier, + ACTIONS(248), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + ACTIONS(2784), 4, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym_grit_metavariable, + ACTIONS(2782), 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, + [46388] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2718), 1, - anon_sym_RBRACE, - STATE(1273), 1, + STATE(1277), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2786), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46569] = 24, + [46471] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2714), 1, - anon_sym_RBRACE, - STATE(1274), 1, + STATE(1278), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2788), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46651] = 24, + [46554] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2720), 1, - anon_sym_RBRACE, - STATE(1275), 1, + ACTIONS(2732), 1, + anon_sym_EQ_GT, + ACTIONS(2790), 1, + anon_sym_RPAREN, + STATE(1279), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46733] = 24, + [46639] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2722), 1, - anon_sym_RBRACE, - STATE(1276), 1, + STATE(1280), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2792), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46815] = 24, + [46722] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(224), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(1656), 1, + sym_comment, + STATE(1281), 1, + sym_text_interpolation, + STATE(1441), 1, + sym__const_declaration, + STATE(2693), 1, + sym_visibility_modifier, + ACTIONS(248), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + ACTIONS(2784), 4, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym_grit_metavariable, + ACTIONS(2782), 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, + [46775] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2724), 1, - anon_sym_RBRACE, - STATE(1277), 1, + STATE(1282), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2794), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46897] = 24, + [46858] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2724), 1, - anon_sym_RBRACK, - STATE(1278), 1, + STATE(1283), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2796), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46979] = 24, + [46941] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2726), 1, - anon_sym_COLON, - STATE(1279), 1, + STATE(1284), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2798), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47061] = 24, + [47024] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2728), 1, - anon_sym_RPAREN, - STATE(1280), 1, + STATE(1285), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2800), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47143] = 24, + [47107] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2606), 1, + aux_sym_binary_expression_token2, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, - aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2708), 1, - anon_sym_RBRACK, - STATE(1281), 1, + STATE(1286), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2802), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47225] = 24, + [47190] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2594), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2596), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2598), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2602), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2606), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2608), 1, + aux_sym_binary_expression_token3, + ACTIONS(2610), 1, + aux_sym_binary_expression_token4, + ACTIONS(2612), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2614), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2616), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2624), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2628), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2632), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, - aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2680), 1, - anon_sym_RBRACE, - STATE(1282), 1, + STATE(1287), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2600), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2618), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2626), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2630), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2804), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2622), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2620), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47307] = 24, + [47273] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2730), 1, + ACTIONS(2806), 1, anon_sym_RBRACE, - STATE(1283), 1, + STATE(1288), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47389] = 24, + [47355] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2732), 1, - anon_sym_RBRACE, - STATE(1284), 1, + ACTIONS(2808), 1, + anon_sym_EQ_GT, + STATE(1289), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47471] = 24, + [47437] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2734), 1, + ACTIONS(2810), 1, anon_sym_RBRACE, - STATE(1285), 1, + STATE(1290), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47553] = 24, + [47519] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2736), 1, + ACTIONS(2812), 1, anon_sym_RBRACE, - STATE(1286), 1, + STATE(1291), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47635] = 24, + [47601] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2738), 1, - anon_sym_COLON, - STATE(1287), 1, + ACTIONS(2814), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1292), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47717] = 18, + [47683] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(1288), 1, - sym_text_interpolation, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(1977), 1, - sym_variable_name, - STATE(2324), 1, - sym__type, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1738), 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, - [47787] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2740), 1, + ACTIONS(2816), 1, anon_sym_RBRACE, - STATE(1289), 1, + STATE(1293), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47869] = 24, + [47765] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2742), 1, - anon_sym_RBRACE, - STATE(1290), 1, + ACTIONS(2818), 1, + anon_sym_RPAREN, + STATE(1294), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47951] = 24, + [47847] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2328), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2330), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2334), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2336), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2338), 1, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2340), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2342), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2350), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2354), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2358), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2364), 1, - aux_sym_binary_expression_token2, - ACTIONS(2366), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2368), 1, - aux_sym_binary_expression_token4, - ACTIONS(2742), 1, - anon_sym_RBRACK, - STATE(1291), 1, + ACTIONS(2820), 1, + anon_sym_RBRACE, + STATE(1295), 1, sym_text_interpolation, - ACTIONS(2332), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2344), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2356), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2348), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2346), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48033] = 24, + [47929] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2744), 1, + ACTIONS(2822), 1, anon_sym_RBRACE, - STATE(1292), 1, + STATE(1296), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48115] = 24, + [48011] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2746), 1, + ACTIONS(2824), 1, anon_sym_RBRACE, - STATE(1293), 1, + STATE(1297), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48197] = 24, + [48093] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(1798), 1, + sym_name, + ACTIONS(1808), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + ACTIONS(2826), 1, + sym_bottom_type, + STATE(1298), 1, + sym_text_interpolation, + STATE(1461), 1, + sym__types, + STATE(1473), 1, + sym_qualified_name, + STATE(2379), 1, + sym__type, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + STATE(1472), 3, + sym_named_type, + sym_optional_type, + sym_primitive_type, + STATE(1564), 3, + sym_union_type, + sym_intersection_type, + sym_disjunctive_normal_form_type, + ACTIONS(1804), 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, + [48163] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, - ACTIONS(2748), 1, - anon_sym_RPAREN, - STATE(1294), 1, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2828), 1, + anon_sym_RBRACK, + STATE(1299), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48279] = 24, + [48245] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2750), 1, + ACTIONS(2830), 1, anon_sym_RPAREN, - STATE(1295), 1, + STATE(1300), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48361] = 24, + [48327] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2752), 1, + ACTIONS(2832), 1, anon_sym_RBRACE, - STATE(1296), 1, + STATE(1301), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48443] = 24, + [48409] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2754), 1, - anon_sym_RPAREN, - STATE(1297), 1, + ACTIONS(2834), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1302), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48525] = 24, + [48491] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2756), 1, + ACTIONS(2836), 1, anon_sym_RBRACE, - STATE(1298), 1, + STATE(1303), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48607] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(224), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(1596), 1, - sym_comment, - STATE(1299), 1, - sym_text_interpolation, - STATE(1414), 1, - sym__const_declaration, - STATE(2582), 1, - sym_visibility_modifier, - ACTIONS(248), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - ACTIONS(2670), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2668), 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, - [48659] = 24, + [48573] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2758), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1300), 1, + ACTIONS(2838), 1, + anon_sym_RBRACE, + STATE(1304), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48741] = 24, + [48655] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2760), 1, + ACTIONS(2828), 1, anon_sym_RBRACE, - STATE(1301), 1, + STATE(1305), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48823] = 24, + [48737] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2762), 1, + ACTIONS(2840), 1, anon_sym_RBRACE, - STATE(1302), 1, + STATE(1306), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48905] = 24, + [48819] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2764), 1, + ACTIONS(2842), 1, anon_sym_RBRACE, - STATE(1303), 1, + STATE(1307), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48987] = 24, + [48901] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2766), 1, + ACTIONS(2844), 1, anon_sym_RBRACE, - STATE(1304), 1, + STATE(1308), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49069] = 24, + [48983] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2768), 1, + ACTIONS(2846), 1, anon_sym_RBRACE, - STATE(1305), 1, + STATE(1309), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49151] = 24, + [49065] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2646), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2648), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2654), 1, + aux_sym_final_modifier_token1, + ACTIONS(2656), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2848), 1, + anon_sym_RBRACE, + ACTIONS(2850), 1, + aux_sym_enum_case_token1, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1310), 1, + sym_text_interpolation, + STATE(1317), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1369), 1, + sym__modifier, + STATE(1393), 1, + sym_attribute_list, + STATE(1394), 1, + aux_sym_property_declaration_repeat1, + STATE(1421), 1, + sym__enum_member_declaration, + STATE(1852), 1, + sym__function_definition_header, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1420), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1370), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [49147] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2770), 1, + ACTIONS(2852), 1, anon_sym_RBRACE, - STATE(1306), 1, + STATE(1311), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49233] = 24, + [49229] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2772), 1, + ACTIONS(2854), 1, anon_sym_RBRACE, - STATE(1307), 1, + STATE(1312), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49315] = 24, + [49311] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2646), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2648), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2654), 1, + aux_sym_final_modifier_token1, + ACTIONS(2656), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2850), 1, + aux_sym_enum_case_token1, + ACTIONS(2856), 1, + anon_sym_RBRACE, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1310), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1313), 1, + sym_text_interpolation, + STATE(1369), 1, + sym__modifier, + STATE(1393), 1, + sym_attribute_list, + STATE(1394), 1, + aux_sym_property_declaration_repeat1, + STATE(1421), 1, + sym__enum_member_declaration, + STATE(1852), 1, + sym__function_definition_header, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1420), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1370), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [49393] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2774), 1, - anon_sym_EQ_GT, - STATE(1308), 1, + ACTIONS(2858), 1, + anon_sym_RBRACE, + STATE(1314), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49397] = 24, + [49475] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_QMARK, - ACTIONS(2256), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2479), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, - aux_sym_binary_expression_token2, - ACTIONS(2266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, - anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2493), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2497), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2501), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, + ACTIONS(2513), 1, aux_sym_binary_expression_token4, - ACTIONS(2776), 1, - anon_sym_RBRACE, - STATE(1309), 1, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2860), 1, + anon_sym_RBRACK, + STATE(1315), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2487), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2495), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2499), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2491), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2489), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49479] = 24, + [49557] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2778), 1, + ACTIONS(2862), 1, anon_sym_RBRACE, - STATE(1310), 1, + STATE(1316), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49561] = 24, + [49639] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2864), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2867), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2870), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2873), 1, + anon_sym_RBRACE, + ACTIONS(2875), 1, + aux_sym_enum_case_token1, + ACTIONS(2878), 1, + aux_sym_final_modifier_token1, + ACTIONS(2881), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2884), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2893), 1, + anon_sym_POUND_LBRACK, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1369), 1, + sym__modifier, + STATE(1393), 1, + sym_attribute_list, + STATE(1394), 1, + aux_sym_property_declaration_repeat1, + STATE(1421), 1, + sym__enum_member_declaration, + STATE(1852), 1, + sym__function_definition_header, + ACTIONS(2887), 2, + sym_var_modifier, + sym_grit_metavariable, + STATE(1317), 2, + sym_text_interpolation, + aux_sym_enum_declaration_list_repeat1, + ACTIONS(2890), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1420), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1370), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [49719] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2646), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2648), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2654), 1, + aux_sym_final_modifier_token1, + ACTIONS(2656), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(2850), 1, + aux_sym_enum_case_token1, + ACTIONS(2896), 1, + anon_sym_RBRACE, + STATE(989), 1, + aux_sym_attribute_list_repeat1, + STATE(1040), 1, + sym_attribute_group, + STATE(1317), 1, + aux_sym_enum_declaration_list_repeat1, + STATE(1318), 1, + sym_text_interpolation, + STATE(1369), 1, + sym__modifier, + STATE(1393), 1, + sym_attribute_list, + STATE(1394), 1, + aux_sym_property_declaration_repeat1, + STATE(1421), 1, + sym__enum_member_declaration, + STATE(1852), 1, + sym__function_definition_header, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1420), 3, + sym_enum_case, + sym_method_declaration, + sym_use_declaration, + STATE(1370), 5, + sym_final_modifier, + sym_abstract_modifier, + sym_readonly_modifier, + sym_static_modifier, + sym_visibility_modifier, + [49801] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2780), 1, - anon_sym_RPAREN, - STATE(1311), 1, + ACTIONS(2898), 1, + anon_sym_RBRACE, + STATE(1319), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49643] = 24, + [49883] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2782), 1, - anon_sym_RBRACE, - STATE(1312), 1, + ACTIONS(2900), 1, + anon_sym_COLON, + STATE(1320), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49725] = 24, + [49965] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2784), 1, - anon_sym_RBRACE, - STATE(1313), 1, + ACTIONS(2902), 1, + anon_sym_RPAREN, + STATE(1321), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49807] = 24, + [50047] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2786), 1, - anon_sym_EQ_GT, - STATE(1314), 1, + ACTIONS(2904), 1, + anon_sym_RBRACE, + STATE(1322), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49889] = 24, + [50129] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2788), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1315), 1, + ACTIONS(2906), 1, + anon_sym_RBRACE, + STATE(1323), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49971] = 24, + [50211] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2252), 1, + ACTIONS(2389), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2256), 1, + ACTIONS(2393), 1, anon_sym_PIPE, - ACTIONS(2260), 1, + ACTIONS(2397), 1, anon_sym_QMARK_QMARK, - ACTIONS(2262), 1, + ACTIONS(2399), 1, anon_sym_STAR_STAR, - ACTIONS(2264), 1, + ACTIONS(2401), 1, aux_sym_binary_expression_token2, - ACTIONS(2266), 1, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, anon_sym_PIPE_PIPE, - ACTIONS(2268), 1, + ACTIONS(2407), 1, anon_sym_AMP_AMP, - ACTIONS(2270), 1, + ACTIONS(2409), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2417), 1, anon_sym_GT_EQ, - ACTIONS(2282), 1, + ACTIONS(2421), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(2425), 1, anon_sym_PERCENT, - ACTIONS(2298), 1, + ACTIONS(2429), 1, aux_sym_binary_expression_token3, - ACTIONS(2300), 1, - aux_sym_binary_expression_token4, - ACTIONS(2790), 1, + ACTIONS(2908), 1, anon_sym_RBRACE, - STATE(1316), 1, + STATE(1324), 1, sym_text_interpolation, - ACTIONS(2258), 2, + ACTIONS(2395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2272), 2, + ACTIONS(2411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2280), 2, + ACTIONS(2419), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2423), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2276), 3, + ACTIONS(2415), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(2274), 4, + ACTIONS(2413), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [50053] = 24, + [50293] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, + ACTIONS(2912), 1, + anon_sym_DOLLAR, + STATE(1325), 1, + sym_text_interpolation, + ACTIONS(2910), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2784), 3, + anon_sym_BSLASH, + anon_sym_LPAREN, + sym_grit_metavariable, + ACTIONS(2782), 24, aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, + aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2532), 1, + anon_sym_string, + anon_sym_int, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, sym_var_modifier, - ACTIONS(2792), 1, - anon_sym_RBRACE, - ACTIONS(2794), 1, - aux_sym_enum_case_token1, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1317), 1, - sym_text_interpolation, - STATE(1318), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1330), 1, - sym__modifier, - STATE(1353), 1, - sym_attribute_list, - STATE(1355), 1, - aux_sym_property_declaration_repeat1, - STATE(1397), 1, - sym__enum_member_declaration, - STATE(1803), 1, - sym__function_definition_header, - ACTIONS(2540), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1398), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1329), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50134] = 24, + 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, + [50341] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2915), 1, + anon_sym_RBRACE, + STATE(1326), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50423] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2917), 1, + anon_sym_EQ_GT, + STATE(1327), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50505] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, + aux_sym_binary_expression_token3, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2908), 1, + anon_sym_RBRACK, + STATE(1328), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50587] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2919), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1329), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50669] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2921), 1, + anon_sym_RBRACE, + STATE(1330), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50751] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2923), 1, + anon_sym_RBRACE, + STATE(1331), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50833] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2925), 1, + anon_sym_RBRACE, + STATE(1332), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50915] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2927), 1, + anon_sym_RBRACE, + STATE(1333), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [50997] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, + aux_sym_binary_expression_token3, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2929), 1, + anon_sym_RBRACK, + STATE(1334), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51079] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2931), 1, + anon_sym_RBRACE, + STATE(1335), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51161] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2933), 1, + anon_sym_RBRACE, + STATE(1336), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51243] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2860), 1, + anon_sym_RBRACE, + STATE(1337), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51325] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2935), 1, + anon_sym_RBRACE, + STATE(1338), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51407] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2937), 1, + anon_sym_RBRACE, + STATE(1339), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51489] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2939), 1, + anon_sym_RPAREN, + STATE(1340), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51571] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2941), 1, + anon_sym_RBRACE, + STATE(1341), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51653] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2943), 1, + anon_sym_COLON, + STATE(1342), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51735] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2945), 1, + anon_sym_RPAREN, + STATE(1343), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51817] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2947), 1, + anon_sym_RBRACE, + STATE(1344), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51899] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2949), 1, + anon_sym_COLON, + STATE(1345), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [51981] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2951), 1, + anon_sym_RBRACE, + STATE(1346), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52063] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, ACTIONS(316), 1, anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, + ACTIONS(2646), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2648), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2532), 1, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2656), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2794), 1, + ACTIONS(2850), 1, aux_sym_enum_case_token1, - ACTIONS(2796), 1, + ACTIONS(2953), 1, anon_sym_RBRACE, - STATE(978), 1, + STATE(989), 1, aux_sym_attribute_list_repeat1, - STATE(1034), 1, + STATE(1040), 1, sym_attribute_group, STATE(1318), 1, - sym_text_interpolation, - STATE(1324), 1, aux_sym_enum_declaration_list_repeat1, - STATE(1330), 1, + STATE(1347), 1, + sym_text_interpolation, + STATE(1369), 1, sym__modifier, - STATE(1353), 1, + STATE(1393), 1, sym_attribute_list, - STATE(1355), 1, + STATE(1394), 1, aux_sym_property_declaration_repeat1, - STATE(1397), 1, + STATE(1421), 1, sym__enum_member_declaration, - STATE(1803), 1, + STATE(1852), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1398), 3, + STATE(1420), 3, sym_enum_case, sym_method_declaration, sym_use_declaration, - STATE(1329), 5, + STATE(1370), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [50215] = 17, + [52145] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, - sym_name, - ACTIONS(1742), 1, - anon_sym_LPAREN, - ACTIONS(1744), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, anon_sym_QMARK, - ACTIONS(2798), 1, - sym_bottom_type, - STATE(1319), 1, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2955), 1, + anon_sym_RPAREN, + STATE(1348), 1, sym_text_interpolation, - STATE(1419), 1, - sym__types, - STATE(1425), 1, - sym_qualified_name, - STATE(2418), 1, - sym__type, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - STATE(1421), 3, - sym_named_type, - sym_optional_type, - sym_primitive_type, - STATE(1469), 3, - sym_union_type, - sym_intersection_type, - sym_disjunctive_normal_form_type, - ACTIONS(1738), 12, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52227] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2957), 1, + anon_sym_RBRACE, + STATE(1349), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52309] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(1350), 1, + sym_text_interpolation, + ACTIONS(2961), 4, + anon_sym_BSLASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + sym_grit_metavariable, + ACTIONS(2959), 26, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_definition_token1, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, anon_sym_string, anon_sym_int, + aux_sym_class_declaration_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -120016,158 +122437,743 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50282] = 24, + sym_name, + [52353] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2532), 1, - aux_sym_final_modifier_token1, - ACTIONS(2534), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2794), 1, - aux_sym_enum_case_token1, - ACTIONS(2800), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2963), 1, anon_sym_RBRACE, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1320), 1, + STATE(1351), 1, sym_text_interpolation, - STATE(1324), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1330), 1, - sym__modifier, - STATE(1353), 1, - sym_attribute_list, - STATE(1355), 1, - aux_sym_property_declaration_repeat1, - STATE(1397), 1, - sym__enum_member_declaration, - STATE(1803), 1, - sym__function_definition_header, - ACTIONS(2540), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1398), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1329), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50363] = 24, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52435] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(316), 1, - anon_sym_POUND_LBRACK, - ACTIONS(2522), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2524), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2526), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2532), 1, - aux_sym_final_modifier_token1, - ACTIONS(2534), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2794), 1, - aux_sym_enum_case_token1, - ACTIONS(2802), 1, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2965), 1, anon_sym_RBRACE, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1320), 1, - aux_sym_enum_declaration_list_repeat1, - STATE(1321), 1, + STATE(1352), 1, sym_text_interpolation, - STATE(1330), 1, - sym__modifier, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52517] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, + aux_sym_binary_expression_token3, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2967), 1, + anon_sym_RBRACK, STATE(1353), 1, - sym_attribute_list, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52599] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2967), 1, + anon_sym_RBRACE, + STATE(1354), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52681] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2969), 1, + aux_sym_namespace_aliasing_clause_token1, STATE(1355), 1, - aux_sym_property_declaration_repeat1, - STATE(1397), 1, - sym__enum_member_declaration, - STATE(1803), 1, - sym__function_definition_header, - ACTIONS(2540), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1398), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1329), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50444] = 17, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52763] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2971), 1, + anon_sym_RBRACE, + STATE(1356), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52845] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2929), 1, + anon_sym_RBRACE, + STATE(1357), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [52927] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2973), 1, + anon_sym_EQ_GT, + STATE(1358), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [53009] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2975), 1, + anon_sym_RBRACE, + STATE(1359), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [53091] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2977), 1, + anon_sym_RBRACE, + STATE(1360), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [53173] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2479), 1, + anon_sym_STAR_STAR, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2485), 1, + anon_sym_CARET, + ACTIONS(2493), 1, + anon_sym_GT_EQ, + ACTIONS(2497), 1, + anon_sym_DOT, + ACTIONS(2501), 1, + anon_sym_PERCENT, + ACTIONS(2503), 1, + anon_sym_QMARK, + ACTIONS(2505), 1, + anon_sym_PIPE, + ACTIONS(2507), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2509), 1, + aux_sym_binary_expression_token2, + ACTIONS(2511), 1, + aux_sym_binary_expression_token3, + ACTIONS(2513), 1, + aux_sym_binary_expression_token4, + ACTIONS(2515), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2979), 1, + anon_sym_RBRACK, + STATE(1361), 1, + sym_text_interpolation, + ACTIONS(2483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2487), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2495), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2499), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2491), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2489), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [53255] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 1, + anon_sym_QMARK, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2979), 1, + anon_sym_RBRACE, + STATE(1362), 1, + sym_text_interpolation, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [53337] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2981), 1, sym_name, - ACTIONS(2808), 1, + ACTIONS(2985), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2987), 1, anon_sym_QMARK, - ACTIONS(2812), 1, + ACTIONS(2989), 1, sym_bottom_type, - STATE(1322), 1, + ACTIONS(2991), 1, + sym_grit_metavariable, + STATE(1363), 1, sym_text_interpolation, - STATE(1530), 1, + STATE(1573), 1, sym__types, - STATE(1698), 1, + STATE(1807), 1, sym_qualified_name, - STATE(1952), 1, + STATE(2109), 1, sym__type, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(2605), 1, + STATE(2698), 1, sym_namespace_name_as_prefix, - STATE(1705), 3, + STATE(1806), 3, sym_named_type, sym_optional_type, sym_primitive_type, - STATE(2077), 3, + STATE(2188), 3, sym_union_type, sym_intersection_type, sym_disjunctive_normal_form_type, - ACTIONS(2806), 12, + ACTIONS(2983), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120180,119 +123186,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50511] = 5, + [53407] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1323), 1, - sym_text_interpolation, - ACTIONS(2816), 3, - anon_sym_BSLASH, - anon_sym_LPAREN, - anon_sym_DOLLAR, - ACTIONS(2814), 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, + ACTIONS(2389), 1, + anon_sym_AMP, + ACTIONS(2391), 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, - [50554] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2818), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2821), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2824), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2827), 1, - anon_sym_RBRACE, - ACTIONS(2829), 1, - aux_sym_enum_case_token1, - ACTIONS(2832), 1, - aux_sym_final_modifier_token1, - ACTIONS(2835), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2838), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2841), 1, - sym_var_modifier, - ACTIONS(2847), 1, - anon_sym_POUND_LBRACK, - STATE(978), 1, - aux_sym_attribute_list_repeat1, - STATE(1034), 1, - sym_attribute_group, - STATE(1330), 1, - sym__modifier, - STATE(1353), 1, - sym_attribute_list, - STATE(1355), 1, - aux_sym_property_declaration_repeat1, - STATE(1397), 1, - sym__enum_member_declaration, - STATE(1803), 1, - sym__function_definition_header, - STATE(1324), 2, + ACTIONS(2393), 1, + anon_sym_PIPE, + ACTIONS(2397), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2399), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + aux_sym_binary_expression_token2, + ACTIONS(2403), 1, + aux_sym_binary_expression_token4, + ACTIONS(2405), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2407), 1, + anon_sym_AMP_AMP, + ACTIONS(2409), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_GT_EQ, + ACTIONS(2421), 1, + anon_sym_DOT, + ACTIONS(2425), 1, + anon_sym_PERCENT, + ACTIONS(2429), 1, + aux_sym_binary_expression_token3, + ACTIONS(2993), 1, + anon_sym_COLON, + STATE(1364), 1, sym_text_interpolation, - aux_sym_enum_declaration_list_repeat1, - ACTIONS(2844), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1398), 3, - sym_enum_case, - sym_method_declaration, - sym_use_declaration, - STATE(1329), 5, - sym_final_modifier, - sym_abstract_modifier, - sym_readonly_modifier, - sym_static_modifier, - sym_visibility_modifier, - [50633] = 6, + ACTIONS(2395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2411), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2419), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2423), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2415), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(2413), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [53489] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2850), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1325), 1, + STATE(1365), 1, sym_text_interpolation, - ACTIONS(2670), 3, + ACTIONS(2997), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2668), 24, + sym_grit_metavariable, + ACTIONS(2995), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, anon_sym_string, anon_sym_int, + aux_sym_class_declaration_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -120312,18 +123282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50677] = 5, + [53532] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1326), 1, + STATE(1366), 1, sym_text_interpolation, - ACTIONS(2854), 3, + ACTIONS(3001), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2852), 25, + sym_grit_metavariable, + ACTIONS(2999), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -120349,24 +123320,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50719] = 5, + [53575] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1327), 1, + ACTIONS(3003), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1367), 1, sym_text_interpolation, - ACTIONS(2858), 3, + ACTIONS(2784), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2856), 25, + sym_grit_metavariable, + ACTIONS(2782), 24, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, anon_sym_string, anon_sym_int, - aux_sym_class_declaration_token1, aux_sym_final_modifier_token1, aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, @@ -120386,18 +123359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50761] = 5, + [53620] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1328), 1, + STATE(1368), 1, sym_text_interpolation, - ACTIONS(2862), 3, + ACTIONS(3007), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2860), 25, + sym_grit_metavariable, + ACTIONS(3005), 25, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -120423,18 +123397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50803] = 5, + [53663] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1329), 1, + STATE(1369), 1, sym_text_interpolation, - ACTIONS(2670), 3, + ACTIONS(3011), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2668), 24, + sym_grit_metavariable, + ACTIONS(3009), 24, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -120459,18 +123434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50844] = 5, + [53705] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1330), 1, + STATE(1370), 1, sym_text_interpolation, - ACTIONS(2866), 3, + ACTIONS(2784), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2864), 24, + sym_grit_metavariable, + ACTIONS(2782), 24, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -120495,18 +123471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50885] = 5, + [53747] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1331), 1, + STATE(1371), 1, sym_text_interpolation, - ACTIONS(2870), 3, + ACTIONS(3015), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2868), 24, + sym_grit_metavariable, + ACTIONS(3013), 24, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -120531,36 +123508,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50926] = 14, + [53789] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - ACTIONS(2872), 1, - anon_sym_LPAREN, - STATE(1332), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1372), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1447), 1, + STATE(1983), 1, sym__types, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2625), 1, + sym_intersection_type, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120573,36 +123552,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50982] = 14, + [53848] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(2810), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - ACTIONS(2874), 1, - anon_sym_LPAREN, - STATE(1333), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1373), 1, sym_text_interpolation, - STATE(1698), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1779), 1, + STATE(1983), 1, sym__types, - STATE(2603), 1, - sym_namespace_name, - STATE(2605), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(1705), 3, + STATE(2697), 1, + sym_namespace_name, + STATE(2720), 1, + sym_intersection_type, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2806), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120615,36 +123596,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51038] = 14, + [53907] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(2981), 1, sym_name, - ACTIONS(1797), 1, + ACTIONS(2987), 1, anon_sym_QMARK, - ACTIONS(2872), 1, + ACTIONS(2991), 1, + sym_grit_metavariable, + ACTIONS(3017), 1, anon_sym_LPAREN, - STATE(1334), 1, + STATE(1374), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1807), 1, sym_qualified_name, - STATE(1439), 1, + STATE(1925), 1, sym__types, - STATE(2568), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(1806), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(2983), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120657,36 +123640,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51094] = 14, + [53966] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - STATE(1335), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + ACTIONS(3019), 1, + anon_sym_LPAREN, + STATE(1375), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(2049), 1, + STATE(1484), 1, sym__types, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2500), 1, - sym_intersection_type, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120699,36 +123684,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51150] = 14, + [54025] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - STATE(1336), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1376), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(2049), 1, + STATE(1983), 1, sym__types, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(2655), 1, + STATE(2725), 1, sym_intersection_type, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120741,36 +123728,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51206] = 14, + [54084] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1797), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - ACTIONS(2872), 1, - anon_sym_LPAREN, - STATE(1337), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1377), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1447), 1, + STATE(1983), 1, sym__types, - STATE(2568), 1, + STATE(2562), 1, + sym_intersection_type, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120783,36 +123772,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51262] = 14, + [54143] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(2981), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(2987), 1, anon_sym_QMARK, - STATE(1338), 1, + ACTIONS(2991), 1, + sym_grit_metavariable, + ACTIONS(3017), 1, + anon_sym_LPAREN, + STATE(1378), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1807), 1, sym_qualified_name, - STATE(2049), 1, + STATE(1864), 1, sym__types, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(2671), 1, - sym_intersection_type, - STATE(1421), 3, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(1806), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(2983), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120825,36 +123816,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51318] = 14, + [54202] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(2810), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - ACTIONS(2874), 1, - anon_sym_LPAREN, - STATE(1339), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1379), 1, sym_text_interpolation, - STATE(1698), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1783), 1, + STATE(1983), 1, sym__types, - STATE(2603), 1, - sym_namespace_name, - STATE(2605), 1, + STATE(2570), 1, + sym_intersection_type, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(1705), 3, + STATE(2697), 1, + sym_namespace_name, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2806), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120867,36 +123860,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51374] = 14, + [54261] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - STATE(1340), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + ACTIONS(3019), 1, + anon_sym_LPAREN, + STATE(1380), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(2049), 1, + STATE(1518), 1, sym__types, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(2639), 1, - sym_intersection_type, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120909,36 +123904,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51430] = 14, + [54320] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_QMARK, - STATE(1341), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + ACTIONS(3019), 1, + anon_sym_LPAREN, + STATE(1381), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(2049), 1, + STATE(1518), 1, sym__types, - STATE(2466), 1, - sym_intersection_type, - STATE(2496), 1, + STATE(2696), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120951,36 +123948,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51486] = 14, + [54379] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_QMARK, - ACTIONS(2872), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + ACTIONS(3019), 1, anon_sym_LPAREN, - STATE(1342), 1, + STATE(1382), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1439), 1, + STATE(1484), 1, sym__types, - STATE(2496), 1, + STATE(2696), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -120993,34 +123992,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51542] = 13, + [54438] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(2981), 1, sym_name, - ACTIONS(1797), 1, + ACTIONS(2987), 1, anon_sym_QMARK, - STATE(1343), 1, + ACTIONS(2991), 1, + sym_grit_metavariable, + STATE(1383), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1807), 1, sym_qualified_name, - STATE(1454), 1, + STATE(1924), 1, sym__types, - STATE(2568), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(1806), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(2983), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -121033,34 +124034,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51595] = 13, + [54494] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_QMARK, - STATE(1344), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1384), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1448), 1, + STATE(1490), 1, sym__types, - STATE(2496), 1, + STATE(2696), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -121073,34 +124076,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51648] = 13, + [54550] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1744), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - STATE(1345), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1385), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1454), 1, + STATE(1490), 1, sym__types, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -121113,34 +124118,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51701] = 13, + [54606] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2981), 1, sym_name, - ACTIONS(2810), 1, + ACTIONS(2987), 1, anon_sym_QMARK, - STATE(1346), 1, + ACTIONS(2991), 1, + sym_grit_metavariable, + STATE(1386), 1, sym_text_interpolation, - STATE(1698), 1, + STATE(1807), 1, sym_qualified_name, - STATE(1890), 1, + STATE(1942), 1, sym__types, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(2605), 1, + STATE(2698), 1, sym_namespace_name_as_prefix, - STATE(1705), 3, + STATE(1806), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2806), 12, + ACTIONS(2983), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -121153,34 +124160,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51754] = 13, + [54662] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(2810), 1, + ACTIONS(1810), 1, anon_sym_QMARK, - STATE(1347), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1387), 1, sym_text_interpolation, - STATE(1698), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1839), 1, + STATE(1517), 1, sym__types, - STATE(2603), 1, - sym_namespace_name, - STATE(2605), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(1705), 3, + STATE(2697), 1, + sym_namespace_name, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(2806), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -121193,34 +124202,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51807] = 13, + [54718] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - ACTIONS(1797), 1, + ACTIONS(1840), 1, anon_sym_QMARK, - STATE(1348), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1388), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(1448), 1, + STATE(1517), 1, sym__types, - STATE(2568), 1, + STATE(2696), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1421), 3, + STATE(1472), 3, sym_named_type, sym_optional_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -121233,29 +124244,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51860] = 11, + [54774] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(2981), 1, sym_name, - STATE(1349), 1, + ACTIONS(2991), 1, + sym_grit_metavariable, + STATE(1389), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1807), 1, sym_qualified_name, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1433), 2, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(1785), 2, sym_named_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(2983), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -121268,29 +124281,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51906] = 11, + [54823] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - STATE(1350), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1390), 1, sym_text_interpolation, - STATE(1425), 1, + STATE(1473), 1, sym_qualified_name, - STATE(2568), 1, + STATE(2696), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1433), 2, + STATE(1463), 2, sym_named_type, sym_primitive_type, - ACTIONS(1738), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -121303,29 +124318,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51952] = 11, + [54872] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(1798), 1, sym_name, - STATE(1351), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1391), 1, sym_text_interpolation, - STATE(1698), 1, + STATE(1473), 1, sym_qualified_name, - STATE(2603), 1, - sym_namespace_name, - STATE(2605), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(1740), 2, + STATE(2697), 1, + sym_namespace_name, + STATE(1463), 2, sym_named_type, sym_primitive_type, - ACTIONS(2806), 12, + ACTIONS(1804), 12, anon_sym_string, anon_sym_int, anon_sym_array, @@ -121338,202 +124355,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51998] = 18, + [54921] = 18, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2648), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2528), 1, + ACTIONS(2650), 1, aux_sym_namespace_use_declaration_token3, - ACTIONS(2532), 1, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2656), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - STATE(647), 1, + STATE(667), 1, aux_sym_property_declaration_repeat1, - STATE(1247), 1, + STATE(1281), 1, sym_final_modifier, - STATE(1325), 1, + STATE(1367), 1, sym_visibility_modifier, - STATE(1330), 1, + STATE(1369), 1, sym__modifier, - STATE(1352), 1, + STATE(1392), 1, sym_text_interpolation, - STATE(1407), 1, + STATE(1427), 1, sym__const_declaration, - STATE(1806), 1, + STATE(1826), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1329), 3, + STATE(1370), 3, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - [52057] = 15, + [54981] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2648), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2532), 1, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2656), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - ACTIONS(2876), 1, + ACTIONS(3021), 1, aux_sym_enum_case_token1, - STATE(1330), 1, + STATE(1369), 1, sym__modifier, - STATE(1353), 1, + STATE(1393), 1, sym_text_interpolation, - STATE(1354), 1, + STATE(1395), 1, aux_sym_property_declaration_repeat1, - STATE(1806), 1, + STATE(1826), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1329), 5, + STATE(1370), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [52109] = 14, + [55034] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2648), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2532), 1, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2656), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - STATE(1133), 1, + STATE(1065), 1, aux_sym_property_declaration_repeat1, - STATE(1330), 1, + STATE(1369), 1, sym__modifier, - STATE(1354), 1, + STATE(1394), 1, sym_text_interpolation, - STATE(1762), 1, + STATE(1828), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1329), 5, + STATE(1370), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [52158] = 14, + [55084] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2644), 1, aux_sym_function_static_declaration_token1, - ACTIONS(2526), 1, + ACTIONS(2648), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(2532), 1, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, + ACTIONS(2656), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(2538), 1, - sym_var_modifier, - STATE(1133), 1, + STATE(1065), 1, aux_sym_property_declaration_repeat1, - STATE(1330), 1, + STATE(1369), 1, sym__modifier, - STATE(1355), 1, + STATE(1395), 1, sym_text_interpolation, - STATE(1795), 1, + STATE(1949), 1, sym__function_definition_header, - ACTIONS(2540), 3, + ACTIONS(2658), 2, + sym_var_modifier, + sym_grit_metavariable, + ACTIONS(2660), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1329), 5, + STATE(1370), 5, sym_final_modifier, sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [52207] = 12, + [55134] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(617), 1, + ACTIONS(639), 1, anon_sym_LT_LT_LT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(3025), 1, sym_integer, - ACTIONS(2882), 1, + ACTIONS(3027), 1, aux_sym__argument_name_token1, - ACTIONS(2884), 1, + ACTIONS(3029), 1, aux_sym__argument_name_token2, - STATE(1356), 1, + STATE(1396), 1, sym_text_interpolation, - ACTIONS(613), 2, + ACTIONS(635), 2, aux_sym_encapsed_string_token1, anon_sym_DQUOTE, - ACTIONS(615), 2, + ACTIONS(637), 2, aux_sym_string_token1, anon_sym_SQUOTE, - ACTIONS(2878), 2, + ACTIONS(3023), 2, sym_float, sym_grit_metavariable, - STATE(2552), 3, + STATE(2708), 3, sym_boolean, sym_null, sym__string, - STATE(760), 4, + STATE(796), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - [52252] = 5, + [55179] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1357), 1, + STATE(1397), 1, sym_text_interpolation, - ACTIONS(2886), 6, + ACTIONS(3031), 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(1825), 10, + ACTIONS(1915), 11, anon_sym_BSLASH, anon_sym_RBRACE, anon_sym_LPAREN, @@ -121544,142 +124565,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - [52282] = 14, + sym_grit_metavariable, + [55210] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(11), 1, + STATE(1398), 1, + sym_text_interpolation, + ACTIONS(3033), 15, + 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, + sym_grit_metavariable, + [55237] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(2888), 1, - anon_sym_LBRACE, - ACTIONS(2894), 1, - anon_sym_BSLASHu, - ACTIONS(2897), 1, - sym__new_line, - ACTIONS(2900), 1, - anon_sym_DOLLAR, - ACTIONS(2903), 1, - sym_heredoc_end, - STATE(1360), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1450), 1, - sym_variable_name, - STATE(1568), 1, - sym__simple_string_member_access_expression, - ACTIONS(2891), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - STATE(1358), 2, + ACTIONS(5), 1, + sym_comment, + STATE(1399), 1, sym_text_interpolation, - aux_sym_heredoc_body_repeat1, - STATE(1544), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1567), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [52329] = 15, + ACTIONS(3035), 15, + 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, + sym_grit_metavariable, + [55264] = 14, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(2905), 1, + ACTIONS(3037), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(3043), 1, anon_sym_BSLASHu, - ACTIONS(2911), 1, + ACTIONS(3046), 1, sym__new_line, - ACTIONS(2914), 1, + ACTIONS(3049), 1, anon_sym_DOLLAR, - ACTIONS(2916), 1, + ACTIONS(3052), 1, sym_heredoc_end, - STATE(1358), 1, - aux_sym_heredoc_body_repeat1, - STATE(1359), 1, - sym_text_interpolation, - STATE(1360), 1, + STATE(1418), 1, aux_sym__interpolated_string_body_heredoc, - STATE(1450), 1, + STATE(1493), 1, sym_variable_name, - STATE(1568), 1, + STATE(1626), 1, sym__simple_string_member_access_expression, - ACTIONS(2907), 2, + ACTIONS(3040), 2, sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1544), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1567), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [52378] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(2905), 1, - anon_sym_LBRACE, - ACTIONS(2909), 1, - anon_sym_BSLASHu, - ACTIONS(2914), 1, - anon_sym_DOLLAR, - STATE(1360), 1, + STATE(1400), 2, sym_text_interpolation, - STATE(1361), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1450), 1, - sym_variable_name, - STATE(1568), 1, - sym__simple_string_member_access_expression, - ACTIONS(2907), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - ACTIONS(2918), 2, - sym_heredoc_end, - sym__new_line, - STATE(1544), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1567), 2, + aux_sym_heredoc_body_repeat1, + STATE(1591), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - [52422] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(2920), 1, - anon_sym_LBRACE, - ACTIONS(2926), 1, - anon_sym_BSLASHu, - ACTIONS(2931), 1, - anon_sym_DOLLAR, - STATE(1450), 1, - sym_variable_name, - STATE(1568), 1, - sym__simple_string_member_access_expression, - ACTIONS(2923), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - ACTIONS(2929), 2, - sym_heredoc_end, - sym__new_line, - STATE(1361), 2, - sym_text_interpolation, - aux_sym__interpolated_string_body_heredoc, - STATE(1544), 2, + STATE(1612), 2, sym__complex_string_part, sym__simple_string_part, - STATE(1567), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [52464] = 4, + [55311] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1362), 1, + STATE(1401), 1, sym_text_interpolation, - ACTIONS(2934), 14, + ACTIONS(3054), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121694,14 +124667,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52490] = 4, + sym_grit_metavariable, + [55338] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1363), 1, + STATE(1402), 1, sym_text_interpolation, - ACTIONS(2936), 14, + ACTIONS(3056), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121716,14 +124690,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52516] = 4, + sym_grit_metavariable, + [55365] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1364), 1, + STATE(1403), 1, sym_text_interpolation, - ACTIONS(2938), 14, + ACTIONS(3056), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121738,14 +124713,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52542] = 4, + sym_grit_metavariable, + [55392] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3058), 1, + anon_sym_LBRACE, + ACTIONS(3062), 1, + anon_sym_BSLASHu, + ACTIONS(3064), 1, + sym__new_line, + ACTIONS(3067), 1, + anon_sym_DOLLAR, + ACTIONS(3069), 1, + sym_heredoc_end, + STATE(1400), 1, + aux_sym_heredoc_body_repeat1, + STATE(1404), 1, + sym_text_interpolation, + STATE(1418), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1493), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(3060), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + STATE(1591), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1612), 2, + sym__complex_string_part, + sym__simple_string_part, + [55441] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1365), 1, + STATE(1405), 1, sym_text_interpolation, - ACTIONS(2938), 14, + ACTIONS(3071), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121760,14 +124770,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52568] = 4, + sym_grit_metavariable, + [55468] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1366), 1, + STATE(1406), 1, sym_text_interpolation, - ACTIONS(2940), 14, + ACTIONS(3071), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121782,46 +124793,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52594] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(2905), 1, - anon_sym_LBRACE, - ACTIONS(2909), 1, - anon_sym_BSLASHu, - ACTIONS(2914), 1, - anon_sym_DOLLAR, - ACTIONS(2942), 1, - sym__new_line, - STATE(1359), 1, - aux_sym_heredoc_body_repeat1, - STATE(1360), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1367), 1, - sym_text_interpolation, - STATE(1450), 1, - sym_variable_name, - STATE(1568), 1, - sym__simple_string_member_access_expression, - ACTIONS(2907), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - STATE(1544), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1567), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [52640] = 4, + sym_grit_metavariable, + [55495] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1368), 1, + STATE(1407), 1, sym_text_interpolation, - ACTIONS(2944), 14, + ACTIONS(3073), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121836,14 +124816,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52666] = 4, + sym_grit_metavariable, + [55522] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1369), 1, + STATE(1408), 1, sym_text_interpolation, - ACTIONS(2946), 14, + ACTIONS(3075), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121858,14 +124839,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52692] = 4, + sym_grit_metavariable, + [55549] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1370), 1, + STATE(1409), 1, sym_text_interpolation, - ACTIONS(2948), 14, + ACTIONS(3077), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121880,14 +124862,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52718] = 4, + sym_grit_metavariable, + [55576] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1371), 1, + STATE(1410), 1, sym_text_interpolation, - ACTIONS(2950), 14, + ACTIONS(3077), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121902,14 +124885,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52744] = 4, + sym_grit_metavariable, + [55603] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1372), 1, + STATE(1411), 1, sym_text_interpolation, - ACTIONS(2950), 14, + ACTIONS(3079), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121924,14 +124908,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52770] = 4, + sym_grit_metavariable, + [55630] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1373), 1, + STATE(1412), 1, sym_text_interpolation, - ACTIONS(2952), 14, + ACTIONS(3081), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121946,14 +124931,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52796] = 4, + sym_grit_metavariable, + [55657] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1374), 1, + STATE(1413), 1, sym_text_interpolation, - ACTIONS(2954), 14, + ACTIONS(3083), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121968,14 +124954,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52822] = 4, + sym_grit_metavariable, + [55684] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1375), 1, + STATE(1414), 1, sym_text_interpolation, - ACTIONS(2946), 14, + ACTIONS(3085), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -121990,14 +124977,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52848] = 4, + sym_grit_metavariable, + [55711] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1376), 1, + STATE(1415), 1, sym_text_interpolation, - ACTIONS(2956), 14, + ACTIONS(3033), 15, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122012,20 +125000,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52874] = 4, + sym_grit_metavariable, + [55738] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1377), 1, + STATE(1416), 1, sym_text_interpolation, - ACTIONS(2956), 14, + ACTIONS(3087), 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, @@ -122034,20 +125022,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52900] = 4, + sym_grit_metavariable, + [55764] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1378), 1, + STATE(1417), 1, sym_text_interpolation, - ACTIONS(2958), 14, + ACTIONS(3089), 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, @@ -122056,45 +125044,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52926] = 13, + sym_grit_metavariable, + [55790] = 13, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(2905), 1, + ACTIONS(3058), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(3062), 1, anon_sym_BSLASHu, - ACTIONS(2914), 1, + ACTIONS(3067), 1, anon_sym_DOLLAR, - STATE(1361), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1379), 1, + STATE(1418), 1, sym_text_interpolation, - STATE(1450), 1, + STATE(1431), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1493), 1, sym_variable_name, - STATE(1568), 1, + STATE(1626), 1, sym__simple_string_member_access_expression, - ACTIONS(2903), 2, - sym_heredoc_end, - sym__new_line, - ACTIONS(2907), 2, + ACTIONS(3060), 2, sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1544), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1567), 2, + ACTIONS(3091), 2, + sym_heredoc_end, + sym__new_line, + STATE(1591), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - [52970] = 4, + STATE(1612), 2, + sym__complex_string_part, + sym__simple_string_part, + [55834] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1380), 1, + STATE(1419), 1, sym_text_interpolation, - ACTIONS(2960), 13, + ACTIONS(3093), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122108,48 +125097,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52995] = 12, + sym_grit_metavariable, + [55860] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2962), 1, - sym_name, - ACTIONS(2968), 1, - anon_sym_BSLASH, - STATE(1381), 1, + STATE(1420), 1, sym_text_interpolation, - STATE(1769), 1, - sym_namespace_use_clause, - STATE(2543), 1, - sym_namespace_name, - STATE(2605), 1, - sym_namespace_name_as_prefix, - ACTIONS(2966), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - STATE(1754), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2964), 3, + ACTIONS(3095), 14, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [53036] = 4, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_final_modifier_token1, + aux_sym_abstract_modifier_token1, + aux_sym_readonly_modifier_token1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + sym_grit_metavariable, + [55886] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1382), 1, + STATE(1421), 1, sym_text_interpolation, - ACTIONS(2970), 13, + ACTIONS(3097), 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, @@ -122158,133 +125141,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53061] = 7, + sym_grit_metavariable, + [55912] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - STATE(1383), 1, + STATE(1422), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2972), 4, + ACTIONS(3099), 14, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(2974), 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, - [53092] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, - anon_sym_BSLASHu, - ACTIONS(2982), 1, - anon_sym_DQUOTE, - ACTIONS(2984), 1, - anon_sym_DOLLAR, - STATE(1384), 1, - sym_text_interpolation, - STATE(1399), 1, - aux_sym__interpolated_string_body, - STATE(1479), 1, - sym_variable_name, - STATE(1646), 1, - sym__simple_string_member_access_expression, - ACTIONS(2978), 2, - sym_encapsed_string_chars, - sym_escape_sequence, - STATE(1644), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1647), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [53135] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, - anon_sym_BSLASHu, - ACTIONS(2984), 1, - anon_sym_DOLLAR, - ACTIONS(2986), 1, - anon_sym_DQUOTE, - STATE(1385), 1, - sym_text_interpolation, - STATE(1394), 1, - aux_sym__interpolated_string_body, - STATE(1479), 1, - sym_variable_name, - STATE(1646), 1, - sym__simple_string_member_access_expression, - ACTIONS(2978), 2, - sym_encapsed_string_chars, - sym_escape_sequence, - STATE(1644), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1647), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [53178] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2988), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_BSLASHu, - ACTIONS(2994), 1, - anon_sym_BQUOTE, - ACTIONS(2996), 1, - anon_sym_DOLLAR, - STATE(1386), 1, - sym_text_interpolation, - STATE(1409), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1468), 1, - sym_variable_name, - STATE(1626), 1, - sym__simple_string_member_access_expression, - ACTIONS(2990), 2, - sym_execution_string_chars, - sym_escape_sequence, - STATE(1623), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - STATE(1649), 2, - sym__complex_string_part, - sym__simple_string_part, - [53221] = 4, + 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, + sym_grit_metavariable, + [55938] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1387), 1, + STATE(1423), 1, sym_text_interpolation, - ACTIONS(2998), 13, + ACTIONS(3101), 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, @@ -122293,44 +125185,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53246] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + sym_grit_metavariable, + [55964] = 14, + ACTIONS(5), 1, sym_comment, - ACTIONS(2988), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3058), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(3062), 1, anon_sym_BSLASHu, - ACTIONS(2996), 1, + ACTIONS(3067), 1, anon_sym_DOLLAR, - ACTIONS(3000), 1, - anon_sym_BQUOTE, - STATE(1388), 1, + ACTIONS(3103), 1, + sym__new_line, + STATE(1404), 1, + aux_sym_heredoc_body_repeat1, + STATE(1418), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1424), 1, sym_text_interpolation, - STATE(1396), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1468), 1, + STATE(1493), 1, sym_variable_name, STATE(1626), 1, sym__simple_string_member_access_expression, - ACTIONS(2990), 2, - sym_execution_string_chars, + ACTIONS(3060), 2, + sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1623), 2, + STATE(1591), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1649), 2, + STATE(1612), 2, sym__complex_string_part, sym__simple_string_part, - [53289] = 4, + [56010] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1389), 1, + STATE(1425), 1, sym_text_interpolation, - ACTIONS(3002), 13, + ACTIONS(3105), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122344,14 +125239,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53314] = 4, + sym_grit_metavariable, + [56036] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1390), 1, + STATE(1426), 1, sym_text_interpolation, - ACTIONS(3004), 13, + ACTIONS(3107), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122365,14 +125261,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53339] = 4, + sym_grit_metavariable, + [56062] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1391), 1, + STATE(1427), 1, sym_text_interpolation, - ACTIONS(3006), 13, + ACTIONS(3109), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122386,19 +125283,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53364] = 4, + sym_grit_metavariable, + [56088] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1392), 1, + STATE(1428), 1, sym_text_interpolation, - ACTIONS(3008), 13, + ACTIONS(3111), 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, @@ -122407,138 +125305,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53389] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + sym_grit_metavariable, + [56114] = 13, + ACTIONS(5), 1, sym_comment, - ACTIONS(2532), 1, - aux_sym_final_modifier_token1, - ACTIONS(2534), 1, - aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(3010), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3012), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(3014), 1, - aux_sym_enum_declaration_token1, - ACTIONS(3016), 1, - aux_sym_class_declaration_token1, - ACTIONS(3018), 1, - aux_sym__arrow_function_header_token1, - STATE(1393), 1, - sym_text_interpolation, - STATE(2432), 1, - sym__function_definition_header, - STATE(2480), 1, - sym_readonly_modifier, - STATE(2481), 1, - sym_static_modifier, - STATE(2027), 2, - sym_final_modifier, - sym_abstract_modifier, - [53436] = 13, - ACTIONS(3), 1, + ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2976), 1, + ACTIONS(3058), 1, anon_sym_LBRACE, - ACTIONS(2980), 1, + ACTIONS(3062), 1, anon_sym_BSLASHu, - ACTIONS(2984), 1, + ACTIONS(3067), 1, anon_sym_DOLLAR, - ACTIONS(3020), 1, - anon_sym_DQUOTE, - STATE(1394), 1, + STATE(1429), 1, sym_text_interpolation, - STATE(1408), 1, - aux_sym__interpolated_string_body, - STATE(1479), 1, + STATE(1431), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1493), 1, sym_variable_name, - STATE(1646), 1, + STATE(1626), 1, sym__simple_string_member_access_expression, - ACTIONS(2978), 2, - sym_encapsed_string_chars, + ACTIONS(3052), 2, + sym_heredoc_end, + sym__new_line, + ACTIONS(3060), 2, + sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1644), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1647), 2, + STATE(1591), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - [53479] = 15, + STATE(1612), 2, + sym__complex_string_part, + sym__simple_string_part, + [56158] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(5), 1, sym_comment, - ACTIONS(2532), 1, + STATE(1430), 1, + sym_text_interpolation, + ACTIONS(3113), 14, + aux_sym_function_static_declaration_token1, + aux_sym_namespace_use_declaration_token1, + aux_sym_namespace_use_declaration_token2, + anon_sym_RBRACE, + aux_sym_enum_case_token1, aux_sym_final_modifier_token1, - ACTIONS(2534), 1, aux_sym_abstract_modifier_token1, - ACTIONS(2536), 1, aux_sym_readonly_modifier_token1, - ACTIONS(3010), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3012), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(3018), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3022), 1, - aux_sym_enum_declaration_token1, - ACTIONS(3024), 1, - aux_sym_class_declaration_token1, - STATE(1395), 1, - sym_text_interpolation, - STATE(2195), 1, - sym__function_definition_header, - STATE(2481), 1, - sym_static_modifier, - STATE(2590), 1, - sym_readonly_modifier, - STATE(1955), 2, - sym_final_modifier, - sym_abstract_modifier, - [53526] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + sym_grit_metavariable, + [56184] = 12, + ACTIONS(5), 1, sym_comment, - ACTIONS(2988), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3115), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(3121), 1, anon_sym_BSLASHu, - ACTIONS(2996), 1, + ACTIONS(3126), 1, anon_sym_DOLLAR, - ACTIONS(3026), 1, - anon_sym_BQUOTE, - STATE(1396), 1, - sym_text_interpolation, - STATE(1410), 1, - aux_sym__interpolated_execution_operator_body, - STATE(1468), 1, + STATE(1493), 1, sym_variable_name, STATE(1626), 1, sym__simple_string_member_access_expression, - ACTIONS(2990), 2, - sym_execution_string_chars, + ACTIONS(3118), 2, + sym_encapsed_string_chars_heredoc, sym_escape_sequence, - STATE(1623), 2, + ACTIONS(3124), 2, + sym_heredoc_end, + sym__new_line, + STATE(1431), 2, + sym_text_interpolation, + aux_sym__interpolated_string_body_heredoc, + STATE(1591), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1649), 2, + STATE(1612), 2, sym__complex_string_part, sym__simple_string_part, - [53569] = 4, + [56226] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1397), 1, + STATE(1432), 1, sym_text_interpolation, - ACTIONS(3028), 13, + ACTIONS(3129), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122552,19 +125410,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53594] = 4, + sym_grit_metavariable, + [56252] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1398), 1, + STATE(1433), 1, sym_text_interpolation, - ACTIONS(3030), 13, + ACTIONS(3131), 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, @@ -122573,44 +125432,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53619] = 13, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, - anon_sym_BSLASHu, - ACTIONS(2984), 1, - anon_sym_DOLLAR, - ACTIONS(3032), 1, - anon_sym_DQUOTE, - STATE(1399), 1, - sym_text_interpolation, - STATE(1408), 1, - aux_sym__interpolated_string_body, - STATE(1479), 1, - sym_variable_name, - STATE(1646), 1, - sym__simple_string_member_access_expression, - ACTIONS(2978), 2, - sym_encapsed_string_chars, - sym_escape_sequence, - STATE(1644), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1647), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [53662] = 4, + sym_grit_metavariable, + [56278] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1400), 1, + STATE(1434), 1, sym_text_interpolation, - ACTIONS(3034), 13, + ACTIONS(3133), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122624,14 +125454,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53687] = 4, + sym_grit_metavariable, + [56304] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1401), 1, + STATE(1435), 1, sym_text_interpolation, - ACTIONS(3036), 13, + ACTIONS(3135), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122645,35 +125476,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53712] = 4, + sym_grit_metavariable, + [56330] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1402), 1, - sym_text_interpolation, - ACTIONS(3038), 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, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2654), 1, aux_sym_final_modifier_token1, + ACTIONS(2656), 1, 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, - [53737] = 4, + ACTIONS(3137), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(3139), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3141), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3143), 1, + aux_sym_class_declaration_token1, + ACTIONS(3145), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3147), 1, + sym_grit_metavariable, + STATE(1436), 1, + sym_text_interpolation, + STATE(2554), 1, + sym__function_definition_header, + STATE(2572), 1, + sym_static_modifier, + STATE(2659), 1, + sym_readonly_modifier, + STATE(2135), 2, + sym_final_modifier, + sym_abstract_modifier, + [56380] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1403), 1, + STATE(1437), 1, sym_text_interpolation, - ACTIONS(3040), 13, + ACTIONS(3149), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122687,14 +125532,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53762] = 4, + sym_grit_metavariable, + [56406] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1404), 1, + STATE(1438), 1, sym_text_interpolation, - ACTIONS(3042), 13, + ACTIONS(3151), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122708,19 +125554,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53787] = 4, + sym_grit_metavariable, + [56432] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1405), 1, + STATE(1439), 1, sym_text_interpolation, - ACTIONS(3044), 13, + ACTIONS(3153), 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, @@ -122729,19 +125576,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53812] = 4, + sym_grit_metavariable, + [56458] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1406), 1, + STATE(1440), 1, sym_text_interpolation, - ACTIONS(3046), 13, + ACTIONS(3155), 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, @@ -122750,14 +125598,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53837] = 4, + sym_grit_metavariable, + [56484] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1407), 1, + STATE(1441), 1, sym_text_interpolation, - ACTIONS(3048), 13, + ACTIONS(3157), 14, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -122771,356 +125620,630 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53862] = 12, + sym_grit_metavariable, + [56510] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(2654), 1, + aux_sym_final_modifier_token1, + ACTIONS(2656), 1, + aux_sym_abstract_modifier_token1, + ACTIONS(3137), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(3139), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(3145), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3159), 1, + aux_sym_enum_declaration_token1, + ACTIONS(3161), 1, + aux_sym_class_declaration_token1, + ACTIONS(3163), 1, + sym_grit_metavariable, + STATE(1442), 1, + sym_text_interpolation, + STATE(2536), 1, + sym__function_definition_header, + STATE(2572), 1, + sym_static_modifier, + STATE(2573), 1, + sym_readonly_modifier, + STATE(2022), 2, + sym_final_modifier, + sym_abstract_modifier, + [56560] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3050), 1, + ACTIONS(3165), 1, anon_sym_LBRACE, - ACTIONS(3056), 1, + ACTIONS(3171), 1, anon_sym_BSLASHu, - ACTIONS(3059), 1, - anon_sym_DQUOTE, - ACTIONS(3061), 1, + ACTIONS(3174), 1, + anon_sym_BQUOTE, + ACTIONS(3176), 1, anon_sym_DOLLAR, - STATE(1479), 1, + STATE(1551), 1, sym_variable_name, - STATE(1646), 1, + STATE(1645), 1, sym__simple_string_member_access_expression, - ACTIONS(3053), 2, - sym_encapsed_string_chars, + ACTIONS(3168), 2, + sym_execution_string_chars, sym_escape_sequence, - STATE(1408), 2, + STATE(1443), 2, sym_text_interpolation, - aux_sym__interpolated_string_body, - STATE(1644), 2, + aux_sym__interpolated_execution_operator_body, + STATE(1647), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1689), 2, sym__complex_string_part, sym__simple_string_part, + [56601] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3179), 1, + anon_sym_LBRACE, + ACTIONS(3183), 1, + anon_sym_BSLASHu, + ACTIONS(3185), 1, + anon_sym_BQUOTE, + ACTIONS(3187), 1, + anon_sym_DOLLAR, + STATE(1443), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1444), 1, + sym_text_interpolation, + STATE(1551), 1, + sym_variable_name, + STATE(1645), 1, + sym__simple_string_member_access_expression, + ACTIONS(3181), 2, + sym_execution_string_chars, + sym_escape_sequence, STATE(1647), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - [53903] = 13, + STATE(1689), 2, + sym__complex_string_part, + sym__simple_string_part, + [56644] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2988), 1, + ACTIONS(3189), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(3193), 1, anon_sym_BSLASHu, - ACTIONS(2996), 1, + ACTIONS(3195), 1, + anon_sym_DQUOTE, + ACTIONS(3197), 1, anon_sym_DOLLAR, - ACTIONS(3064), 1, + STATE(1445), 1, + sym_text_interpolation, + STATE(1451), 1, + aux_sym__interpolated_string_body, + STATE(1550), 1, + sym_variable_name, + STATE(1683), 1, + sym__simple_string_member_access_expression, + ACTIONS(3191), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1681), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1684), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [56687] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3199), 1, + sym_name, + ACTIONS(3201), 1, + anon_sym_RBRACK, + ACTIONS(3203), 1, + sym_grit_metavariable, + STATE(1446), 1, + sym_text_interpolation, + STATE(2282), 1, + sym_attribute, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + STATE(1906), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [56730] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3179), 1, + anon_sym_LBRACE, + ACTIONS(3183), 1, + anon_sym_BSLASHu, + ACTIONS(3187), 1, + anon_sym_DOLLAR, + ACTIONS(3205), 1, anon_sym_BQUOTE, - STATE(1409), 1, + STATE(1447), 1, sym_text_interpolation, - STATE(1410), 1, + STATE(1449), 1, aux_sym__interpolated_execution_operator_body, - STATE(1468), 1, + STATE(1551), 1, sym_variable_name, - STATE(1626), 1, + STATE(1645), 1, sym__simple_string_member_access_expression, - ACTIONS(2990), 2, + ACTIONS(3181), 2, sym_execution_string_chars, sym_escape_sequence, - STATE(1623), 2, + STATE(1647), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1649), 2, + STATE(1689), 2, sym__complex_string_part, sym__simple_string_part, - [53946] = 12, + [56773] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3066), 1, + ACTIONS(3207), 1, anon_sym_LBRACE, - ACTIONS(3072), 1, + ACTIONS(3213), 1, anon_sym_BSLASHu, - ACTIONS(3075), 1, - anon_sym_BQUOTE, - ACTIONS(3077), 1, + ACTIONS(3216), 1, + anon_sym_DQUOTE, + ACTIONS(3218), 1, anon_sym_DOLLAR, - STATE(1468), 1, + STATE(1550), 1, sym_variable_name, - STATE(1626), 1, + STATE(1683), 1, sym__simple_string_member_access_expression, - ACTIONS(3069), 2, - sym_execution_string_chars, + ACTIONS(3210), 2, + sym_encapsed_string_chars, sym_escape_sequence, - STATE(1410), 2, + STATE(1448), 2, + sym_text_interpolation, + aux_sym__interpolated_string_body, + STATE(1681), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1684), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [56814] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3179), 1, + anon_sym_LBRACE, + ACTIONS(3183), 1, + anon_sym_BSLASHu, + ACTIONS(3187), 1, + anon_sym_DOLLAR, + ACTIONS(3221), 1, + anon_sym_BQUOTE, + STATE(1443), 1, + aux_sym__interpolated_execution_operator_body, + STATE(1449), 1, sym_text_interpolation, + STATE(1551), 1, + sym_variable_name, + STATE(1645), 1, + sym__simple_string_member_access_expression, + ACTIONS(3181), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1647), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1689), 2, + sym__complex_string_part, + sym__simple_string_part, + [56857] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3179), 1, + anon_sym_LBRACE, + ACTIONS(3183), 1, + anon_sym_BSLASHu, + ACTIONS(3187), 1, + anon_sym_DOLLAR, + ACTIONS(3223), 1, + anon_sym_BQUOTE, + STATE(1444), 1, aux_sym__interpolated_execution_operator_body, - STATE(1623), 2, + STATE(1450), 1, + sym_text_interpolation, + STATE(1551), 1, + sym_variable_name, + STATE(1645), 1, + sym__simple_string_member_access_expression, + ACTIONS(3181), 2, + sym_execution_string_chars, + sym_escape_sequence, + STATE(1647), 2, sym__simple_string_subscript_expression, sym_dynamic_variable_name, - STATE(1649), 2, + STATE(1689), 2, sym__complex_string_part, sym__simple_string_part, - [53987] = 4, + [56900] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1411), 1, + ACTIONS(3189), 1, + anon_sym_LBRACE, + ACTIONS(3193), 1, + anon_sym_BSLASHu, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3225), 1, + anon_sym_DQUOTE, + STATE(1448), 1, + aux_sym__interpolated_string_body, + STATE(1451), 1, sym_text_interpolation, - ACTIONS(3080), 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, - [54012] = 4, + STATE(1550), 1, + sym_variable_name, + STATE(1683), 1, + sym__simple_string_member_access_expression, + ACTIONS(3191), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1681), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1684), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [56943] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1412), 1, + ACTIONS(3189), 1, + anon_sym_LBRACE, + ACTIONS(3193), 1, + anon_sym_BSLASHu, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3227), 1, + anon_sym_DQUOTE, + STATE(1452), 1, sym_text_interpolation, - ACTIONS(3082), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [54037] = 12, + STATE(1453), 1, + aux_sym__interpolated_string_body, + STATE(1550), 1, + sym_variable_name, + STATE(1683), 1, + sym__simple_string_member_access_expression, + ACTIONS(3191), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1681), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1684), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [56986] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3189), 1, + anon_sym_LBRACE, + ACTIONS(3193), 1, + anon_sym_BSLASHu, + ACTIONS(3197), 1, + anon_sym_DOLLAR, + ACTIONS(3229), 1, + anon_sym_DQUOTE, + STATE(1448), 1, + aux_sym__interpolated_string_body, + STATE(1453), 1, + sym_text_interpolation, + STATE(1550), 1, + sym_variable_name, + STATE(1683), 1, + sym__simple_string_member_access_expression, + ACTIONS(3191), 2, + sym_encapsed_string_chars, + sym_escape_sequence, + STATE(1681), 2, + sym__complex_string_part, + sym__simple_string_part, + STATE(1684), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + [57029] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(3231), 1, sym_name, - ACTIONS(3086), 1, + ACTIONS(3237), 1, anon_sym_BSLASH, - STATE(1413), 1, + STATE(1454), 1, sym_text_interpolation, - STATE(1858), 1, + STATE(1863), 1, sym_namespace_use_clause, - STATE(2580), 1, + STATE(2640), 1, sym_namespace_name, - STATE(2605), 1, + STATE(2698), 1, sym_namespace_name_as_prefix, - ACTIONS(3084), 2, + ACTIONS(3235), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - STATE(1754), 2, + STATE(1803), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2964), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54078] = 4, + [57070] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1414), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(1455), 1, sym_text_interpolation, - ACTIONS(3088), 13, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3239), 4, 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, - [54103] = 4, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(2910), 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, + [57101] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - STATE(1415), 1, + ACTIONS(3231), 1, + sym_name, + ACTIONS(3243), 1, + anon_sym_BSLASH, + STATE(1456), 1, sym_text_interpolation, - ACTIONS(3090), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, + STATE(1915), 1, + sym_namespace_use_clause, + STATE(2648), 1, + sym_namespace_name, + STATE(2698), 1, + sym_namespace_name_as_prefix, + ACTIONS(3241), 2, aux_sym_namespace_use_declaration_token2, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_final_modifier_token1, - aux_sym_abstract_modifier_token1, - aux_sym_readonly_modifier_token1, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - anon_sym_POUND_LBRACK, - [54128] = 12, + aux_sym_namespace_use_declaration_token3, + STATE(1803), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3233), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57142] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2909), 1, - anon_sym_BSLASHu, - ACTIONS(3092), 1, - anon_sym_LBRACE, - ACTIONS(3094), 1, - anon_sym_DOLLAR, - STATE(1379), 1, - aux_sym__interpolated_string_body_heredoc, - STATE(1416), 1, + ACTIONS(3199), 1, + sym_name, + ACTIONS(3203), 1, + sym_grit_metavariable, + ACTIONS(3245), 1, + anon_sym_RBRACK, + STATE(1457), 1, sym_text_interpolation, - STATE(1450), 1, - sym_variable_name, - STATE(1568), 1, - sym__simple_string_member_access_expression, - ACTIONS(2907), 2, - sym_encapsed_string_chars_heredoc, - sym_escape_sequence, - STATE(1544), 2, - sym__complex_string_part, - sym__simple_string_part, - STATE(1567), 2, - sym__simple_string_subscript_expression, - sym_dynamic_variable_name, - [54168] = 12, + STATE(2282), 1, + sym_attribute, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + STATE(1906), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57185] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3199), 1, sym_name, - ACTIONS(3098), 1, - anon_sym_RBRACK, - STATE(1417), 1, + ACTIONS(3203), 1, + sym_grit_metavariable, + STATE(1458), 1, sym_text_interpolation, - STATE(2258), 1, + STATE(2282), 1, sym_attribute, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1784), 2, + STATE(1906), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2490), 3, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54208] = 12, + [57225] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3199), 1, sym_name, - ACTIONS(3100), 1, - anon_sym_RBRACK, - STATE(1418), 1, + ACTIONS(3203), 1, + sym_grit_metavariable, + STATE(1459), 1, sym_text_interpolation, - STATE(2258), 1, + STATE(2055), 1, sym_attribute, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - STATE(1784), 2, + STATE(1906), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2490), 3, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54248] = 10, + [57265] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_BSLASHu, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3249), 1, + anon_sym_DOLLAR, + STATE(1429), 1, + aux_sym__interpolated_string_body_heredoc, + STATE(1460), 1, + sym_text_interpolation, + STATE(1493), 1, + sym_variable_name, + STATE(1626), 1, + sym__simple_string_member_access_expression, + ACTIONS(3060), 2, + sym_encapsed_string_chars_heredoc, + sym_escape_sequence, + STATE(1591), 2, + sym__simple_string_subscript_expression, + sym_dynamic_variable_name, + STATE(1612), 2, + sym__complex_string_part, + sym__simple_string_part, + [57305] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3107), 1, + ACTIONS(3256), 1, anon_sym_AMP, - ACTIONS(3114), 1, + ACTIONS(3263), 1, anon_sym_PIPE, - STATE(1419), 1, + STATE(1461), 1, sym_text_interpolation, - STATE(1441), 1, + STATE(1479), 1, aux_sym_intersection_type_repeat1, - STATE(1499), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1511), 1, + STATE(1555), 1, aux_sym_union_type_repeat1, - ACTIONS(3109), 3, + STATE(1558), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3258), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3102), 4, + ACTIONS(3251), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [54284] = 11, + [57341] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3231), 1, sym_name, - STATE(1420), 1, + ACTIONS(3265), 1, + anon_sym_BSLASH, + STATE(1462), 1, sym_text_interpolation, - STATE(2258), 1, - sym_attribute, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(1958), 1, + sym_namespace_use_clause, + STATE(2560), 1, sym_namespace_name, - STATE(1784), 2, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(1803), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2490), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54321] = 5, + [57378] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1421), 1, + STATE(1463), 1, sym_text_interpolation, - ACTIONS(3116), 4, + ACTIONS(3267), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3118), 7, + ACTIONS(3269), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123128,92 +126251,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54346] = 10, + [57403] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3271), 1, + sym_name, + ACTIONS(3273), 1, + sym_grit_metavariable, + STATE(1464), 1, + sym_text_interpolation, + STATE(2697), 1, + sym_namespace_name, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(1831), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(3233), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57440] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(1752), 1, + ACTIONS(1860), 1, anon_sym_BSLASH, - ACTIONS(3120), 1, + ACTIONS(3275), 1, aux_sym_namespace_aliasing_clause_token1, - ACTIONS(3122), 1, + ACTIONS(3277), 1, aux_sym_use_instead_of_clause_token1, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(1422), 1, + STATE(1465), 1, sym_text_interpolation, - STATE(2456), 1, + STATE(2516), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54381] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1746), 1, - anon_sym_DOLLAR, - ACTIONS(1907), 1, - anon_sym_COLON_COLON, - ACTIONS(2870), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3124), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1423), 1, - sym_text_interpolation, - STATE(1776), 1, - sym_variable_name, - STATE(1780), 1, - sym_static_variable_declaration, - ACTIONS(1644), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [54416] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1907), 1, anon_sym_COLON_COLON, - ACTIONS(1977), 1, - anon_sym_COLON, - ACTIONS(2870), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3126), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1424), 1, - sym_text_interpolation, - ACTIONS(1644), 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, - [54447] = 5, + [57475] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1425), 1, + STATE(1466), 1, sym_text_interpolation, - ACTIONS(2972), 4, + ACTIONS(3279), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(2974), 7, + ACTIONS(3281), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123221,18 +126322,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54472] = 9, + [57500] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(322), 1, anon_sym_LT_LT_LT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3128), 1, + ACTIONS(3283), 1, sym_integer, - STATE(1426), 1, + STATE(1467), 1, sym_text_interpolation, - STATE(2327), 1, + STATE(2386), 1, sym__string, ACTIONS(318), 2, aux_sym_encapsed_string_token1, @@ -123240,125 +126341,143 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(320), 2, aux_sym_string_token1, anon_sym_SQUOTE, - STATE(866), 4, + STATE(932), 4, sym_encapsed_string, sym_string, sym_heredoc, sym_nowdoc, - [54505] = 9, + [57533] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(322), 1, - anon_sym_LT_LT_LT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3130), 1, - sym_integer, - STATE(1427), 1, + ACTIONS(3285), 1, + sym_name, + ACTIONS(3287), 1, + sym_grit_metavariable, + STATE(1468), 1, sym_text_interpolation, - STATE(2190), 1, - sym__string, - ACTIONS(318), 2, - aux_sym_encapsed_string_token1, - anon_sym_DQUOTE, - ACTIONS(320), 2, - aux_sym_string_token1, - anon_sym_SQUOTE, - STATE(866), 4, - sym_encapsed_string, - sym_string, - sym_heredoc, - sym_nowdoc, - [54538] = 10, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + STATE(2006), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [57570] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_DOLLAR, - ACTIONS(1907), 1, + ACTIONS(1964), 1, anon_sym_COLON_COLON, - ACTIONS(2870), 1, + ACTIONS(2088), 1, + anon_sym_COLON, + ACTIONS(3015), 1, aux_sym__arrow_function_header_token1, - ACTIONS(3124), 1, + ACTIONS(3289), 1, aux_sym_namespace_use_declaration_token2, - STATE(1428), 1, + STATE(1469), 1, sym_text_interpolation, - STATE(1776), 1, - sym_variable_name, - STATE(1855), 1, - sym_static_variable_declaration, - ACTIONS(1644), 5, + ACTIONS(1716), 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, - [54573] = 11, + [57601] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(575), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(3291), 1, sym_name, - ACTIONS(3132), 1, - anon_sym_BSLASH, - STATE(1429), 1, + ACTIONS(3293), 1, + sym_grit_metavariable, + STATE(1470), 1, sym_text_interpolation, - STATE(1880), 1, - sym_namespace_use_clause, - STATE(2486), 1, + STATE(2697), 1, sym_namespace_name, - STATE(2605), 1, + STATE(2698), 1, sym_namespace_name_as_prefix, - STATE(1754), 2, + STATE(1646), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2964), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54610] = 11, + [57638] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(322), 1, + anon_sym_LT_LT_LT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2962), 1, - sym_name, - STATE(1430), 1, + ACTIONS(3295), 1, + sym_integer, + STATE(1471), 1, sym_text_interpolation, - STATE(1993), 1, - sym_namespace_use_clause, - STATE(2603), 1, - sym_namespace_name, - STATE(2605), 1, - sym_namespace_name_as_prefix, - STATE(1754), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2964), 3, + STATE(2323), 1, + sym__string, + ACTIONS(318), 2, + aux_sym_encapsed_string_token1, + anon_sym_DQUOTE, + ACTIONS(320), 2, + aux_sym_string_token1, + anon_sym_SQUOTE, + STATE(932), 4, + sym_encapsed_string, + sym_string, + sym_heredoc, + sym_nowdoc, + [57671] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(1472), 1, + sym_text_interpolation, + ACTIONS(3297), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54647] = 5, + sym_name, + ACTIONS(3299), 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, + [57696] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1431), 1, + STATE(1473), 1, sym_text_interpolation, - ACTIONS(3134), 4, + ACTIONS(3239), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3136), 7, + ACTIONS(2910), 7, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -123366,1628 +126485,1707 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54672] = 11, + [57721] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(575), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1812), 1, + anon_sym_DOLLAR, + ACTIONS(1964), 1, + anon_sym_COLON_COLON, + ACTIONS(3015), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3301), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1474), 1, + sym_text_interpolation, + STATE(1846), 1, + sym_static_variable_declaration, + STATE(1847), 1, + sym_variable_name, + ACTIONS(1716), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [57756] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(3303), 1, sym_name, - ACTIONS(3138), 1, - anon_sym_BSLASH, - STATE(1432), 1, + ACTIONS(3305), 1, + sym_grit_metavariable, + STATE(1475), 1, sym_text_interpolation, - STATE(1906), 1, - sym_namespace_use_clause, - STATE(2591), 1, - sym_namespace_name, - STATE(2605), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(1754), 2, + STATE(2697), 1, + sym_namespace_name, + STATE(1850), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2964), 3, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54709] = 5, + [57793] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1433), 1, + ACTIONS(1812), 1, + anon_sym_DOLLAR, + ACTIONS(1964), 1, + anon_sym_COLON_COLON, + ACTIONS(3015), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3301), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1476), 1, sym_text_interpolation, - ACTIONS(3140), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(3142), 7, - anon_sym_AMP, + STATE(1847), 1, + sym_variable_name, + STATE(1911), 1, + sym_static_variable_declaration, + ACTIONS(1716), 5, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [54734] = 11, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [57828] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3231), 1, sym_name, - STATE(1434), 1, + STATE(1477), 1, sym_text_interpolation, - STATE(2011), 1, - sym_attribute, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2083), 1, + sym_namespace_use_clause, + STATE(2697), 1, sym_namespace_name, - STATE(1784), 2, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(1803), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2490), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54771] = 10, + [57865] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3144), 1, + ACTIONS(3231), 1, sym_name, - STATE(1435), 1, + ACTIONS(3307), 1, + anon_sym_BSLASH, + STATE(1478), 1, sym_text_interpolation, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(1964), 1, + sym_namespace_use_clause, + STATE(2660), 1, sym_namespace_name, - STATE(2140), 2, + STATE(2698), 1, + sym_namespace_name_as_prefix, + STATE(1803), 2, sym_qualified_name, sym__reserved_identifier, - ACTIONS(2490), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54805] = 7, + [57902] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1907), 1, - anon_sym_COLON_COLON, - ACTIONS(2870), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3126), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1436), 1, + ACTIONS(3256), 1, + anon_sym_AMP, + STATE(1479), 1, sym_text_interpolation, - ACTIONS(1644), 7, - anon_sym_COMMA, + STATE(1519), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3309), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3311), 4, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [57930] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1674), 1, anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, + STATE(1480), 1, + sym_text_interpolation, + ACTIONS(1686), 3, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54833] = 9, + [57958] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(3146), 1, - anon_sym_RPAREN, - STATE(589), 1, - sym_arguments, - STATE(1437), 1, + ACTIONS(1964), 1, + anon_sym_COLON_COLON, + ACTIONS(3015), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3289), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1481), 1, sym_text_interpolation, - STATE(2057), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1616), 5, + ACTIONS(1716), 7, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_COLON_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54865] = 10, + [57986] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3148), 1, + ACTIONS(3313), 1, sym_name, - STATE(1438), 1, + ACTIONS(3315), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + sym_grit_metavariable, + STATE(1482), 1, sym_text_interpolation, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - STATE(2115), 2, - sym_qualified_name, + STATE(1609), 1, sym__reserved_identifier, - ACTIONS(2490), 3, + STATE(1605), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54899] = 5, + [58020] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1483), 1, + sym_text_interpolation, + ACTIONS(1748), 5, + sym_encapsed_string_chars_heredoc, + sym_encapsed_string_chars_after_variable_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + ACTIONS(1750), 5, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + [58044] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1439), 1, + STATE(1484), 1, sym_text_interpolation, - ACTIONS(3150), 4, + ACTIONS(3319), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3152), 6, + ACTIONS(3321), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54923] = 10, + [58068] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3154), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(3323), 1, sym_name, - STATE(1440), 1, - sym_text_interpolation, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - STATE(1799), 2, - sym_qualified_name, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(3327), 1, + sym_grit_metavariable, + STATE(696), 1, sym__reserved_identifier, - ACTIONS(2490), 3, + STATE(1485), 1, + sym_text_interpolation, + STATE(871), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54957] = 7, + [58102] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1640), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3107), 1, - anon_sym_AMP, - STATE(1441), 1, + ACTIONS(3329), 1, + sym_name, + ACTIONS(3331), 1, + anon_sym_LBRACE, + ACTIONS(3333), 1, + sym_grit_metavariable, + STATE(717), 1, + sym__reserved_identifier, + STATE(1486), 1, sym_text_interpolation, - STATE(1443), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3156), 4, + STATE(685), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - ACTIONS(3158), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [54985] = 10, + [58136] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1648), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3335), 1, sym_name, - STATE(1442), 1, + ACTIONS(3339), 1, + anon_sym_LBRACE, + ACTIONS(3341), 1, + sym_grit_metavariable, + STATE(1487), 1, sym_text_interpolation, - STATE(2603), 1, - sym_namespace_name, - STATE(2605), 1, - sym_namespace_name_as_prefix, - STATE(1648), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2964), 3, + ACTIONS(3337), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55019] = 6, + STATE(815), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [58168] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1648), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3164), 1, - anon_sym_AMP, - STATE(1443), 2, + ACTIONS(3343), 1, + sym_name, + ACTIONS(3345), 1, + anon_sym_LBRACE, + ACTIONS(3347), 1, + sym_grit_metavariable, + STATE(1488), 1, sym_text_interpolation, - aux_sym_intersection_type_repeat1, - ACTIONS(3162), 4, + ACTIONS(3337), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - ACTIONS(3167), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [55045] = 9, + STATE(808), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [58200] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(3169), 1, - anon_sym_COMMA, - ACTIONS(3171), 1, - anon_sym_RPAREN, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(1444), 1, + STATE(1489), 1, sym_text_interpolation, - STATE(2155), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1616), 5, + ACTIONS(1943), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55077] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - STATE(1445), 1, - sym_text_interpolation, - ACTIONS(1684), 5, - sym_encapsed_string_chars_heredoc, - sym_encapsed_string_chars_after_variable_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - ACTIONS(1686), 5, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - [55101] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3173), 1, - sym_name, - STATE(1446), 1, - sym_text_interpolation, - STATE(2603), 1, - sym_namespace_name, - STATE(2605), 1, - sym_namespace_name_as_prefix, - STATE(1831), 2, - sym_qualified_name, - sym__reserved_identifier, - ACTIONS(2964), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55135] = 5, + [58228] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1447), 1, + STATE(1490), 1, sym_text_interpolation, - ACTIONS(3175), 4, + ACTIONS(3349), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(3178), 6, + ACTIONS(3351), 6, anon_sym_AMP, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [55159] = 5, + [58252] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1448), 1, + ACTIONS(1856), 1, + anon_sym_DOLLAR, + ACTIONS(3353), 1, + sym_name, + ACTIONS(3355), 1, + anon_sym_LBRACE, + ACTIONS(3357), 1, + sym_grit_metavariable, + STATE(1491), 1, sym_text_interpolation, - ACTIONS(3162), 4, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - ACTIONS(3167), 6, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [55183] = 5, + STATE(744), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [58284] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - STATE(1449), 1, + ACTIONS(3359), 1, + sym_name, + ACTIONS(3361), 1, + anon_sym_LBRACE, + ACTIONS(3363), 1, + sym_grit_metavariable, + STATE(1492), 1, sym_text_interpolation, - ACTIONS(3181), 4, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - ACTIONS(3183), 6, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [55207] = 8, + STATE(590), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [58316] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(3187), 1, + ACTIONS(3367), 1, anon_sym_DASH_GT, - ACTIONS(3189), 1, + ACTIONS(3369), 1, anon_sym_LBRACK, - ACTIONS(3193), 1, + ACTIONS(3373), 1, sym_encapsed_string_chars_after_variable_heredoc, - STATE(1450), 1, + STATE(1493), 1, sym_text_interpolation, - ACTIONS(3185), 3, + ACTIONS(3365), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3191), 4, + ACTIONS(3371), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [55237] = 9, + [58346] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(3169), 1, + ACTIONS(3375), 1, anon_sym_COMMA, - ACTIONS(3195), 1, + ACTIONS(3377), 1, anon_sym_RPAREN, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(1451), 1, + STATE(1494), 1, sym_text_interpolation, - STATE(2071), 1, + STATE(2149), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55269] = 7, + [58378] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(1452), 1, - sym_text_interpolation, - ACTIONS(1622), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1616), 5, + ACTIONS(1856), 1, + anon_sym_DOLLAR, + ACTIONS(3379), 1, + sym_name, + ACTIONS(3381), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55297] = 7, + ACTIONS(3383), 1, + sym_grit_metavariable, + STATE(1495), 1, + sym_text_interpolation, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(743), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [58410] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(1453), 1, + ACTIONS(3385), 1, + sym_name, + STATE(1496), 1, sym_text_interpolation, - ACTIONS(1869), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55325] = 5, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + STATE(2539), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [58444] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - STATE(1454), 1, + ACTIONS(3387), 1, + sym_name, + ACTIONS(3389), 1, + anon_sym_LBRACE, + ACTIONS(3391), 1, + sym_grit_metavariable, + STATE(1497), 1, sym_text_interpolation, - ACTIONS(3197), 4, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, + STATE(589), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [58476] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1856), 1, + anon_sym_DOLLAR, + ACTIONS(3393), 1, sym_name, - ACTIONS(3199), 6, - anon_sym_AMP, + ACTIONS(3395), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [55349] = 7, + ACTIONS(3397), 1, + sym_grit_metavariable, + STATE(1498), 1, + sym_text_interpolation, + STATE(1616), 1, + sym__reserved_identifier, + STATE(749), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [58510] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3205), 1, - anon_sym_PIPE, - STATE(1455), 1, - sym_text_interpolation, - STATE(1457), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3203), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1856), 1, anon_sym_DOLLAR, - ACTIONS(3201), 4, + ACTIONS(3323), 1, + sym_name, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(3327), 1, + sym_grit_metavariable, + STATE(696), 1, + sym__reserved_identifier, + STATE(1499), 1, + sym_text_interpolation, + STATE(739), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - [55376] = 8, + [58544] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1757), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(676), 1, + ACTIONS(3375), 1, + anon_sym_COMMA, + ACTIONS(3377), 1, + anon_sym_RPAREN, + STATE(599), 1, sym_arguments, - STATE(1456), 1, + STATE(1500), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + STATE(2149), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55405] = 7, + [58576] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3205), 1, - anon_sym_PIPE, - STATE(1457), 1, - sym_text_interpolation, - STATE(1513), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3209), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(1856), 1, anon_sym_DOLLAR, - ACTIONS(3207), 4, + ACTIONS(3399), 1, + sym_name, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3403), 1, + sym_grit_metavariable, + STATE(1501), 1, + sym_text_interpolation, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - sym_name, - [55432] = 8, + STATE(735), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [58608] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_DOLLAR, - ACTIONS(3211), 1, + ACTIONS(3405), 1, sym_name, - ACTIONS(3213), 1, - anon_sym_LBRACE, - STATE(1458), 1, + STATE(1502), 1, sym_text_interpolation, - ACTIONS(2964), 3, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + STATE(2142), 2, + sym_qualified_name, + sym__reserved_identifier, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(829), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [55461] = 9, + [58642] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(3313), 1, sym_name, - ACTIONS(3217), 1, + ACTIONS(3315), 1, anon_sym_LBRACE, - STATE(1459), 1, + ACTIONS(3317), 1, + sym_grit_metavariable, + STATE(1503), 1, sym_text_interpolation, - STATE(1561), 1, + STATE(1609), 1, sym__reserved_identifier, - STATE(1574), 2, + STATE(875), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2490), 3, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55492] = 8, + [58676] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(1856), 1, + anon_sym_DOLLAR, + ACTIONS(3407), 1, sym_name, - ACTIONS(3221), 1, + ACTIONS(3409), 1, anon_sym_LBRACE, - STATE(1460), 1, + ACTIONS(3411), 1, + sym_grit_metavariable, + STATE(1504), 1, sym_text_interpolation, - ACTIONS(2490), 3, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(582), 3, + STATE(734), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55521] = 9, + [58708] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, + STATE(1505), 1, + sym_text_interpolation, + ACTIONS(3413), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3415), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3215), 1, + [58732] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1648), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3417), 1, sym_name, - ACTIONS(3217), 1, + ACTIONS(3419), 1, anon_sym_LBRACE, - STATE(1461), 1, - sym_text_interpolation, - STATE(1561), 1, + ACTIONS(3421), 1, + sym_grit_metavariable, + STATE(864), 1, sym__reserved_identifier, - STATE(713), 2, + STATE(1506), 1, + sym_text_interpolation, + STATE(805), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2490), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55552] = 8, + [58766] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1771), 1, + ACTIONS(643), 1, anon_sym_DOLLAR, - ACTIONS(3223), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3387), 1, sym_name, - ACTIONS(3225), 1, + ACTIONS(3389), 1, anon_sym_LBRACE, - STATE(1462), 1, + ACTIONS(3391), 1, + sym_grit_metavariable, + STATE(1507), 1, sym_text_interpolation, - ACTIONS(2964), 3, + ACTIONS(3423), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(812), 3, + STATE(589), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55581] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(1463), 1, - sym_text_interpolation, - ACTIONS(2652), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55608] = 8, + [58798] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1771), 1, + ACTIONS(643), 1, anon_sym_DOLLAR, - ACTIONS(3227), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3359), 1, sym_name, - ACTIONS(3229), 1, + ACTIONS(3361), 1, anon_sym_LBRACE, - STATE(1464), 1, + ACTIONS(3363), 1, + sym_grit_metavariable, + STATE(1508), 1, sym_text_interpolation, - ACTIONS(2964), 3, + ACTIONS(3423), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(835), 3, + STATE(590), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55637] = 9, + [58830] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1856), 1, anon_sym_DOLLAR, - ACTIONS(3231), 1, + ACTIONS(3323), 1, sym_name, - ACTIONS(3233), 1, + ACTIONS(3325), 1, anon_sym_LBRACE, - STATE(667), 1, + ACTIONS(3327), 1, + sym_grit_metavariable, + STATE(696), 1, sym__reserved_identifier, - STATE(1465), 1, + STATE(1509), 1, sym_text_interpolation, - STATE(854), 2, + STATE(748), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2490), 3, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55668] = 8, + [58864] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3235), 1, + ACTIONS(3425), 1, sym_name, - ACTIONS(3239), 1, + ACTIONS(3427), 1, anon_sym_LBRACE, - STATE(1466), 1, + ACTIONS(3429), 1, + sym_grit_metavariable, + STATE(1510), 1, sym_text_interpolation, - ACTIONS(3237), 3, + STATE(1593), 1, + sym__reserved_identifier, + STATE(805), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2588), 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, - [55697] = 8, + [58898] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(3241), 1, + ACTIONS(3431), 1, sym_name, - ACTIONS(3243), 1, + ACTIONS(3433), 1, anon_sym_LBRACE, - STATE(1467), 1, + ACTIONS(3435), 1, + sym_grit_metavariable, + STATE(1511), 1, sym_text_interpolation, - ACTIONS(2964), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(855), 3, + STATE(874), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55726] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3185), 1, - anon_sym_BSLASHu, - ACTIONS(3245), 1, - anon_sym_DASH_GT, - ACTIONS(3247), 1, - anon_sym_LBRACK, - ACTIONS(3249), 1, - sym_execution_string_chars_after_variable, - STATE(1468), 1, - sym_text_interpolation, - ACTIONS(3191), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [55755] = 5, + [58930] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1469), 1, - sym_text_interpolation, - ACTIONS(3251), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - ACTIONS(3253), 5, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(1826), 1, anon_sym_DOLLAR, - [55778] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3255), 1, + ACTIONS(3437), 1, sym_name, - ACTIONS(3259), 1, + ACTIONS(3439), 1, anon_sym_LBRACE, - STATE(1470), 1, + ACTIONS(3441), 1, + sym_grit_metavariable, + STATE(1512), 1, sym_text_interpolation, - ACTIONS(3257), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(604), 3, + STATE(878), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55807] = 8, + [58962] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(1856), 1, + anon_sym_DOLLAR, + ACTIONS(3443), 1, sym_name, - ACTIONS(3263), 1, + ACTIONS(3445), 1, anon_sym_LBRACE, - STATE(1471), 1, + ACTIONS(3447), 1, + sym_grit_metavariable, + STATE(1513), 1, sym_text_interpolation, - ACTIONS(3257), 3, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(605), 3, + STATE(733), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [55836] = 7, + [58994] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(589), 1, - sym_arguments, - STATE(1472), 1, - sym_text_interpolation, - ACTIONS(3265), 2, + ACTIONS(3375), 1, anon_sym_COMMA, + ACTIONS(3449), 1, anon_sym_RPAREN, - ACTIONS(1616), 5, + STATE(599), 1, + sym_arguments, + STATE(1514), 1, + sym_text_interpolation, + STATE(2172), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55863] = 10, + [59026] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3267), 1, - sym_name, - ACTIONS(3269), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(1473), 1, + ACTIONS(3375), 1, + anon_sym_COMMA, + ACTIONS(3449), 1, + anon_sym_RPAREN, + STATE(599), 1, + sym_arguments, + STATE(1515), 1, sym_text_interpolation, - STATE(1539), 1, - sym_reference_modifier, - STATE(1603), 1, - sym_formal_parameters, - STATE(2323), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [55896] = 9, + STATE(2172), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59058] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1771), 1, + ACTIONS(643), 1, anon_sym_DOLLAR, - ACTIONS(3271), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3393), 1, sym_name, - ACTIONS(3273), 1, + ACTIONS(3395), 1, anon_sym_LBRACE, - STATE(1474), 1, + ACTIONS(3397), 1, + sym_grit_metavariable, + STATE(1516), 1, sym_text_interpolation, - STATE(1569), 1, + STATE(1616), 1, sym__reserved_identifier, - STATE(811), 2, + STATE(1585), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2490), 3, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55927] = 9, + [59092] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3275), 1, - sym_name, - ACTIONS(3277), 1, - anon_sym_LBRACE, - STATE(845), 1, - sym__reserved_identifier, - STATE(1475), 1, + STATE(1517), 1, sym_text_interpolation, - STATE(603), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2964), 3, + ACTIONS(3451), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55958] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1907), 1, - anon_sym_COLON_COLON, - ACTIONS(1977), 1, - anon_sym_COLON, - STATE(1476), 1, - sym_text_interpolation, - ACTIONS(1644), 7, - anon_sym_COMMA, + sym_name, + ACTIONS(3453), 6, + anon_sym_AMP, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [55983] = 8, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [59116] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1590), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3279), 1, - sym_name, - ACTIONS(3283), 1, - anon_sym_LBRACE, - STATE(1477), 1, + STATE(1518), 1, sym_text_interpolation, - ACTIONS(3281), 3, + ACTIONS(3455), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(778), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56012] = 8, + sym_name, + ACTIONS(3458), 6, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [59140] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(3285), 1, - anon_sym_EQ, - STATE(1478), 1, - sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2974), 2, + ACTIONS(3461), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2972), 4, + STATE(1519), 2, + sym_text_interpolation, + aux_sym_intersection_type_repeat1, + ACTIONS(3451), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [56041] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3185), 1, - anon_sym_BSLASHu, - ACTIONS(3287), 1, - anon_sym_DASH_GT, - ACTIONS(3289), 1, - anon_sym_LBRACK, - ACTIONS(3291), 1, - sym_encapsed_string_chars_after_variable, - STATE(1479), 1, - sym_text_interpolation, - ACTIONS(3191), 5, - sym_encapsed_string_chars, + ACTIONS(3453), 4, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, + anon_sym_EQ_GT, + anon_sym_RPAREN, anon_sym_DOLLAR, - [56070] = 8, + [59166] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3464), 1, sym_name, - ACTIONS(3297), 1, - anon_sym_LBRACE, - STATE(1480), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + ACTIONS(3468), 1, + sym_grit_metavariable, + STATE(1520), 1, sym_text_interpolation, - ACTIONS(3295), 3, + STATE(1577), 1, + sym_reference_modifier, + STATE(1696), 1, + sym_formal_parameters, + STATE(2411), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(584), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56099] = 8, + [59202] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3464), 1, sym_name, - ACTIONS(3221), 1, - anon_sym_LBRACE, - STATE(1481), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + ACTIONS(3468), 1, + sym_grit_metavariable, + STATE(1521), 1, sym_text_interpolation, - ACTIONS(3295), 3, + STATE(1570), 1, + sym_reference_modifier, + STATE(1639), 1, + sym_formal_parameters, + STATE(2411), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(582), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56128] = 9, + [59238] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1590), 1, + ACTIONS(326), 1, anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3299), 1, + ACTIONS(3470), 1, sym_name, - ACTIONS(3301), 1, + ACTIONS(3474), 1, anon_sym_LBRACE, - STATE(827), 1, - sym__reserved_identifier, - STATE(1482), 1, + ACTIONS(3476), 1, + sym_grit_metavariable, + STATE(1522), 1, sym_text_interpolation, - STATE(774), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2964), 3, + ACTIONS(3472), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56159] = 9, + STATE(624), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [59270] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, + ACTIONS(326), 1, anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3303), 1, + ACTIONS(3478), 1, sym_name, - ACTIONS(3305), 1, + ACTIONS(3480), 1, anon_sym_LBRACE, - STATE(694), 1, - sym__reserved_identifier, - STATE(1483), 1, + ACTIONS(3482), 1, + sym_grit_metavariable, + STATE(1523), 1, sym_text_interpolation, - STATE(653), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2490), 3, + ACTIONS(3472), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56190] = 9, + STATE(622), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [59302] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1590), 1, + ACTIONS(326), 1, anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3307), 1, + ACTIONS(3484), 1, sym_name, - ACTIONS(3309), 1, + ACTIONS(3486), 1, anon_sym_LBRACE, - STATE(1484), 1, - sym_text_interpolation, - STATE(1533), 1, + ACTIONS(3488), 1, + sym_grit_metavariable, + STATE(876), 1, sym__reserved_identifier, - STATE(774), 2, + STATE(1524), 1, + sym_text_interpolation, + STATE(617), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(2490), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56221] = 7, + [59336] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(1485), 1, + STATE(1525), 1, sym_text_interpolation, - ACTIONS(3311), 2, + ACTIONS(1943), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56248] = 8, + [59364] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1755), 1, - anon_sym_LPAREN, - STATE(744), 1, - sym_arguments, - STATE(1486), 1, - sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + ACTIONS(1856), 1, + anon_sym_DOLLAR, + ACTIONS(3490), 1, + sym_name, + ACTIONS(3492), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [56277] = 8, + ACTIONS(3494), 1, + sym_grit_metavariable, + STATE(1526), 1, + sym_text_interpolation, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(737), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [59396] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(3313), 1, + ACTIONS(3323), 1, sym_name, - ACTIONS(3315), 1, + ACTIONS(3325), 1, anon_sym_LBRACE, - STATE(1487), 1, + ACTIONS(3327), 1, + sym_grit_metavariable, + STATE(696), 1, + sym__reserved_identifier, + STATE(1527), 1, + sym_text_interpolation, + STATE(884), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [59430] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1640), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3496), 1, + sym_name, + ACTIONS(3500), 1, + anon_sym_LBRACE, + ACTIONS(3502), 1, + sym_grit_metavariable, + STATE(1528), 1, sym_text_interpolation, - ACTIONS(2490), 3, + ACTIONS(3498), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(698), 3, + STATE(669), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56306] = 8, + [59462] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1590), 1, + ACTIONS(1640), 1, anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3504), 1, sym_name, - ACTIONS(3319), 1, + ACTIONS(3506), 1, anon_sym_LBRACE, - STATE(1488), 1, + ACTIONS(3508), 1, + sym_grit_metavariable, + STATE(1529), 1, sym_text_interpolation, - ACTIONS(3281), 3, + ACTIONS(3498), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(776), 3, + STATE(674), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56335] = 9, + [59494] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(3231), 1, + ACTIONS(3510), 1, sym_name, - ACTIONS(3233), 1, + ACTIONS(3512), 1, anon_sym_LBRACE, - STATE(667), 1, - sym__reserved_identifier, - STATE(1489), 1, + ACTIONS(3514), 1, + sym_grit_metavariable, + STATE(1530), 1, sym_text_interpolation, - STATE(722), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2490), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56366] = 10, + STATE(877), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [59526] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3267), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(3516), 1, sym_name, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1490), 1, + ACTIONS(3518), 1, + anon_sym_LBRACE, + ACTIONS(3520), 1, + sym_grit_metavariable, + STATE(1531), 1, sym_text_interpolation, - STATE(1564), 1, - sym_reference_modifier, - STATE(1625), 1, - sym_formal_parameters, - STATE(2323), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56399] = 7, + STATE(879), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [59558] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(1491), 1, + STATE(1532), 1, sym_text_interpolation, - ACTIONS(2546), 2, + ACTIONS(1686), 3, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1616), 5, + anon_sym_RBRACK, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56426] = 5, + [59586] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1686), 1, - anon_sym_BSLASHu, - STATE(1492), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(3522), 1, + anon_sym_RPAREN, + STATE(599), 1, + sym_arguments, + STATE(1533), 1, sym_text_interpolation, - ACTIONS(1684), 8, - sym_execution_string_chars, - sym_execution_string_chars_after_variable, + STATE(2075), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [56449] = 8, + [59618] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1971), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(869), 1, + ACTIONS(3522), 1, + anon_sym_RPAREN, + STATE(599), 1, sym_arguments, - STATE(1493), 1, + STATE(1534), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + STATE(2075), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56478] = 8, + [59650] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(3321), 1, + ACTIONS(3524), 1, sym_name, - ACTIONS(3323), 1, + ACTIONS(3526), 1, anon_sym_LBRACE, - STATE(1494), 1, + ACTIONS(3528), 1, + sym_grit_metavariable, + STATE(1535), 1, sym_text_interpolation, - ACTIONS(2490), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(715), 3, + STATE(882), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56507] = 8, + [59682] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1826), 1, anon_sym_DOLLAR, - ACTIONS(3325), 1, + ACTIONS(3530), 1, sym_name, - ACTIONS(3327), 1, + ACTIONS(3532), 1, anon_sym_LBRACE, - STATE(1495), 1, + ACTIONS(3534), 1, + sym_grit_metavariable, + STATE(1536), 1, sym_text_interpolation, - ACTIONS(2490), 3, + ACTIONS(3233), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(703), 3, + STATE(883), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56536] = 8, + [59714] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1785), 1, + ACTIONS(643), 1, anon_sym_DOLLAR, - ACTIONS(3329), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3323), 1, sym_name, - ACTIONS(3331), 1, + ACTIONS(3325), 1, anon_sym_LBRACE, - STATE(1496), 1, + ACTIONS(3327), 1, + sym_grit_metavariable, + STATE(696), 1, + sym__reserved_identifier, + STATE(1537), 1, sym_text_interpolation, - ACTIONS(2490), 3, + STATE(587), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(701), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56565] = 7, + [59748] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(1497), 1, + STATE(1538), 1, sym_text_interpolation, - ACTIONS(2548), 2, + ACTIONS(3536), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56592] = 8, + [59775] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_DOLLAR, - ACTIONS(3333), 1, - sym_name, - ACTIONS(3335), 1, - anon_sym_LBRACE, - STATE(1498), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, + STATE(1539), 1, sym_text_interpolation, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(709), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56621] = 7, + ACTIONS(2742), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59802] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3205), 1, - anon_sym_PIPE, - STATE(1499), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, + STATE(1540), 1, sym_text_interpolation, - STATE(1513), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3339), 3, + ACTIONS(3538), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1682), 5, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - ACTIONS(3337), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [56648] = 8, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59829] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_DOLLAR, - ACTIONS(3341), 1, - sym_name, - ACTIONS(3343), 1, - anon_sym_LBRACE, - STATE(1500), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, + STATE(1541), 1, sym_text_interpolation, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(719), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56677] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1771), 1, - anon_sym_DOLLAR, - ACTIONS(3231), 1, - sym_name, - ACTIONS(3233), 1, + ACTIONS(2726), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1682), 5, anon_sym_LBRACE, - STATE(667), 1, - sym__reserved_identifier, - STATE(1501), 1, - sym_text_interpolation, - STATE(823), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [56708] = 9, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59856] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3271), 1, - sym_name, - ACTIONS(3273), 1, - anon_sym_LBRACE, - STATE(1502), 1, + ACTIONS(3540), 1, + anon_sym_PIPE, + STATE(1542), 2, sym_text_interpolation, - STATE(1569), 1, - sym__reserved_identifier, - STATE(1571), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [56739] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3345), 1, - sym_name, - ACTIONS(3347), 1, + aux_sym_union_type_repeat1, + ACTIONS(3351), 3, anon_sym_LBRACE, - STATE(1503), 1, - sym_text_interpolation, - ACTIONS(3237), 3, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3349), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(652), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56768] = 7, + sym_name, + [59881] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(1504), 1, + STATE(1543), 1, sym_text_interpolation, - ACTIONS(2640), 2, + ACTIONS(2728), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56795] = 8, + [59908] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(1969), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, - STATE(805), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(702), 1, sym_arguments, - STATE(1505), 1, + STATE(1544), 1, sym_text_interpolation, - STATE(2456), 1, + STATE(2516), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56824] = 8, + [59937] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3293), 1, - sym_name, - ACTIONS(3297), 1, - anon_sym_LBRACE, - STATE(1506), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(3543), 1, + anon_sym_EQ, + STATE(1545), 1, sym_text_interpolation, - ACTIONS(2490), 3, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2910), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3239), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(584), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56853] = 8, + sym_name, + [59966] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(1752), 1, + STATE(599), 1, + sym_arguments, + STATE(1546), 1, + sym_text_interpolation, + ACTIONS(3538), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [59993] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, anon_sym_BSLASH, - STATE(589), 1, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1798), 1, + sym_name, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1473), 1, + sym_qualified_name, + STATE(1547), 1, + sym_text_interpolation, + STATE(1833), 1, + sym_named_type, + STATE(2095), 1, + sym_type_list, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + [60030] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(937), 1, sym_arguments, - STATE(1507), 1, + STATE(1548), 1, sym_text_interpolation, - STATE(2456), 1, + STATE(2516), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56882] = 5, + [60059] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1686), 1, + ACTIONS(1750), 1, anon_sym_BSLASHu, - STATE(1508), 1, + STATE(1549), 1, sym_text_interpolation, - ACTIONS(1684), 8, + ACTIONS(1748), 8, sym_encapsed_string_chars, sym_encapsed_string_chars_after_variable, anon_sym_LBRACE, @@ -124996,19167 +128194,19915 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [56905] = 8, + [60082] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_DOLLAR, - ACTIONS(3349), 1, - sym_name, - ACTIONS(3351), 1, + ACTIONS(3365), 1, + anon_sym_BSLASHu, + ACTIONS(3545), 1, + anon_sym_DASH_GT, + ACTIONS(3547), 1, + anon_sym_LBRACK, + ACTIONS(3549), 1, + sym_encapsed_string_chars_after_variable, + STATE(1550), 1, + sym_text_interpolation, + ACTIONS(3371), 5, + sym_encapsed_string_chars, anon_sym_LBRACE, - STATE(1509), 1, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [60111] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3365), 1, + anon_sym_BSLASHu, + ACTIONS(3551), 1, + anon_sym_DASH_GT, + ACTIONS(3553), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + sym_execution_string_chars_after_variable, + STATE(1551), 1, sym_text_interpolation, - ACTIONS(2964), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(856), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [56934] = 6, + ACTIONS(3371), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [60140] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3557), 1, anon_sym_PIPE, - STATE(1510), 2, + STATE(1552), 2, sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3199), 3, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3321), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3197), 4, + ACTIONS(3319), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [56959] = 7, + [60165] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1750), 1, + anon_sym_BSLASHu, + STATE(1553), 1, + sym_text_interpolation, + ACTIONS(1748), 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, + [60188] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(2074), 1, + anon_sym_LPAREN, + STATE(843), 1, + sym_arguments, + STATE(1554), 1, + sym_text_interpolation, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [60217] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3564), 1, anon_sym_PIPE, - STATE(1510), 1, + STATE(1542), 1, aux_sym_union_type_repeat1, - STATE(1511), 1, + STATE(1555), 1, sym_text_interpolation, - ACTIONS(3358), 3, + ACTIONS(3562), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3356), 4, + ACTIONS(3560), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [56986] = 8, + [60244] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1771), 1, - anon_sym_DOLLAR, - ACTIONS(3362), 1, - sym_name, - ACTIONS(3364), 1, - anon_sym_LBRACE, - STATE(1512), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_arguments, + STATE(1556), 1, sym_text_interpolation, - ACTIONS(2964), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(809), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [57015] = 6, + ACTIONS(2796), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [60271] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3366), 1, + ACTIONS(3570), 1, anon_sym_PIPE, - STATE(1513), 2, + STATE(1557), 1, sym_text_interpolation, + STATE(1559), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3152), 3, + ACTIONS(3568), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_DOLLAR, - ACTIONS(3150), 4, + ACTIONS(3566), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [57040] = 9, + [60298] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3231), 1, - sym_name, - ACTIONS(3233), 1, - anon_sym_LBRACE, - STATE(667), 1, - sym__reserved_identifier, - STATE(1514), 1, + ACTIONS(3570), 1, + anon_sym_PIPE, + STATE(1552), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1558), 1, sym_text_interpolation, - STATE(583), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2490), 3, + ACTIONS(3574), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3572), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57071] = 9, + sym_name, + [60325] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_DOLLAR, - ACTIONS(3231), 1, - sym_name, - ACTIONS(3233), 1, - anon_sym_LBRACE, - STATE(667), 1, - sym__reserved_identifier, - STATE(1515), 1, + ACTIONS(3570), 1, + anon_sym_PIPE, + STATE(1552), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1559), 1, sym_text_interpolation, - STATE(684), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2490), 3, + ACTIONS(3578), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + ACTIONS(3576), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57102] = 7, + sym_name, + [60352] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(599), 1, sym_arguments, - STATE(1516), 1, + STATE(1560), 1, sym_text_interpolation, - ACTIONS(3369), 2, + ACTIONS(3536), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57129] = 11, + [60379] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(226), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(597), 1, aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, + ACTIONS(1798), 1, sym_name, - STATE(1425), 1, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1473), 1, sym_qualified_name, - STATE(1517), 1, + STATE(1561), 1, sym_text_interpolation, - STATE(1818), 1, + STATE(1833), 1, sym_named_type, - STATE(2087), 1, + STATE(2177), 1, sym_type_list, - STATE(2496), 1, + STATE(2601), 1, sym_namespace_name_as_prefix, - STATE(2603), 1, + STATE(2697), 1, sym_namespace_name, - [57163] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1070), 1, - sym_declaration_list, - STATE(1518), 1, - sym_text_interpolation, - STATE(1632), 1, - sym_arguments, - STATE(1801), 1, - sym_base_clause, - STATE(2299), 1, - sym_class_interface_clause, - [57197] = 8, + [60416] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(989), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3377), 1, - aux_sym_catch_clause_token1, - ACTIONS(3380), 1, - aux_sym_finally_clause_token1, - ACTIONS(987), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - STATE(1519), 2, - sym_text_interpolation, - aux_sym_try_statement_repeat1, - STATE(1738), 2, - sym_catch_clause, - sym_finally_clause, - [57225] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1732), 1, - sym_name, - STATE(1425), 1, - sym_qualified_name, - STATE(1520), 1, + ACTIONS(1964), 1, + anon_sym_COLON_COLON, + ACTIONS(2088), 1, + anon_sym_COLON, + STATE(1562), 1, sym_text_interpolation, - STATE(1818), 1, - sym_named_type, - STATE(2068), 1, - sym_type_list, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - [57259] = 11, + ACTIONS(1716), 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, + [60441] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(968), 1, - sym_declaration_list, - STATE(1521), 1, - sym_text_interpolation, - STATE(1576), 1, + STATE(599), 1, sym_arguments, - STATE(1883), 1, - sym_base_clause, - STATE(2265), 1, - sym_class_interface_clause, - [57293] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3169), 1, + STATE(1563), 1, + sym_text_interpolation, + ACTIONS(3580), 2, anon_sym_COMMA, - ACTIONS(3195), 1, anon_sym_RPAREN, - STATE(1522), 1, - sym_text_interpolation, - STATE(2071), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57319] = 11, + [60468] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(938), 1, - sym_declaration_list, - STATE(1523), 1, + STATE(1564), 1, sym_text_interpolation, - STATE(1585), 1, - sym_arguments, - STATE(1872), 1, - sym_base_clause, - STATE(2362), 1, - sym_class_interface_clause, - [57353] = 11, + ACTIONS(3582), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(3584), 5, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [60491] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1091), 1, - sym_declaration_list, - STATE(1524), 1, - sym_text_interpolation, - STATE(1620), 1, + STATE(599), 1, sym_arguments, - STATE(1767), 1, - sym_base_clause, - STATE(2210), 1, - sym_class_interface_clause, - [57387] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(999), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3385), 1, - aux_sym_catch_clause_token1, - ACTIONS(3387), 1, - aux_sym_finally_clause_token1, - STATE(1519), 1, - aux_sym_try_statement_repeat1, - STATE(1525), 1, + STATE(1565), 1, sym_text_interpolation, - ACTIONS(997), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - STATE(1738), 2, - sym_catch_clause, - sym_finally_clause, - [57417] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3169), 1, + ACTIONS(3580), 2, anon_sym_COMMA, - ACTIONS(3171), 1, anon_sym_RPAREN, - STATE(1526), 1, - sym_text_interpolation, - STATE(2155), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57443] = 7, + [60518] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_RPAREN, - STATE(1527), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(1867), 1, + anon_sym_LPAREN, + STATE(755), 1, + sym_arguments, + STATE(1566), 1, sym_text_interpolation, - STATE(2057), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1616), 5, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57469] = 7, + [60547] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1907), 1, - anon_sym_COLON_COLON, - ACTIONS(2870), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3124), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1528), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(599), 1, + sym_arguments, + STATE(1567), 1, sym_text_interpolation, - ACTIONS(1644), 5, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57495] = 10, + [60576] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3586), 1, + sym_name, + ACTIONS(3588), 1, + sym_grit_metavariable, + STATE(1568), 1, + sym_text_interpolation, + STATE(1648), 1, + sym_reference_modifier, + STATE(2513), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [60606] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, + ACTIONS(1860), 1, anon_sym_BSLASH, - ACTIONS(3391), 1, + ACTIONS(3592), 1, anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(3594), 1, anon_sym_LBRACE, - STATE(1362), 1, + STATE(1401), 1, sym_use_list, - STATE(1529), 1, + STATE(1569), 1, sym_text_interpolation, - STATE(1622), 1, + STATE(1701), 1, aux_sym_base_clause_repeat1, - STATE(2456), 1, + STATE(2516), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3389), 2, + ACTIONS(3590), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57527] = 9, + [60638] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + ACTIONS(3596), 1, + sym_name, + ACTIONS(3598), 1, + sym_grit_metavariable, + STATE(1570), 1, + sym_text_interpolation, + STATE(1708), 1, + sym_formal_parameters, + STATE(2546), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [60668] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(1571), 1, + sym_text_interpolation, + ACTIONS(2076), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + ACTIONS(2078), 4, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + sym_grit_metavariable, + [60690] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1027), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3600), 1, + aux_sym_catch_clause_token1, + ACTIONS(3603), 1, + aux_sym_finally_clause_token1, + ACTIONS(1025), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1572), 2, + sym_text_interpolation, + aux_sym_try_statement_repeat1, + STATE(1774), 2, + sym_catch_clause, + sym_finally_clause, + [60718] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3606), 1, anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3608), 1, anon_sym_PIPE, - STATE(1530), 1, + STATE(1573), 1, sym_text_interpolation, - STATE(1694), 1, + STATE(1743), 1, aux_sym_intersection_type_repeat1, - STATE(1742), 1, - aux_sym_union_type_repeat1, - STATE(1752), 1, + STATE(1781), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3109), 3, + STATE(1783), 1, + aux_sym_union_type_repeat1, + ACTIONS(3258), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [57557] = 6, + [60748] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + STATE(1168), 1, + sym_declaration_list, + STATE(1574), 1, + sym_text_interpolation, + STATE(1628), 1, + sym_arguments, + STATE(1940), 1, + sym_base_clause, + STATE(2498), 1, + sym_class_interface_clause, + [60782] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, - anon_sym_LPAREN, - STATE(743), 1, - sym_arguments, - STATE(1531), 1, + ACTIONS(3522), 1, + anon_sym_RPAREN, + STATE(1575), 1, sym_text_interpolation, - ACTIONS(1773), 5, + STATE(2075), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57580] = 5, + [60808] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1532), 1, - sym_text_interpolation, - ACTIONS(3265), 2, + ACTIONS(3375), 1, anon_sym_COMMA, + ACTIONS(3449), 1, anon_sym_RPAREN, - ACTIONS(1616), 5, + STATE(1576), 1, + sym_text_interpolation, + STATE(2172), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57601] = 6, + [60834] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(3466), 1, anon_sym_LPAREN, - STATE(800), 1, - sym_arguments, - STATE(1533), 1, + ACTIONS(3596), 1, + sym_name, + ACTIONS(3598), 1, + sym_grit_metavariable, + STATE(1577), 1, sym_text_interpolation, - ACTIONS(1777), 5, + STATE(1630), 1, + sym_formal_parameters, + STATE(2546), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [60864] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3616), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [57624] = 6, + STATE(1010), 1, + sym_declaration_list, + STATE(1578), 1, + sym_text_interpolation, + STATE(1699), 1, + sym_arguments, + STATE(1914), 1, + sym_base_clause, + STATE(2468), 1, + sym_class_interface_clause, + [60898] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(793), 1, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(986), 1, + sym_declaration_list, + STATE(1579), 1, + sym_text_interpolation, + STATE(1713), 1, sym_arguments, - STATE(1534), 1, + STATE(1947), 1, + sym_base_clause, + STATE(2526), 1, + sym_class_interface_clause, + [60932] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(226), 1, + anon_sym_BSLASH, + ACTIONS(597), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1798), 1, + sym_name, + ACTIONS(2243), 1, + sym_grit_metavariable, + STATE(1473), 1, + sym_qualified_name, + STATE(1580), 1, sym_text_interpolation, - ACTIONS(1773), 5, - anon_sym_LBRACE, + STATE(2134), 1, + sym_named_type, + STATE(2601), 1, + sym_namespace_name_as_prefix, + STATE(2697), 1, + sym_namespace_name, + [60966] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1964), 1, anon_sym_COLON_COLON, + ACTIONS(3015), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(3301), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1581), 1, + sym_text_interpolation, + ACTIONS(1716), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57647] = 6, + [60992] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(744), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + STATE(1147), 1, + sym_declaration_list, + STATE(1582), 1, + sym_text_interpolation, + STATE(1650), 1, sym_arguments, - STATE(1535), 1, + STATE(1832), 1, + sym_base_clause, + STATE(2302), 1, + sym_class_interface_clause, + [61026] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_COMMA, + ACTIONS(3377), 1, + anon_sym_RPAREN, + STATE(1583), 1, sym_text_interpolation, - ACTIONS(1616), 5, + STATE(2149), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57670] = 6, + [61052] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1037), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3618), 1, + aux_sym_catch_clause_token1, + ACTIONS(3620), 1, + aux_sym_finally_clause_token1, + STATE(1572), 1, + aux_sym_try_statement_repeat1, + STATE(1584), 1, + sym_text_interpolation, + ACTIONS(1035), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + STATE(1774), 2, + sym_catch_clause, + sym_finally_clause, + [61082] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1867), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(752), 1, sym_arguments, - STATE(1536), 1, + STATE(1585), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1692), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57693] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3399), 1, - sym_name, - STATE(1537), 1, - sym_text_interpolation, - STATE(1699), 1, - sym_reference_modifier, - STATE(2408), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [57720] = 5, + [61105] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1538), 1, + STATE(1586), 1, sym_text_interpolation, - ACTIONS(3369), 2, + ACTIONS(3536), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57741] = 8, + [61126] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - ACTIONS(3401), 1, - sym_name, - STATE(1539), 1, + STATE(1587), 1, sym_text_interpolation, - STATE(1577), 1, - sym_formal_parameters, - STATE(2403), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [57768] = 5, + ACTIONS(3580), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [61147] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1540), 1, + STATE(1588), 1, sym_text_interpolation, - ACTIONS(3403), 3, + ACTIONS(1750), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(2929), 4, + ACTIONS(1748), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [57789] = 5, + [61168] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1541), 1, + STATE(1589), 1, sym_text_interpolation, - ACTIONS(1650), 3, + ACTIONS(1710), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(1648), 4, + ACTIONS(1708), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [57810] = 5, + [61189] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1542), 1, + STATE(1590), 1, sym_text_interpolation, - ACTIONS(1658), 3, + ACTIONS(1754), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(1656), 4, + ACTIONS(1752), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [57831] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3405), 1, - anon_sym_AMP, - ACTIONS(3411), 1, - anon_sym_PIPE, - STATE(1543), 1, - sym_text_interpolation, - STATE(1700), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1701), 1, - aux_sym_union_type_repeat1, - STATE(1774), 1, - aux_sym_intersection_type_repeat1, - ACTIONS(3109), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [57860] = 5, + [61210] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1544), 1, + STATE(1591), 1, sym_text_interpolation, - ACTIONS(3413), 3, + ACTIONS(3365), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3415), 4, + ACTIONS(3371), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [57881] = 6, + [61231] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3275), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3277), 1, + aux_sym_use_instead_of_clause_token1, + STATE(1592), 1, + sym_text_interpolation, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [61254] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(2074), 1, anon_sym_LPAREN, - STATE(805), 1, + STATE(854), 1, sym_arguments, - STATE(1545), 1, + STATE(1593), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1891), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57904] = 5, + [61277] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1546), 1, + STATE(1594), 1, sym_text_interpolation, - ACTIONS(1686), 3, + ACTIONS(3622), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(1684), 4, + ACTIONS(3624), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [57925] = 8, + [61298] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1842), 1, anon_sym_DOLLAR, - ACTIONS(3419), 1, + ACTIONS(3628), 1, anon_sym_DASH, - STATE(1547), 1, + STATE(1595), 1, sym_text_interpolation, - STATE(2623), 1, + STATE(2716), 1, sym__simple_string_array_access_argument, - ACTIONS(3417), 2, + ACTIONS(3626), 2, sym_integer, sym_name, - STATE(2610), 2, + STATE(2727), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, - [57952] = 6, + [61325] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(2074), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(843), 1, sym_arguments, - STATE(1548), 1, + STATE(1596), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57975] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - STATE(1549), 1, - sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2974), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_PIPE, - [57998] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(3419), 1, - anon_sym_DASH, - STATE(1550), 1, - sym_text_interpolation, - STATE(2513), 1, - sym__simple_string_array_access_argument, - ACTIONS(3417), 2, - sym_integer, - sym_name, - STATE(2610), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [58025] = 6, + [61348] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1969), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - STATE(805), 1, + STATE(937), 1, sym_arguments, - STATE(1551), 1, + STATE(1597), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58048] = 5, + [61371] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1552), 1, + STATE(1598), 1, sym_text_interpolation, - ACTIONS(3421), 3, + ACTIONS(3630), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3423), 4, + ACTIONS(3632), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [58069] = 8, + [61392] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(3419), 1, - anon_sym_DASH, - STATE(1553), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(937), 1, + sym_arguments, + STATE(1599), 1, sym_text_interpolation, - STATE(2598), 1, - sym__simple_string_array_access_argument, - ACTIONS(3417), 2, - sym_integer, - sym_name, - STATE(2610), 2, - sym__simple_string_subscript_unary_expression, - sym_variable_name, - [58096] = 6, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [61415] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, + ACTIONS(2074), 1, anon_sym_LPAREN, - STATE(589), 1, + STATE(843), 1, sym_arguments, - STATE(1554), 1, + STATE(1600), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58119] = 5, - ACTIONS(5), 1, + [61438] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, + ACTIONS(3636), 1, + aux_sym_enum_case_token1, + ACTIONS(3639), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3634), 2, + anon_sym_RBRACE, + aux_sym_switch_block_token1, + STATE(1601), 2, + sym_text_interpolation, + aux_sym_switch_block_repeat1, + STATE(1839), 2, + sym_case_statement, + sym_default_statement, + [61463] = 7, + ACTIONS(3), 1, anon_sym_QMARK_GT, - STATE(1555), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3642), 1, + anon_sym_COMMA, + ACTIONS(3644), 1, + anon_sym_RPAREN, + STATE(1602), 1, sym_text_interpolation, - ACTIONS(3425), 3, - anon_sym_LBRACE, - anon_sym_BSLASHu, + STATE(2091), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(2910), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3427), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [58140] = 5, - ACTIONS(5), 1, + [61488] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, + ACTIONS(2080), 1, + anon_sym_LPAREN, + STATE(930), 1, + sym_arguments, + STATE(1603), 1, + sym_text_interpolation, + ACTIONS(1887), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [61511] = 6, + ACTIONS(3), 1, anon_sym_QMARK_GT, - STATE(1556), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(1604), 1, sym_text_interpolation, - ACTIONS(3429), 3, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2910), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, anon_sym_LBRACE, - anon_sym_BSLASHu, - anon_sym_DOLLAR, - ACTIONS(3431), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [58161] = 6, + anon_sym_PIPE, + [61534] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - STATE(676), 1, + STATE(902), 1, sym_arguments, - STATE(1557), 1, + STATE(1605), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1692), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58184] = 6, + [61557] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - STATE(676), 1, + STATE(599), 1, sym_arguments, - STATE(1558), 1, + STATE(1606), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58207] = 6, + [61580] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(1867), 1, anon_sym_LPAREN, - STATE(615), 1, + STATE(755), 1, sym_arguments, - STATE(1559), 1, + STATE(1607), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58230] = 6, + [61603] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(2074), 1, anon_sym_LPAREN, - STATE(869), 1, + STATE(845), 1, sym_arguments, - STATE(1560), 1, + STATE(1608), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1887), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58253] = 6, + [61626] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(2080), 1, anon_sym_LPAREN, - STATE(730), 1, + STATE(902), 1, sym_arguments, - STATE(1561), 1, + STATE(1609), 1, sym_text_interpolation, - ACTIONS(1777), 5, + ACTIONS(1891), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58276] = 8, + [61649] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(3435), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1562), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(3628), 1, + anon_sym_DASH, + STATE(1610), 1, sym_text_interpolation, - STATE(2035), 1, - sym_namespace_aliasing_clause, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3433), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [58303] = 5, + STATE(2619), 1, + sym__simple_string_array_access_argument, + ACTIONS(3626), 2, + sym_integer, + sym_name, + STATE(2727), 2, + sym__simple_string_subscript_unary_expression, + sym_variable_name, + [61676] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1563), 1, + ACTIONS(3646), 1, + anon_sym_AMP, + ACTIONS(3652), 1, + anon_sym_PIPE, + STATE(1611), 1, sym_text_interpolation, - ACTIONS(1975), 3, - anon_sym_LPAREN, + STATE(1782), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1787), 1, + aux_sym_union_type_repeat1, + STATE(1814), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3258), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(1973), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [58324] = 8, + [61705] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1612), 1, + sym_text_interpolation, + ACTIONS(3654), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3656), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [61726] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(1674), 1, anon_sym_LPAREN, - ACTIONS(3401), 1, + STATE(599), 1, + sym_arguments, + STATE(1613), 1, + sym_text_interpolation, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [61749] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(3628), 1, + anon_sym_DASH, + STATE(1614), 1, + sym_text_interpolation, + STATE(2731), 1, + sym__simple_string_array_access_argument, + ACTIONS(3626), 2, + sym_integer, sym_name, - STATE(1564), 1, + STATE(2727), 2, + sym__simple_string_subscript_unary_expression, + sym_variable_name, + [61776] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1762), 1, + anon_sym_LPAREN, + STATE(649), 1, + sym_arguments, + STATE(1615), 1, sym_text_interpolation, - STATE(1652), 1, - sym_formal_parameters, - STATE(2403), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [58351] = 7, + ACTIONS(1682), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [61799] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3439), 1, - aux_sym_enum_case_token1, - ACTIONS(3442), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3437), 2, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - STATE(1565), 2, + ACTIONS(1867), 1, + anon_sym_LPAREN, + STATE(752), 1, + sym_arguments, + STATE(1616), 1, sym_text_interpolation, - aux_sym_switch_block_repeat1, - STATE(1771), 2, - sym_case_statement, - sym_default_statement, - [58376] = 6, + ACTIONS(1891), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [61822] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3120), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(3122), 1, - aux_sym_use_instead_of_clause_token1, - STATE(1566), 1, + ACTIONS(1867), 1, + anon_sym_LPAREN, + STATE(792), 1, + sym_arguments, + STATE(1617), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(1887), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58399] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [61845] = 7, + ACTIONS(3), 1, anon_sym_QMARK_GT, - STATE(1567), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_COMMA, + ACTIONS(3660), 1, + anon_sym_RPAREN, + STATE(1618), 1, sym_text_interpolation, - ACTIONS(3185), 3, - anon_sym_LBRACE, - anon_sym_BSLASHu, + STATE(2020), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(2910), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(3191), 4, - sym_encapsed_string_chars_heredoc, - sym_heredoc_end, - sym_escape_sequence, - sym__new_line, - [58420] = 5, + [61870] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - STATE(1568), 1, + STATE(1619), 1, sym_text_interpolation, - ACTIONS(3445), 3, + ACTIONS(3662), 3, anon_sym_LBRACE, anon_sym_BSLASHu, anon_sym_DOLLAR, - ACTIONS(3447), 4, + ACTIONS(3124), 4, sym_encapsed_string_chars_heredoc, sym_heredoc_end, sym_escape_sequence, sym__new_line, - [58441] = 6, + [61891] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, - STATE(873), 1, + STATE(702), 1, sym_arguments, - STATE(1569), 1, + STATE(1620), 1, sym_text_interpolation, - ACTIONS(1777), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58464] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(226), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1732), 1, - sym_name, - STATE(1425), 1, - sym_qualified_name, - STATE(1570), 1, - sym_text_interpolation, - STATE(1929), 1, - sym_named_type, - STATE(2496), 1, - sym_namespace_name_as_prefix, - STATE(2603), 1, - sym_namespace_name, - [58495] = 6, + [61914] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1816), 1, anon_sym_LPAREN, - STATE(873), 1, + STATE(702), 1, sym_arguments, - STATE(1571), 1, + STATE(1621), 1, sym_text_interpolation, - ACTIONS(1628), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58518] = 6, + [61937] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, + ACTIONS(1867), 1, anon_sym_LPAREN, - STATE(886), 1, + STATE(755), 1, sym_arguments, - STATE(1572), 1, + STATE(1622), 1, sym_text_interpolation, - ACTIONS(1773), 5, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58541] = 5, + [61960] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1573), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(3666), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1623), 1, sym_text_interpolation, - ACTIONS(3311), 2, + STATE(1976), 1, + sym_namespace_aliasing_clause, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3664), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1616), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [58562] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + [61987] = 5, + ACTIONS(5), 1, sym_comment, - ACTIONS(1755), 1, - anon_sym_LPAREN, - STATE(730), 1, - sym_arguments, - STATE(1574), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1624), 1, sym_text_interpolation, - ACTIONS(1628), 5, + ACTIONS(3668), 3, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [58585] = 6, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3670), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [62008] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1971), 1, - anon_sym_LPAREN, - STATE(869), 1, - sym_arguments, - STATE(1575), 1, + STATE(1625), 1, sym_text_interpolation, - ACTIONS(1616), 5, + ACTIONS(3538), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1682), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58608] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + [62029] = 5, + ACTIONS(5), 1, sym_comment, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_declaration_list, - STATE(1576), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1626), 1, sym_text_interpolation, - STATE(1873), 1, - sym_base_clause, - STATE(2356), 1, - sym_class_interface_clause, - [58636] = 9, + ACTIONS(3672), 3, + anon_sym_LBRACE, + anon_sym_BSLASHu, + anon_sym_DOLLAR, + ACTIONS(3674), 4, + sym_encapsed_string_chars_heredoc, + sym_heredoc_end, + sym_escape_sequence, + sym__new_line, + [62050] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3676), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(1139), 1, + STATE(948), 1, sym_compound_statement, - STATE(1577), 1, + STATE(1627), 1, sym_text_interpolation, - STATE(1786), 1, + STATE(1875), 1, sym_anonymous_function_use_clause, - STATE(2236), 1, + STATE(2418), 1, sym__return_type, - [58664] = 9, + [62078] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - ACTIONS(3373), 1, + ACTIONS(3612), 1, aux_sym_base_clause_token1, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - STATE(1578), 1, - sym_text_interpolation, - STATE(1711), 1, + STATE(1152), 1, sym_declaration_list, - STATE(1850), 1, + STATE(1628), 1, + sym_text_interpolation, + STATE(1837), 1, sym_base_clause, - STATE(2427), 1, + STATE(2307), 1, sym_class_interface_clause, - [58692] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3455), 1, - anon_sym_RBRACE, - ACTIONS(3457), 1, - aux_sym_enum_case_token1, - ACTIONS(3459), 1, - aux_sym_match_default_expression_token1, - STATE(1579), 1, - sym_text_interpolation, - STATE(1584), 1, - aux_sym_switch_block_repeat1, - STATE(1771), 2, - sym_case_statement, - sym_default_statement, - [58718] = 9, + [62106] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3676), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(918), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1187), 1, sym_compound_statement, - STATE(1580), 1, + STATE(1629), 1, sym_text_interpolation, - STATE(1897), 1, + STATE(1889), 1, sym_anonymous_function_use_clause, - STATE(2269), 1, + STATE(2442), 1, sym__return_type, - [58746] = 9, + [62134] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3676), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(945), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1188), 1, sym_compound_statement, - STATE(1581), 1, + STATE(1630), 1, sym_text_interpolation, - STATE(1851), 1, + STATE(1900), 1, sym_anonymous_function_use_clause, - STATE(2419), 1, + STATE(2449), 1, sym__return_type, - [58774] = 9, + [62162] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3682), 1, + sym_name, + ACTIONS(3684), 1, anon_sym_LBRACE, - ACTIONS(3373), 1, + ACTIONS(3686), 1, + anon_sym_DOLLAR, + ACTIONS(3688), 1, + sym_grit_metavariable, + STATE(1631), 1, + sym_text_interpolation, + STATE(1721), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62188] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3612), 1, aux_sym_base_clause_token1, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - STATE(1582), 1, - sym_text_interpolation, - STATE(1706), 1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(455), 1, sym_declaration_list, - STATE(1869), 1, + STATE(1632), 1, + sym_text_interpolation, + STATE(1909), 1, sym_base_clause, - STATE(2388), 1, + STATE(2471), 1, sym_class_interface_clause, - [58802] = 9, + [62216] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(948), 1, - sym_compound_statement, - STATE(1583), 1, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(462), 1, + sym_declaration_list, + STATE(1633), 1, sym_text_interpolation, - STATE(1847), 1, - sym_anonymous_function_use_clause, - STATE(2433), 1, - sym__return_type, - [58830] = 8, + STATE(1871), 1, + sym_base_clause, + STATE(2524), 1, + sym_class_interface_clause, + [62244] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3457), 1, - aux_sym_enum_case_token1, - ACTIONS(3459), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3461), 1, - anon_sym_RBRACE, - STATE(1565), 1, - aux_sym_switch_block_repeat1, - STATE(1584), 1, + STATE(1634), 1, sym_text_interpolation, - STATE(1771), 2, - sym_case_statement, - sym_default_statement, - [58856] = 9, + ACTIONS(3692), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2910), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [62264] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3383), 1, + ACTIONS(228), 1, anon_sym_LBRACE, - STATE(910), 1, - sym_declaration_list, - STATE(1585), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3694), 1, + sym_name, + ACTIONS(3696), 1, + anon_sym_BSLASH, + ACTIONS(3698), 1, + sym_grit_metavariable, + STATE(481), 1, + sym_compound_statement, + STATE(1635), 1, sym_text_interpolation, - STATE(1845), 1, - sym_base_clause, - STATE(2435), 1, - sym_class_interface_clause, - [58884] = 9, + STATE(1801), 1, + sym_namespace_name, + [62292] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3700), 1, + sym_name, + ACTIONS(3702), 1, anon_sym_LBRACE, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1586), 1, + ACTIONS(3704), 1, + anon_sym_DOLLAR, + ACTIONS(3706), 1, + sym_grit_metavariable, + STATE(1636), 1, sym_text_interpolation, - STATE(1757), 1, - sym_declaration_list, - STATE(1894), 1, - sym_base_clause, - STATE(2237), 1, - sym_class_interface_clause, - [58912] = 9, + STATE(1664), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62318] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1587), 1, + ACTIONS(3668), 1, + anon_sym_BSLASHu, + STATE(1637), 1, sym_text_interpolation, - STATE(1678), 1, - sym_declaration_list, - STATE(1843), 1, - sym_base_clause, - STATE(2422), 1, - sym_class_interface_clause, - [58940] = 9, + ACTIONS(3670), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [62338] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3622), 1, + anon_sym_BSLASHu, + STATE(1638), 1, + sym_text_interpolation, + ACTIONS(3624), 5, + sym_execution_string_chars, anon_sym_LBRACE, - ACTIONS(1596), 1, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [62358] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3676), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(950), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1150), 1, sym_compound_statement, - STATE(1588), 1, + STATE(1639), 1, sym_text_interpolation, - STATE(1884), 1, + STATE(1957), 1, sym_anonymous_function_use_clause, - STATE(2222), 1, + STATE(2543), 1, sym__return_type, - [58968] = 9, + [62386] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_BSLASHu, + STATE(1640), 1, + sym_text_interpolation, + ACTIONS(3632), 5, + sym_encapsed_string_chars, anon_sym_LBRACE, - ACTIONS(1596), 1, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [62406] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(966), 1, - sym_compound_statement, - STATE(1589), 1, + ACTIONS(1710), 1, + anon_sym_BSLASHu, + STATE(1641), 1, sym_text_interpolation, - STATE(1837), 1, - sym_anonymous_function_use_clause, - STATE(2415), 1, - sym__return_type, - [58996] = 9, + ACTIONS(1708), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [62426] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3708), 1, + sym_name, + ACTIONS(3710), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(3712), 1, + sym_grit_metavariable, + STATE(1642), 1, + sym_text_interpolation, + STATE(651), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62452] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(969), 1, - sym_compound_statement, - STATE(1590), 1, + ACTIONS(1826), 1, + anon_sym_DOLLAR, + ACTIONS(3714), 1, + sym_name, + ACTIONS(3716), 1, + anon_sym_LBRACE, + ACTIONS(3718), 1, + sym_grit_metavariable, + STATE(1643), 1, sym_text_interpolation, - STATE(1836), 1, - sym_anonymous_function_use_clause, - STATE(2409), 1, - sym__return_type, - [59024] = 9, + STATE(898), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62478] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1640), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3720), 1, + sym_name, + ACTIONS(3722), 1, anon_sym_LBRACE, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1591), 1, + ACTIONS(3724), 1, + sym_grit_metavariable, + STATE(1644), 1, sym_text_interpolation, - STATE(1681), 1, - sym_declaration_list, - STATE(1834), 1, - sym_base_clause, - STATE(2402), 1, - sym_class_interface_clause, - [59052] = 9, + STATE(695), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62504] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3672), 1, + anon_sym_BSLASHu, + STATE(1645), 1, + sym_text_interpolation, + ACTIONS(3674), 5, + sym_execution_string_chars, anon_sym_LBRACE, - ACTIONS(1596), 1, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [62524] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(940), 1, - sym_compound_statement, - STATE(1592), 1, + ACTIONS(3592), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, + anon_sym_LBRACE, + STATE(1401), 1, + sym_use_list, + STATE(1646), 1, sym_text_interpolation, - STATE(1829), 1, - sym_anonymous_function_use_clause, - STATE(2385), 1, - sym__return_type, - [59080] = 9, + STATE(1701), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3590), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [62550] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3365), 1, + anon_sym_BSLASHu, + STATE(1647), 1, + sym_text_interpolation, + ACTIONS(3371), 5, + sym_execution_string_chars, anon_sym_LBRACE, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1593), 1, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [62570] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3726), 1, + sym_name, + ACTIONS(3728), 1, + sym_grit_metavariable, + STATE(1648), 1, sym_text_interpolation, - STATE(1718), 1, - sym_declaration_list, - STATE(1827), 1, - sym_base_clause, - STATE(2359), 1, - sym_class_interface_clause, - [59108] = 9, + STATE(2553), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [62594] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1019), 1, - aux_sym_while_statement_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3463), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3465), 1, - aux_sym_else_clause_token1, - STATE(1594), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(3730), 1, + anon_sym_AMP, + ACTIONS(3732), 1, + anon_sym_RPAREN, + ACTIONS(3734), 1, + sym_grit_metavariable, + STATE(1649), 1, sym_text_interpolation, - STATE(1704), 1, - aux_sym_if_statement_repeat1, - STATE(2044), 1, - sym_else_if_clause, - STATE(2080), 1, - sym_else_clause, - [59136] = 6, + STATE(2464), 2, + sym_variable_name, + sym_variable_reference, + [62620] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + STATE(1154), 1, + sym_declaration_list, + STATE(1650), 1, + sym_text_interpolation, + STATE(1842), 1, + sym_base_clause, + STATE(2347), 1, + sym_class_interface_clause, + [62648] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, + ACTIONS(1860), 1, anon_sym_BSLASH, - STATE(1595), 1, + STATE(1651), 1, sym_text_interpolation, - STATE(2456), 1, + STATE(2516), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3467), 4, + ACTIONS(3736), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - [59158] = 5, + [62670] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3421), 1, - anon_sym_BSLASHu, - STATE(1596), 1, - sym_text_interpolation, - ACTIONS(3423), 5, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, + ACTIONS(1856), 1, anon_sym_DOLLAR, - [59178] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(3738), 1, + sym_name, + ACTIONS(3740), 1, + anon_sym_LBRACE, + ACTIONS(3742), 1, + sym_grit_metavariable, + STATE(1652), 1, + sym_text_interpolation, + STATE(797), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62696] = 9, + ACTIONS(5), 1, sym_comment, - ACTIONS(1686), 1, - anon_sym_BSLASHu, - STATE(1597), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3744), 1, + sym_php_tag, + ACTIONS(3746), 1, + aux_sym_text_token1, + ACTIONS(3748), 1, + aux_sym_text_token2, + ACTIONS(3750), 1, + sym__eof, + STATE(1653), 1, sym_text_interpolation, - ACTIONS(1684), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59198] = 9, + STATE(1788), 1, + aux_sym_text_repeat1, + STATE(2260), 1, + sym_text, + [62724] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1099), 1, - sym_compound_statement, - STATE(1598), 1, + ACTIONS(3752), 1, + aux_sym_enum_case_token1, + ACTIONS(3754), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3756), 1, + aux_sym_switch_block_token1, + STATE(1601), 1, + aux_sym_switch_block_repeat1, + STATE(1654), 1, sym_text_interpolation, - STATE(1900), 1, - sym_anonymous_function_use_clause, - STATE(2458), 1, - sym__return_type, - [59226] = 5, + STATE(1839), 2, + sym_case_statement, + sym_default_statement, + [62750] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1686), 1, + ACTIONS(1710), 1, anon_sym_BSLASHu, - STATE(1599), 1, + STATE(1655), 1, sym_text_interpolation, - ACTIONS(1684), 5, + ACTIONS(1708), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59246] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3429), 1, - anon_sym_BSLASHu, - STATE(1600), 1, - sym_text_interpolation, - ACTIONS(3431), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59266] = 5, + [62770] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3425), 1, - anon_sym_BSLASHu, + ACTIONS(3752), 1, + aux_sym_enum_case_token1, + ACTIONS(3754), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3758), 1, + anon_sym_RBRACE, STATE(1601), 1, + aux_sym_switch_block_repeat1, + STATE(1656), 1, sym_text_interpolation, - ACTIONS(3427), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59286] = 9, + STATE(1839), 2, + sym_case_statement, + sym_default_statement, + [62796] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1648), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, + ACTIONS(3760), 1, + sym_name, + ACTIONS(3762), 1, anon_sym_LBRACE, - STATE(441), 1, - sym_declaration_list, - STATE(1602), 1, + ACTIONS(3764), 1, + sym_grit_metavariable, + STATE(1657), 1, sym_text_interpolation, - STATE(1838), 1, - sym_base_clause, - STATE(2352), 1, - sym_class_interface_clause, - [59314] = 9, + STATE(844), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62822] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3451), 1, + ACTIONS(3684), 1, anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1096), 1, - sym_compound_statement, - STATE(1603), 1, + ACTIONS(3686), 1, + anon_sym_DOLLAR, + ACTIONS(3766), 1, + sym_name, + ACTIONS(3768), 1, + sym_grit_metavariable, + STATE(1658), 1, sym_text_interpolation, - STATE(1828), 1, - sym_anonymous_function_use_clause, - STATE(2340), 1, - sym__return_type, - [59342] = 7, + STATE(1721), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62848] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3471), 1, - sym_name, - STATE(1604), 1, + ACTIONS(3770), 1, + aux_sym_if_statement_token2, + ACTIONS(3772), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3774), 1, + aux_sym_else_clause_token1, + STATE(1659), 1, sym_text_interpolation, - STATE(1821), 1, - sym_const_element, - STATE(2522), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [59366] = 9, + STATE(1791), 1, + aux_sym_if_statement_repeat2, + STATE(2164), 1, + sym_else_if_clause_2, + STATE(2674), 1, + sym_else_clause_2, + [62876] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, + ACTIONS(3702), 1, anon_sym_LBRACE, - STATE(437), 1, - sym_declaration_list, - STATE(1605), 1, + ACTIONS(3704), 1, + anon_sym_DOLLAR, + ACTIONS(3776), 1, + sym_name, + ACTIONS(3778), 1, + sym_grit_metavariable, + STATE(1660), 1, sym_text_interpolation, - STATE(1812), 1, - sym_base_clause, - STATE(2328), 1, - sym_class_interface_clause, - [59394] = 8, + STATE(1664), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62902] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1043), 1, + aux_sym_while_statement_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(3473), 1, - anon_sym_COMMA, - STATE(1606), 1, + ACTIONS(3780), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3783), 1, + aux_sym_else_clause_token1, + STATE(1661), 1, sym_text_interpolation, - STATE(1859), 1, - aux_sym_base_clause_repeat1, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3475), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [59420] = 9, + STATE(1810), 1, + aux_sym_if_statement_repeat1, + STATE(1974), 1, + sym_else_if_clause, + STATE(2238), 1, + sym_else_clause, + [62930] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3451), 1, + ACTIONS(3786), 1, + sym_name, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1106), 1, - sym_compound_statement, - STATE(1607), 1, + ACTIONS(3790), 1, + anon_sym_DOLLAR, + ACTIONS(3792), 1, + sym_grit_metavariable, + STATE(1662), 1, sym_text_interpolation, - STATE(1879), 1, - sym_anonymous_function_use_clause, - STATE(2413), 1, - sym__return_type, - [59448] = 5, + STATE(1590), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62956] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1658), 1, - anon_sym_BSLASHu, - STATE(1608), 1, - sym_text_interpolation, - ACTIONS(1656), 5, - sym_execution_string_chars, + ACTIONS(3788), 1, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, + ACTIONS(3790), 1, anon_sym_DOLLAR, - [59468] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1650), 1, - anon_sym_BSLASHu, - STATE(1609), 1, + ACTIONS(3794), 1, + sym_name, + ACTIONS(3796), 1, + sym_grit_metavariable, + STATE(1663), 1, sym_text_interpolation, - ACTIONS(1648), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59488] = 5, + STATE(1590), 2, + sym_dynamic_variable_name, + sym_variable_name, + [62982] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(1754), 1, anon_sym_BSLASHu, - STATE(1610), 1, + STATE(1664), 1, sym_text_interpolation, - ACTIONS(3075), 5, + ACTIONS(1752), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59508] = 9, + [63002] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1005), 1, + ACTIONS(1051), 1, aux_sym_while_statement_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3798), 1, aux_sym_else_if_clause_token1, - ACTIONS(3465), 1, + ACTIONS(3801), 1, aux_sym_else_clause_token1, - STATE(1594), 1, + STATE(1661), 1, aux_sym_if_statement_repeat1, - STATE(1611), 1, + STATE(1665), 1, sym_text_interpolation, - STATE(2044), 1, + STATE(1974), 1, sym_else_if_clause, - STATE(2053), 1, + STATE(1980), 1, sym_else_clause, - [59536] = 9, + [63030] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3612), 1, aux_sym_base_clause_token1, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, + ACTIONS(3690), 1, anon_sym_LBRACE, - STATE(455), 1, + STATE(448), 1, sym_declaration_list, - STATE(1612), 1, + STATE(1666), 1, sym_text_interpolation, - STATE(1805), 1, + STATE(1948), 1, sym_base_clause, - STATE(2454), 1, + STATE(2525), 1, sym_class_interface_clause, - [59564] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3479), 1, - aux_sym_if_statement_token2, - ACTIONS(3481), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3483), 1, - aux_sym_else_clause_token1, - STATE(1613), 1, - sym_text_interpolation, - STATE(1667), 1, - aux_sym_if_statement_repeat2, - STATE(2177), 1, - sym_else_if_clause_2, - STATE(2529), 1, - sym_else_clause_2, - [59592] = 5, + [63058] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1658), 1, + ACTIONS(3622), 1, anon_sym_BSLASHu, - STATE(1614), 1, + STATE(1667), 1, sym_text_interpolation, - ACTIONS(1656), 5, + ACTIONS(3624), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59612] = 8, + [63078] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3457), 1, - aux_sym_enum_case_token1, - ACTIONS(3459), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3485), 1, - anon_sym_RBRACE, - STATE(1565), 1, - aux_sym_switch_block_repeat1, - STATE(1615), 1, + ACTIONS(3804), 1, + sym_name, + STATE(1668), 1, sym_text_interpolation, - STATE(1771), 2, - sym_case_statement, - sym_default_statement, - [59638] = 5, + STATE(1961), 1, + sym_const_element, + STATE(2635), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [63102] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1650), 1, + ACTIONS(1750), 1, anon_sym_BSLASHu, - STATE(1616), 1, + STATE(1669), 1, sym_text_interpolation, - ACTIONS(1648), 5, + ACTIONS(1748), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59658] = 9, - ACTIONS(5), 1, + [63122] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(3806), 1, + anon_sym_COMMA, + STATE(1670), 1, + sym_text_interpolation, + STATE(1830), 1, + aux_sym_base_clause_repeat1, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3808), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [63148] = 7, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(3487), 1, - sym_php_tag, - ACTIONS(3489), 1, - aux_sym_text_token1, - ACTIONS(3491), 1, - aux_sym_text_token2, - ACTIONS(3493), 1, - sym__eof, - STATE(1617), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3804), 1, + sym_name, + STATE(1671), 1, sym_text_interpolation, - STATE(1662), 1, - aux_sym_text_repeat1, - STATE(2192), 1, - sym_text, - [59686] = 5, + STATE(1955), 1, + sym_const_element, + STATE(2635), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [63172] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(1750), 1, anon_sym_BSLASHu, - STATE(1618), 1, + STATE(1672), 1, sym_text_interpolation, - ACTIONS(3059), 5, - sym_encapsed_string_chars, + ACTIONS(1748), 5, + sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, - anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_DOLLAR, - [59706] = 8, + [63192] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3772), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3774), 1, + aux_sym_else_clause_token1, + ACTIONS(3810), 1, + aux_sym_if_statement_token2, + STATE(1673), 1, + sym_text_interpolation, + STATE(1682), 1, + aux_sym_if_statement_repeat2, + STATE(2164), 1, + sym_else_if_clause_2, + STATE(2639), 1, + sym_else_clause_2, + [63220] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3752), 1, aux_sym_enum_case_token1, - ACTIONS(3459), 1, + ACTIONS(3754), 1, aux_sym_match_default_expression_token1, - ACTIONS(3497), 1, + ACTIONS(3812), 1, aux_sym_switch_block_token1, - STATE(1565), 1, - aux_sym_switch_block_repeat1, - STATE(1619), 1, + STATE(1674), 1, sym_text_interpolation, - STATE(1771), 2, + STATE(1685), 1, + aux_sym_switch_block_repeat1, + STATE(1839), 2, sym_case_statement, sym_default_statement, - [59732] = 9, + [63246] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1129), 1, - sym_declaration_list, - STATE(1620), 1, + ACTIONS(3804), 1, + sym_name, + STATE(1675), 1, sym_text_interpolation, - STATE(1817), 1, - sym_base_clause, - STATE(2310), 1, - sym_class_interface_clause, - [59760] = 9, + STATE(1905), 1, + sym_const_element, + STATE(2635), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [63270] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(919), 1, - sym_compound_statement, - STATE(1621), 1, + ACTIONS(3694), 1, + sym_name, + ACTIONS(3696), 1, + anon_sym_BSLASH, + ACTIONS(3814), 1, + sym_grit_metavariable, + STATE(1676), 1, sym_text_interpolation, - STATE(1882), 1, - sym_anonymous_function_use_clause, - STATE(2274), 1, - sym__return_type, - [59788] = 8, + STATE(1755), 1, + sym_namespace_name, + STATE(2187), 1, + sym_compound_statement, + [63298] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1051), 1, + aux_sym_while_statement_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3391), 1, - anon_sym_COMMA, - ACTIONS(3393), 1, - anon_sym_LBRACE, - STATE(1370), 1, - sym_use_list, - STATE(1622), 1, + ACTIONS(3816), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3818), 1, + aux_sym_else_clause_token1, + STATE(1677), 1, sym_text_interpolation, - STATE(1691), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3499), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [59814] = 5, + STATE(1707), 1, + aux_sym_if_statement_repeat1, + STATE(1974), 1, + sym_else_if_clause, + STATE(1980), 1, + sym_else_clause, + [63326] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(643), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3185), 1, - anon_sym_BSLASHu, - STATE(1623), 1, - sym_text_interpolation, - ACTIONS(3191), 5, - sym_execution_string_chars, + ACTIONS(3820), 1, + sym_name, + ACTIONS(3822), 1, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [59834] = 9, + ACTIONS(3824), 1, + sym_grit_metavariable, + STATE(1678), 1, + sym_text_interpolation, + STATE(603), 2, + sym_dynamic_variable_name, + sym_variable_name, + [63352] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1019), 1, - aux_sym_while_statement_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3501), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3504), 1, - aux_sym_else_clause_token1, - STATE(1624), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + STATE(1679), 1, sym_text_interpolation, - STATE(1704), 1, - aux_sym_if_statement_repeat1, - STATE(2044), 1, - sym_else_if_clause, - STATE(2080), 1, - sym_else_clause, - [59862] = 9, + STATE(1757), 1, + sym_declaration_list, + STATE(1860), 1, + sym_base_clause, + STATE(2385), 1, + sym_class_interface_clause, + [63380] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1073), 1, - sym_compound_statement, - STATE(1625), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(1680), 1, sym_text_interpolation, - STATE(1866), 1, - sym_anonymous_function_use_clause, - STATE(2399), 1, - sym__return_type, - [59890] = 5, + STATE(2486), 1, + sym_arguments, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3826), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [63406] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3445), 1, + ACTIONS(3830), 1, anon_sym_BSLASHu, - STATE(1626), 1, + STATE(1681), 1, sym_text_interpolation, - ACTIONS(3447), 5, - sym_execution_string_chars, + ACTIONS(3828), 5, + sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, - anon_sym_BQUOTE, + anon_sym_DQUOTE, anon_sym_DOLLAR, - [59910] = 7, + [63426] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3471), 1, - sym_name, - STATE(1627), 1, + ACTIONS(3772), 1, + aux_sym_else_if_clause_token1, + ACTIONS(3774), 1, + aux_sym_else_clause_token1, + ACTIONS(3832), 1, + aux_sym_if_statement_token2, + STATE(1682), 1, sym_text_interpolation, - STATE(1864), 1, - sym_const_element, - STATE(2522), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [59934] = 5, + STATE(1791), 1, + aux_sym_if_statement_repeat2, + STATE(2164), 1, + sym_else_if_clause_2, + STATE(2634), 1, + sym_else_clause_2, + [63454] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3672), 1, anon_sym_BSLASHu, - STATE(1628), 1, + STATE(1683), 1, sym_text_interpolation, - ACTIONS(3431), 5, + ACTIONS(3674), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59954] = 5, + [63474] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3425), 1, + ACTIONS(3365), 1, anon_sym_BSLASHu, - STATE(1629), 1, + STATE(1684), 1, sym_text_interpolation, - ACTIONS(3427), 5, + ACTIONS(3371), 5, sym_encapsed_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59974] = 9, + [63494] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1005), 1, - aux_sym_while_statement_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3507), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3510), 1, - aux_sym_else_clause_token1, - STATE(1624), 1, - aux_sym_if_statement_repeat1, - STATE(1630), 1, + ACTIONS(3752), 1, + aux_sym_enum_case_token1, + ACTIONS(3754), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3834), 1, + aux_sym_switch_block_token1, + STATE(1601), 1, + aux_sym_switch_block_repeat1, + STATE(1685), 1, sym_text_interpolation, - STATE(2044), 1, - sym_else_if_clause, - STATE(2053), 1, - sym_else_clause, - [60002] = 7, + STATE(1839), 2, + sym_case_statement, + sym_default_statement, + [63520] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3471), 1, - sym_name, - STATE(1631), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(979), 1, + sym_compound_statement, + STATE(1686), 1, sym_text_interpolation, - STATE(1886), 1, - sym_const_element, - STATE(2522), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [60026] = 9, + STATE(1866), 1, + sym_anonymous_function_use_clause, + STATE(2397), 1, + sym__return_type, + [63548] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(1012), 1, + sym_compound_statement, + STATE(1687), 1, + sym_text_interpolation, + STATE(1967), 1, + sym_anonymous_function_use_clause, + STATE(2551), 1, + sym__return_type, + [63576] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3610), 1, anon_sym_LBRACE, - ACTIONS(3373), 1, + ACTIONS(3612), 1, aux_sym_base_clause_token1, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - STATE(1090), 1, - sym_declaration_list, - STATE(1632), 1, + STATE(1688), 1, sym_text_interpolation, - STATE(1768), 1, + STATE(1776), 1, + sym_declaration_list, + STATE(1959), 1, sym_base_clause, - STATE(2206), 1, + STATE(2545), 1, sym_class_interface_clause, - [60054] = 9, + [63604] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3481), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3483), 1, - aux_sym_else_clause_token1, - ACTIONS(3513), 1, - aux_sym_if_statement_token2, - STATE(1633), 1, + ACTIONS(3838), 1, + anon_sym_BSLASHu, + STATE(1689), 1, sym_text_interpolation, - STATE(1653), 1, - aux_sym_if_statement_repeat2, - STATE(2177), 1, - sym_else_if_clause_2, - STATE(2526), 1, - sym_else_clause_2, - [60082] = 8, + ACTIONS(3836), 5, + sym_execution_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [63624] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3457), 1, - aux_sym_enum_case_token1, - ACTIONS(3459), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3515), 1, - aux_sym_switch_block_token1, - STATE(1634), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1137), 1, + sym_compound_statement, + STATE(1690), 1, sym_text_interpolation, - STATE(1651), 1, - aux_sym_switch_block_repeat1, - STATE(1771), 2, - sym_case_statement, - sym_default_statement, - [60108] = 9, + STATE(1877), 1, + sym_anonymous_function_use_clause, + STATE(2447), 1, + sym__return_type, + [63652] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1117), 1, + sym_compound_statement, + STATE(1691), 1, + sym_text_interpolation, + STATE(1819), 1, + sym_anonymous_function_use_clause, + STATE(2265), 1, + sym__return_type, + [63680] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, aux_sym_base_clause_token1, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(446), 1, - sym_declaration_list, - STATE(1635), 1, + STATE(1692), 1, sym_text_interpolation, - STATE(1852), 1, + STATE(1798), 1, + sym_declaration_list, + STATE(1873), 1, sym_base_clause, - STATE(2377), 1, + STATE(2413), 1, sym_class_interface_clause, - [60136] = 7, + [63708] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3471), 1, - sym_name, - STATE(1636), 1, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(453), 1, + sym_declaration_list, + STATE(1693), 1, sym_text_interpolation, - STATE(1863), 1, - sym_const_element, - STATE(2522), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [60160] = 8, + STATE(1817), 1, + sym_base_clause, + STATE(2256), 1, + sym_class_interface_clause, + [63736] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3457), 1, - aux_sym_enum_case_token1, - ACTIONS(3459), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3517), 1, - aux_sym_switch_block_token1, - STATE(1619), 1, - aux_sym_switch_block_repeat1, - STATE(1637), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(992), 1, + sym_compound_statement, + STATE(1694), 1, sym_text_interpolation, - STATE(1771), 2, - sym_case_statement, - sym_default_statement, - [60186] = 8, + STATE(1878), 1, + sym_anonymous_function_use_clause, + STATE(2419), 1, + sym__return_type, + [63764] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3457), 1, - aux_sym_enum_case_token1, - ACTIONS(3459), 1, - aux_sym_match_default_expression_token1, - ACTIONS(3519), 1, - anon_sym_RBRACE, - STATE(1615), 1, - aux_sym_switch_block_repeat1, - STATE(1638), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1149), 1, + sym_compound_statement, + STATE(1695), 1, sym_text_interpolation, - STATE(1771), 2, - sym_case_statement, - sym_default_statement, - [60212] = 9, + STATE(1894), 1, + sym_anonymous_function_use_clause, + STATE(2451), 1, + sym__return_type, + [63792] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3481), 1, - aux_sym_else_if_clause_token1, - ACTIONS(3483), 1, - aux_sym_else_clause_token1, - ACTIONS(3521), 1, - aux_sym_if_statement_token2, - STATE(1613), 1, - aux_sym_if_statement_repeat2, - STATE(1639), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1104), 1, + sym_compound_statement, + STATE(1696), 1, sym_text_interpolation, - STATE(2177), 1, - sym_else_if_clause_2, - STATE(2556), 1, - sym_else_clause_2, - [60240] = 9, + STATE(1816), 1, + sym_anonymous_function_use_clause, + STATE(2444), 1, + sym__return_type, + [63820] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, aux_sym_base_clause_token1, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_declaration_list, - STATE(1640), 1, + STATE(1697), 1, sym_text_interpolation, - STATE(1798), 1, + STATE(1802), 1, + sym_declaration_list, + STATE(1880), 1, sym_base_clause, - STATE(2248), 1, + STATE(2422), 1, sym_class_interface_clause, - [60268] = 7, + [63848] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3804), 1, sym_name, - STATE(1641), 1, + STATE(1698), 1, sym_text_interpolation, - STATE(2096), 1, + STATE(1818), 1, sym_const_element, - STATE(2522), 1, + STATE(2635), 1, sym__reserved_identifier, - ACTIONS(2490), 3, + ACTIONS(2588), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [60292] = 8, + [63872] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - ACTIONS(1752), 1, - anon_sym_BSLASH, - STATE(1642), 1, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(983), 1, + sym_declaration_list, + STATE(1699), 1, sym_text_interpolation, - STATE(2223), 1, - sym_arguments, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3523), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [60318] = 9, + STATE(1885), 1, + sym_base_clause, + STATE(2435), 1, + sym_class_interface_clause, + [63900] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3451), 1, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3690), 1, anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1086), 1, - sym_compound_statement, - STATE(1643), 1, + STATE(457), 1, + sym_declaration_list, + STATE(1700), 1, sym_text_interpolation, - STATE(1824), 1, - sym_anonymous_function_use_clause, - STATE(2325), 1, - sym__return_type, - [60346] = 5, + STATE(1820), 1, + sym_base_clause, + STATE(2263), 1, + sym_class_interface_clause, + [63928] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3527), 1, - anon_sym_BSLASHu, - STATE(1644), 1, - sym_text_interpolation, - ACTIONS(3525), 5, - sym_encapsed_string_chars, + ACTIONS(3592), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, + STATE(1413), 1, + sym_use_list, + STATE(1701), 1, + sym_text_interpolation, + STATE(1794), 1, + aux_sym_base_clause_repeat1, + ACTIONS(3840), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [63954] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1842), 1, anon_sym_DOLLAR, - [60366] = 9, + ACTIONS(3730), 1, + anon_sym_AMP, + ACTIONS(3734), 1, + sym_grit_metavariable, + ACTIONS(3842), 1, + anon_sym_RPAREN, + STATE(1702), 1, + sym_text_interpolation, + STATE(2464), 2, + sym_variable_name, + sym_variable_reference, + [63980] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3676), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(1135), 1, + STATE(985), 1, sym_compound_statement, - STATE(1645), 1, + STATE(1703), 1, sym_text_interpolation, - STATE(1789), 1, + STATE(1935), 1, sym_anonymous_function_use_clause, - STATE(2242), 1, + STATE(2497), 1, sym__return_type, - [60394] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3445), 1, - anon_sym_BSLASHu, - STATE(1646), 1, - sym_text_interpolation, - ACTIONS(3447), 5, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [60414] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3185), 1, - anon_sym_BSLASHu, - STATE(1647), 1, - sym_text_interpolation, - ACTIONS(3191), 5, - sym_encapsed_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_DQUOTE, - anon_sym_DOLLAR, - [60434] = 8, + [64008] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3391), 1, - anon_sym_COMMA, - ACTIONS(3393), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(1362), 1, - sym_use_list, - STATE(1622), 1, - aux_sym_base_clause_repeat1, - STATE(1648), 1, - sym_text_interpolation, - ACTIONS(3389), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60460] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3531), 1, - anon_sym_BSLASHu, - STATE(1649), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(996), 1, + sym_compound_statement, + STATE(1704), 1, sym_text_interpolation, - ACTIONS(3529), 5, - sym_execution_string_chars, - anon_sym_LBRACE, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR, - [60480] = 5, + STATE(1931), 1, + sym_anonymous_function_use_clause, + STATE(2493), 1, + sym__return_type, + [64036] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3668), 1, anon_sym_BSLASHu, - STATE(1650), 1, + STATE(1705), 1, sym_text_interpolation, - ACTIONS(3423), 5, + ACTIONS(3670), 5, sym_execution_string_chars, anon_sym_LBRACE, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [60500] = 8, + [64056] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3752), 1, aux_sym_enum_case_token1, - ACTIONS(3459), 1, + ACTIONS(3754), 1, aux_sym_match_default_expression_token1, - ACTIONS(3533), 1, - aux_sym_switch_block_token1, - STATE(1565), 1, + ACTIONS(3844), 1, + anon_sym_RBRACE, + STATE(1601), 1, aux_sym_switch_block_repeat1, - STATE(1651), 1, + STATE(1706), 1, sym_text_interpolation, - STATE(1771), 2, + STATE(1839), 2, sym_case_statement, sym_default_statement, - [60526] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3449), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1080), 1, - sym_compound_statement, - STATE(1652), 1, - sym_text_interpolation, - STATE(1849), 1, - sym_anonymous_function_use_clause, - STATE(2414), 1, - sym__return_type, - [60554] = 9, + [64082] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1043), 1, + aux_sym_while_statement_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3816), 1, aux_sym_else_if_clause_token1, - ACTIONS(3483), 1, + ACTIONS(3818), 1, aux_sym_else_clause_token1, - ACTIONS(3535), 1, - aux_sym_if_statement_token2, - STATE(1653), 1, + STATE(1707), 1, sym_text_interpolation, - STATE(1667), 1, - aux_sym_if_statement_repeat2, - STATE(2177), 1, - sym_else_if_clause_2, - STATE(2518), 1, - sym_else_clause_2, - [60582] = 9, + STATE(1810), 1, + aux_sym_if_statement_repeat1, + STATE(1974), 1, + sym_else_if_clause, + STATE(2238), 1, + sym_else_clause, + [64110] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(448), 1, - sym_declaration_list, - STATE(1654), 1, + STATE(1178), 1, + sym_compound_statement, + STATE(1708), 1, sym_text_interpolation, - STATE(1777), 1, - sym_base_clause, - STATE(2218), 1, - sym_class_interface_clause, - [60610] = 7, + STATE(1865), 1, + sym_anonymous_function_use_clause, + STATE(2392), 1, + sym__return_type, + [64138] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_DOLLAR, - ACTIONS(3537), 1, + ACTIONS(3804), 1, sym_name, - ACTIONS(3539), 1, - anon_sym_LBRACE, - STATE(1655), 1, - sym_text_interpolation, - STATE(761), 2, - sym_dynamic_variable_name, - sym_variable_name, - [60633] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1062), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, - sym_comment, - STATE(1656), 1, - sym_text_interpolation, - ACTIONS(1060), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3541), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60654] = 8, - ACTIONS(5), 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(3543), 1, - ts_builtin_sym_end, - ACTIONS(3545), 1, - sym_php_tag, - STATE(1657), 1, - sym_text_interpolation, - STATE(1717), 1, - aux_sym_text_repeat1, - [60679] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3547), 1, - anon_sym_LBRACE, - ACTIONS(3549), 1, - anon_sym_COLON, - STATE(1658), 1, + STATE(1709), 1, sym_text_interpolation, - STATE(2110), 1, - sym_enum_declaration_list, - STATE(2420), 1, - sym_class_interface_clause, - [60704] = 8, + STATE(2131), 1, + sym_const_element, + STATE(2635), 1, + sym__reserved_identifier, + ACTIONS(2588), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [64162] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(228), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3551), 1, - sym_name, - ACTIONS(3553), 1, - anon_sym_BSLASH, - STATE(478), 1, - sym_compound_statement, - STATE(1659), 1, + ACTIONS(3752), 1, + aux_sym_enum_case_token1, + ACTIONS(3754), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3846), 1, + anon_sym_RBRACE, + STATE(1706), 1, + aux_sym_switch_block_repeat1, + STATE(1710), 1, sym_text_interpolation, - STATE(1736), 1, - sym_namespace_name, - [60729] = 5, + STATE(1839), 2, + sym_case_statement, + sym_default_statement, + [64188] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3555), 1, - anon_sym_PIPE, - STATE(1660), 2, + ACTIONS(3848), 1, + anon_sym_BSLASHu, + STATE(1711), 1, sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3199), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3174), 5, + sym_execution_string_chars, anon_sym_LBRACE, - [60748] = 6, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [64208] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1184), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1661), 1, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_declaration_list, + STATE(1712), 1, sym_text_interpolation, - ACTIONS(1182), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3558), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60769] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + STATE(1872), 1, + sym_base_clause, + STATE(2388), 1, + sym_class_interface_clause, + [64236] = 9, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(3489), 1, - aux_sym_text_token1, - ACTIONS(3491), 1, - aux_sym_text_token2, - ACTIONS(3543), 1, - sym__eof, - ACTIONS(3545), 1, - sym_php_tag, - STATE(1662), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(953), 1, + sym_declaration_list, + STATE(1713), 1, sym_text_interpolation, - STATE(1687), 1, - aux_sym_text_repeat1, - [60794] = 5, + STATE(1916), 1, + sym_base_clause, + STATE(2470), 1, + sym_class_interface_clause, + [64264] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3560), 1, - anon_sym_AMP, - STATE(1663), 2, + ACTIONS(3850), 1, + anon_sym_BSLASHu, + STATE(1714), 1, sym_text_interpolation, - aux_sym_intersection_type_repeat1, - ACTIONS(3167), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3216), 5, + sym_encapsed_string_chars, anon_sym_LBRACE, - [60813] = 8, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [64284] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3563), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(3565), 1, - anon_sym_COLON_COLON, - ACTIONS(3567), 1, - anon_sym_DASH_GT, - ACTIONS(3569), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3571), 1, - anon_sym_LBRACK, - STATE(1664), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(950), 1, + sym_compound_statement, + STATE(1715), 1, sym_text_interpolation, - [60838] = 5, + STATE(1895), 1, + sym_anonymous_function_use_clause, + STATE(2453), 1, + sym__return_type, + [64312] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_PIPE, - STATE(1665), 2, - sym_text_interpolation, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3152), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3610), 1, anon_sym_LBRACE, - [60857] = 6, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + STATE(1716), 1, + sym_text_interpolation, + STATE(1738), 1, + sym_declaration_list, + STATE(1898), 1, + sym_base_clause, + STATE(2456), 1, + sym_class_interface_clause, + [64340] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3578), 1, - anon_sym_COLON, - STATE(1666), 1, + ACTIONS(3630), 1, + anon_sym_BSLASHu, + STATE(1717), 1, sym_text_interpolation, - STATE(2129), 1, - sym__return_type, - ACTIONS(3576), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3632), 5, + sym_execution_string_chars, anon_sym_LBRACE, - [60878] = 7, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR, + [64360] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3580), 1, - aux_sym_if_statement_token2, - ACTIONS(3582), 1, + ACTIONS(3772), 1, aux_sym_else_if_clause_token1, - ACTIONS(3585), 1, + ACTIONS(3774), 1, aux_sym_else_clause_token1, - STATE(2177), 1, - sym_else_if_clause_2, - STATE(1667), 2, - sym_text_interpolation, + ACTIONS(3852), 1, + aux_sym_if_statement_token2, + STATE(1659), 1, aux_sym_if_statement_repeat2, - [60901] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1164), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, - sym_comment, - STATE(1668), 1, + STATE(1718), 1, sym_text_interpolation, - ACTIONS(1162), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3587), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60922] = 6, + STATE(2164), 1, + sym_else_if_clause_2, + STATE(2677), 1, + sym_else_clause_2, + [64388] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1074), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - STATE(1669), 1, + ACTIONS(3676), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(994), 1, + sym_compound_statement, + STATE(1719), 1, sym_text_interpolation, - ACTIONS(1072), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3589), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60943] = 6, + STATE(1899), 1, + sym_anonymous_function_use_clause, + STATE(2459), 1, + sym__return_type, + [64416] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_PIPE, - STATE(1670), 1, - sym_text_interpolation, + ACTIONS(3752), 1, + aux_sym_enum_case_token1, + ACTIONS(3754), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3854), 1, + anon_sym_RBRACE, + STATE(1656), 1, + aux_sym_switch_block_repeat1, STATE(1720), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3203), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [60964] = 6, + sym_text_interpolation, + STATE(1839), 2, + sym_case_statement, + sym_default_statement, + [64442] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1118), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1671), 1, + ACTIONS(1754), 1, + anon_sym_BSLASHu, + STATE(1721), 1, sym_text_interpolation, - ACTIONS(1116), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3593), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [60985] = 5, + ACTIONS(1752), 5, + sym_encapsed_string_chars, + anon_sym_LBRACE, + sym_escape_sequence, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + [64462] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1054), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1672), 1, + ACTIONS(3752), 1, + aux_sym_enum_case_token1, + ACTIONS(3754), 1, + aux_sym_match_default_expression_token1, + ACTIONS(3856), 1, + aux_sym_switch_block_token1, + STATE(1654), 1, + aux_sym_switch_block_repeat1, + STATE(1722), 1, sym_text_interpolation, - ACTIONS(1052), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [61004] = 8, + STATE(1839), 2, + sym_case_statement, + sym_default_statement, + [64488] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(3595), 1, - anon_sym_DOT_DOT_DOT, - STATE(1673), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + STATE(1723), 1, sym_text_interpolation, - STATE(1933), 1, - sym_variable_name, - STATE(1936), 1, - sym_reference_modifier, - [61029] = 7, + STATE(1735), 1, + sym_declaration_list, + STATE(1907), 1, + sym_base_clause, + STATE(2462), 1, + sym_class_interface_clause, + [64516] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3858), 1, sym_name, - STATE(1674), 1, + STATE(1724), 1, sym_text_interpolation, - STATE(1911), 1, + STATE(1821), 1, sym_namespace_name, - STATE(1983), 1, + STATE(2425), 1, sym_namespace_use_group_clause, - ACTIONS(3599), 2, + ACTIONS(3860), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - [61052] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3385), 1, - aux_sym_catch_clause_token1, - ACTIONS(3387), 1, - aux_sym_finally_clause_token1, - STATE(1525), 1, - aux_sym_try_statement_repeat1, - STATE(1675), 1, - sym_text_interpolation, - STATE(1738), 2, - sym_catch_clause, - sym_finally_clause, - [61075] = 6, + [64539] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1130), 1, + ACTIONS(1198), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1676), 1, + STATE(1725), 1, sym_text_interpolation, - ACTIONS(1128), 2, + ACTIONS(1196), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3601), 2, + ACTIONS(3862), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61096] = 8, + [64560] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(3603), 1, - anon_sym_DOT_DOT_DOT, - STATE(1677), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(3866), 1, + anon_sym_COLON, + STATE(1726), 1, sym_text_interpolation, - STATE(1918), 1, - sym_variable_name, - STATE(1919), 1, - sym_reference_modifier, - [61121] = 6, + STATE(2046), 1, + sym_enum_declaration_list, + STATE(2458), 1, + sym_class_interface_clause, + [64585] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3868), 1, + anon_sym_LBRACE, + ACTIONS(3870), 1, + anon_sym_COLON_COLON, + ACTIONS(3872), 1, + anon_sym_DASH_GT, + ACTIONS(3874), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3876), 1, + anon_sym_LBRACK, + STATE(1727), 1, + sym_text_interpolation, + [64610] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1098), 1, + ACTIONS(1069), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1678), 1, + STATE(1728), 1, sym_text_interpolation, - ACTIONS(1096), 2, + ACTIONS(1067), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3605), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61142] = 6, + [64629] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1140), 1, + ACTIONS(1150), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1679), 1, + STATE(1729), 1, sym_text_interpolation, - ACTIONS(1138), 2, + ACTIONS(1148), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3607), 2, + ACTIONS(3878), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61163] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3547), 1, - anon_sym_LBRACE, - ACTIONS(3609), 1, - anon_sym_COLON, - STATE(1680), 1, - sym_text_interpolation, - STATE(2173), 1, - sym_enum_declaration_list, - STATE(2231), 1, - sym_class_interface_clause, - [61188] = 6, + [64650] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1124), 1, + ACTIONS(1144), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1681), 1, + STATE(1730), 1, sym_text_interpolation, - ACTIONS(1122), 2, + ACTIONS(1142), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3611), 2, + ACTIONS(3880), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61209] = 7, + [64671] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3884), 1, anon_sym_BSLASH, - STATE(1682), 1, + STATE(1731), 1, sym_text_interpolation, - STATE(2182), 1, - sym_compound_statement, - ACTIONS(3613), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [61232] = 8, + STATE(1741), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3882), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [64692] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_COLON_COLON, - ACTIONS(3617), 1, - anon_sym_LBRACE, - ACTIONS(3619), 1, - anon_sym_DASH_GT, - ACTIONS(3621), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3623), 1, - anon_sym_LBRACK, - STATE(1683), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1687), 1, + sym_formal_parameters, + STATE(1732), 1, sym_text_interpolation, - [61257] = 7, + STATE(2521), 1, + sym_reference_modifier, + [64717] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3625), 1, - sym_name, - ACTIONS(3627), 1, - anon_sym_LBRACE, - STATE(1684), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1733), 1, sym_text_interpolation, - STATE(588), 2, - sym_dynamic_variable_name, + STATE(2102), 1, + sym_formal_parameters, + STATE(2252), 1, + sym_reference_modifier, + [64742] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(3886), 1, + anon_sym_DOT_DOT_DOT, + STATE(1734), 1, + sym_text_interpolation, + STATE(1969), 1, + sym_reference_modifier, + STATE(2030), 1, sym_variable_name, - [61280] = 6, + [64767] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1204), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3631), 1, - anon_sym_BSLASH, - STATE(1685), 1, + STATE(1735), 1, sym_text_interpolation, - STATE(1692), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3629), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [61301] = 5, + ACTIONS(1202), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3888), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64788] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1031), 1, + ACTIONS(1080), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1686), 1, + STATE(1736), 1, sym_text_interpolation, - ACTIONS(1029), 4, + ACTIONS(1078), 4, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [61320] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3633), 1, - sym_php_tag, - ACTIONS(3635), 1, - aux_sym_text_token1, - ACTIONS(3638), 1, - aux_sym_text_token2, - ACTIONS(3641), 1, - sym__eof, - STATE(1687), 2, - sym_text_interpolation, - aux_sym_text_repeat1, - [61343] = 7, + [64807] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3643), 1, - sym_name, - ACTIONS(3645), 1, - anon_sym_LBRACE, - STATE(1688), 1, + ACTIONS(3892), 1, + anon_sym_BSLASH, + STATE(1737), 2, sym_text_interpolation, - STATE(632), 2, - sym_dynamic_variable_name, - sym_variable_name, - [61366] = 6, + aux_sym_namespace_name_repeat1, + ACTIONS(3890), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [64826] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1200), 1, + ACTIONS(1182), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1689), 1, + STATE(1738), 1, sym_text_interpolation, - ACTIONS(1198), 2, + ACTIONS(1180), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3647), 2, + ACTIONS(3895), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61387] = 6, + [64847] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1138), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3649), 1, - anon_sym_PIPE, - STATE(1690), 1, + STATE(1739), 1, sym_text_interpolation, - STATE(1697), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3209), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [61408] = 5, + ACTIONS(1136), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3897), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [64868] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1104), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3651), 1, - anon_sym_COMMA, - STATE(1691), 2, + STATE(1740), 1, sym_text_interpolation, - aux_sym_base_clause_repeat1, - ACTIONS(3467), 3, + ACTIONS(1102), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(3899), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [61427] = 6, + [64889] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3884), 1, anon_sym_BSLASH, - STATE(1692), 1, - sym_text_interpolation, - STATE(1714), 1, + STATE(1737), 1, aux_sym_namespace_name_repeat1, - ACTIONS(3654), 3, + STATE(1741), 1, + sym_text_interpolation, + ACTIONS(3901), 3, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [61448] = 8, + [64910] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3551), 1, - sym_name, - ACTIONS(3553), 1, + ACTIONS(1860), 1, anon_sym_BSLASH, - STATE(1682), 1, - sym_namespace_name, - STATE(1693), 1, + STATE(1742), 1, sym_text_interpolation, - STATE(2067), 1, - sym_compound_statement, - [61473] = 6, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3736), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [64931] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3606), 1, anon_sym_AMP, - STATE(1663), 1, - aux_sym_intersection_type_repeat1, - STATE(1694), 1, + STATE(1743), 1, sym_text_interpolation, - ACTIONS(3158), 3, + STATE(1749), 1, + aux_sym_intersection_type_repeat1, + ACTIONS(3311), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61494] = 4, + [64952] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1695), 1, - sym_text_interpolation, - ACTIONS(3136), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3903), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [61511] = 6, + ACTIONS(3905), 1, + anon_sym_COLON, + STATE(469), 1, + sym_enum_declaration_list, + STATE(1744), 1, + sym_text_interpolation, + STATE(2254), 1, + sym_class_interface_clause, + [64977] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3649), 1, - anon_sym_PIPE, - STATE(1690), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1696), 1, + ACTIONS(3618), 1, + aux_sym_catch_clause_token1, + ACTIONS(3620), 1, + aux_sym_finally_clause_token1, + STATE(1584), 1, + aux_sym_try_statement_repeat1, + STATE(1745), 1, sym_text_interpolation, - ACTIONS(3203), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [61532] = 5, + STATE(1774), 2, + sym_catch_clause, + sym_finally_clause, + [65000] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3858), 1, + sym_name, + STATE(1746), 1, + sym_text_interpolation, + STATE(1821), 1, + sym_namespace_name, + STATE(2228), 1, + sym_namespace_use_group_clause, + ACTIONS(3860), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [65023] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3656), 1, + ACTIONS(3907), 1, anon_sym_PIPE, - STATE(1697), 2, + STATE(1747), 1, sym_text_interpolation, + STATE(1762), 1, aux_sym_disjunctive_normal_form_type_repeat1, - ACTIONS(3152), 3, + ACTIONS(3578), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [61551] = 4, + [65044] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1698), 1, + ACTIONS(3909), 1, + anon_sym_PIPE, + STATE(1748), 2, sym_text_interpolation, - ACTIONS(2974), 5, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3321), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, anon_sym_LBRACE, - anon_sym_PIPE, - [61568] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3659), 1, - sym_name, - STATE(1699), 1, - sym_text_interpolation, - STATE(2209), 1, - sym__reserved_identifier, - ACTIONS(2490), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [61589] = 6, + [65063] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3649), 1, - anon_sym_PIPE, - STATE(1697), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1700), 1, - sym_text_interpolation, - ACTIONS(3339), 3, + ACTIONS(3912), 1, anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [61610] = 6, + STATE(1749), 2, + sym_text_interpolation, + aux_sym_intersection_type_repeat1, + ACTIONS(3453), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [65082] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3661), 1, + ACTIONS(3915), 1, anon_sym_PIPE, - STATE(1701), 1, + STATE(1750), 2, sym_text_interpolation, - STATE(1703), 1, aux_sym_union_type_repeat1, - ACTIONS(3358), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [61631] = 8, + ACTIONS(3351), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [65101] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3663), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(3665), 1, + ACTIONS(3918), 1, anon_sym_COLON, - STATE(554), 1, - sym_enum_declaration_list, - STATE(1702), 1, + STATE(1751), 1, sym_text_interpolation, - STATE(2346), 1, + STATE(2104), 1, + sym_enum_declaration_list, + STATE(2547), 1, sym_class_interface_clause, - [61656] = 5, + [65126] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1096), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_PIPE, - STATE(1703), 2, + STATE(1752), 1, sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(3199), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [61675] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1045), 1, + ACTIONS(1094), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, aux_sym_while_statement_token1, - ACTIONS(1047), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3670), 1, aux_sym_else_if_clause_token1, - STATE(2044), 1, - sym_else_if_clause, - STATE(1704), 2, - sym_text_interpolation, - aux_sym_if_statement_repeat1, - [61698] = 4, + [65145] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1705), 1, + ACTIONS(3920), 1, + anon_sym_PIPE, + STATE(1748), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1753), 1, sym_text_interpolation, - ACTIONS(3118), 5, + ACTIONS(3578), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, anon_sym_LBRACE, - anon_sym_PIPE, - [61715] = 6, + [65166] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1068), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1706), 1, + ACTIONS(3920), 1, + anon_sym_PIPE, + STATE(1753), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1754), 1, sym_text_interpolation, - ACTIONS(1066), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(3673), 2, + ACTIONS(3568), 3, sym__automatic_semicolon, anon_sym_SEMI, - [61736] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3565), 1, - anon_sym_COLON_COLON, - ACTIONS(3675), 1, anon_sym_LBRACE, - ACTIONS(3677), 1, - anon_sym_DASH_GT, - ACTIONS(3679), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3681), 1, - anon_sym_LBRACK, - STATE(1707), 1, - sym_text_interpolation, - [61761] = 7, + [65187] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3683), 1, - aux_sym_catch_clause_token1, - ACTIONS(3685), 1, - aux_sym_finally_clause_token1, - STATE(424), 1, - aux_sym_try_statement_repeat1, - STATE(1708), 1, + ACTIONS(3924), 1, + anon_sym_BSLASH, + STATE(1755), 1, sym_text_interpolation, - STATE(430), 2, - sym_catch_clause, - sym_finally_clause, - [61784] = 8, + STATE(2245), 1, + sym_compound_statement, + ACTIONS(3922), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65210] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_COLON_COLON, - ACTIONS(3687), 1, - anon_sym_LBRACE, - ACTIONS(3689), 1, - anon_sym_DASH_GT, - ACTIONS(3691), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(3693), 1, - anon_sym_LBRACK, - STATE(1709), 1, + ACTIONS(3928), 1, + anon_sym_COLON, + STATE(1756), 1, sym_text_interpolation, - [61809] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1590), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3695), 1, - sym_name, - ACTIONS(3697), 1, + STATE(2063), 1, + sym__return_type, + ACTIONS(3926), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1710), 1, - sym_text_interpolation, - STATE(806), 2, - sym_dynamic_variable_name, - sym_variable_name, - [61832] = 6, + [65231] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1086), 1, + ACTIONS(1132), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1711), 1, + STATE(1757), 1, sym_text_interpolation, - ACTIONS(1084), 2, + ACTIONS(1130), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3699), 2, + ACTIONS(3930), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61853] = 5, + [65252] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1058), 1, + ACTIONS(1110), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1712), 1, + STATE(1758), 1, sym_text_interpolation, - ACTIONS(1056), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, + ACTIONS(1108), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [61872] = 8, + ACTIONS(3932), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [65273] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3870), 1, anon_sym_COLON_COLON, - ACTIONS(3617), 1, + ACTIONS(3934), 1, anon_sym_LBRACE, - ACTIONS(3623), 1, - anon_sym_LBRACK, - ACTIONS(3701), 1, + ACTIONS(3936), 1, anon_sym_DASH_GT, - ACTIONS(3703), 1, + ACTIONS(3938), 1, anon_sym_QMARK_DASH_GT, - STATE(1713), 1, - sym_text_interpolation, - [61897] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3707), 1, - anon_sym_BSLASH, - STATE(1714), 2, - sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(3705), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [61916] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3663), 1, - anon_sym_LBRACE, - ACTIONS(3710), 1, - anon_sym_COLON, - STATE(562), 1, - sym_enum_declaration_list, - STATE(1715), 1, - sym_text_interpolation, - STATE(2379), 1, - sym_class_interface_clause, - [61941] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3712), 1, - anon_sym_BSLASH, - STATE(1716), 2, + ACTIONS(3940), 1, + anon_sym_LBRACK, + STATE(1759), 1, sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(3705), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [61960] = 7, + [65298] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(3633), 1, - sym_php_tag, - ACTIONS(3641), 1, - ts_builtin_sym_end, - ACTIONS(3715), 1, + ACTIONS(13), 1, aux_sym_text_token1, - ACTIONS(3718), 1, + ACTIONS(15), 1, aux_sym_text_token2, - STATE(1717), 2, + ACTIONS(3942), 1, + ts_builtin_sym_end, + ACTIONS(3944), 1, + sym_php_tag, + STATE(1760), 1, sym_text_interpolation, + STATE(1805), 1, aux_sym_text_repeat1, - [61983] = 6, + [65323] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1154), 1, + ACTIONS(1168), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1718), 1, + STATE(1761), 1, sym_text_interpolation, - ACTIONS(1152), 2, + ACTIONS(1166), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3721), 2, + ACTIONS(3946), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62004] = 6, + [65344] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3725), 1, - anon_sym_EQ, - STATE(1719), 1, + ACTIONS(3948), 1, + anon_sym_PIPE, + STATE(1762), 2, sym_text_interpolation, - STATE(2119), 1, - sym_property_initializer, - ACTIONS(3723), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [62025] = 6, + aux_sym_disjunctive_normal_form_type_repeat1, + ACTIONS(3321), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [65363] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_PIPE, - STATE(1665), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1720), 1, + STATE(1763), 1, sym_text_interpolation, - ACTIONS(3209), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1682), 5, anon_sym_LBRACE, - [62046] = 8, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [65380] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - ACTIONS(3473), 1, - anon_sym_COMMA, - ACTIONS(3727), 1, + ACTIONS(3870), 1, + anon_sym_COLON_COLON, + ACTIONS(3951), 1, anon_sym_LBRACE, - STATE(1721), 1, + ACTIONS(3953), 1, + anon_sym_DASH_GT, + ACTIONS(3955), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(3957), 1, + anon_sym_LBRACK, + STATE(1764), 1, + sym_text_interpolation, + [65405] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3959), 1, + anon_sym_BSLASH, + STATE(1765), 2, sym_text_interpolation, - STATE(2103), 1, - aux_sym_base_clause_repeat1, - STATE(2456), 1, aux_sym_namespace_name_repeat1, - [62071] = 8, + ACTIONS(3890), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [65424] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3962), 1, + aux_sym_catch_clause_token1, + ACTIONS(3964), 1, + aux_sym_finally_clause_token1, + STATE(424), 1, + aux_sym_try_statement_repeat1, + STATE(1766), 1, + sym_text_interpolation, + STATE(434), 2, + sym_catch_clause, + sym_finally_clause, + [65447] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3870), 1, anon_sym_COLON_COLON, - ACTIONS(3729), 1, + ACTIONS(3966), 1, anon_sym_LBRACE, - ACTIONS(3731), 1, + ACTIONS(3968), 1, anon_sym_DASH_GT, - ACTIONS(3733), 1, + ACTIONS(3970), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3735), 1, + ACTIONS(3972), 1, anon_sym_LBRACK, - STATE(1722), 1, + STATE(1767), 1, sym_text_interpolation, - [62096] = 8, + [65472] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_COLON_COLON, - ACTIONS(3729), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LBRACK, - ACTIONS(3737), 1, - anon_sym_DASH_GT, - ACTIONS(3739), 1, - anon_sym_QMARK_DASH_GT, - STATE(1723), 1, + ACTIONS(3974), 1, + anon_sym_PIPE, + STATE(1768), 2, sym_text_interpolation, - [62121] = 8, + aux_sym_union_type_repeat1, + ACTIONS(3351), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [65491] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(2494), 1, - anon_sym_COLON, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1724), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(3977), 1, + anon_sym_DOT_DOT_DOT, + STATE(1769), 1, sym_text_interpolation, - STATE(1986), 1, - sym_formal_parameters, - STATE(2364), 1, + STATE(2205), 1, + sym_variable_name, + STATE(2206), 1, sym_reference_modifier, - [62146] = 6, + [65516] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(3730), 1, + anon_sym_AMP, + ACTIONS(3979), 1, + sym_grit_metavariable, + STATE(1770), 1, + sym_text_interpolation, + STATE(2201), 2, + sym_variable_name, + sym_variable_reference, + [65539] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1190), 1, + ACTIONS(1162), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1725), 1, + STATE(1771), 1, sym_text_interpolation, - ACTIONS(1188), 2, + ACTIONS(1160), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3741), 2, + ACTIONS(3981), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62167] = 7, + [65560] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3743), 1, - sym_name, - ACTIONS(3745), 1, + ACTIONS(3870), 1, + anon_sym_COLON_COLON, + ACTIONS(3966), 1, anon_sym_LBRACE, - ACTIONS(3747), 1, - anon_sym_DOLLAR, - STATE(1726), 1, + ACTIONS(3972), 1, + anon_sym_LBRACK, + ACTIONS(3983), 1, + anon_sym_DASH_GT, + ACTIONS(3985), 1, + anon_sym_QMARK_DASH_GT, + STATE(1772), 1, sym_text_interpolation, - STATE(1541), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62190] = 7, + [65585] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3745), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + ACTIONS(3987), 1, + anon_sym_COMMA, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(3747), 1, - anon_sym_DOLLAR, - ACTIONS(3749), 1, - sym_name, - STATE(1727), 1, + STATE(1773), 1, sym_text_interpolation, - STATE(1541), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62213] = 6, + STATE(2183), 1, + aux_sym_class_interface_clause_repeat1, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + [65610] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1092), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - STATE(1728), 1, + STATE(1774), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(3467), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [62234] = 6, + ACTIONS(1090), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [65629] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1080), 1, + ACTIONS(1116), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1729), 1, + STATE(1775), 1, sym_text_interpolation, - ACTIONS(1078), 2, + ACTIONS(1114), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3751), 2, + ACTIONS(3991), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62255] = 6, + [65650] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1170), 1, + ACTIONS(1156), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1730), 1, + STATE(1776), 1, sym_text_interpolation, - ACTIONS(1168), 2, + ACTIONS(1154), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3753), 2, + ACTIONS(3993), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62276] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(2494), 1, - anon_sym_COLON, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1588), 1, - sym_formal_parameters, - STATE(1731), 1, - sym_text_interpolation, - STATE(2372), 1, - sym_reference_modifier, - [62301] = 7, + [65671] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3755), 1, - sym_name, - ACTIONS(3757), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_DOLLAR, - STATE(1732), 1, + ACTIONS(3995), 1, + anon_sym_COLON, + STATE(532), 1, + sym_enum_declaration_list, + STATE(1777), 1, sym_text_interpolation, - STATE(1609), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62324] = 4, + STATE(2529), 1, + sym_class_interface_clause, + [65696] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1733), 1, - sym_text_interpolation, - ACTIONS(1616), 5, - anon_sym_LBRACE, + ACTIONS(3870), 1, anon_sym_COLON_COLON, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, anon_sym_DASH_GT, + ACTIONS(4001), 1, anon_sym_QMARK_DASH_GT, + ACTIONS(4003), 1, anon_sym_LBRACK, - [62341] = 8, + STATE(1778), 1, + sym_text_interpolation, + [65721] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3870), 1, anon_sym_COLON_COLON, - ACTIONS(3617), 1, + ACTIONS(3966), 1, anon_sym_LBRACE, - ACTIONS(3623), 1, + ACTIONS(3972), 1, anon_sym_LBRACK, - ACTIONS(3761), 1, + ACTIONS(4005), 1, anon_sym_DASH_GT, - ACTIONS(3763), 1, + ACTIONS(4007), 1, anon_sym_QMARK_DASH_GT, - STATE(1734), 1, - sym_text_interpolation, - [62366] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(3765), 1, - anon_sym_AMP, - ACTIONS(3767), 1, - anon_sym_RPAREN, - STATE(1735), 1, + STATE(1779), 1, sym_text_interpolation, - STATE(2350), 2, - sym_variable_name, - sym_variable_reference, - [62389] = 7, + [65746] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(228), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(4009), 1, anon_sym_BSLASH, - STATE(546), 1, - sym_compound_statement, - STATE(1736), 1, + STATE(1780), 1, sym_text_interpolation, - ACTIONS(3769), 2, + STATE(1796), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(3882), 3, sym__automatic_semicolon, anon_sym_SEMI, - [62412] = 6, + anon_sym_LBRACE, + [65767] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3578), 1, - anon_sym_COLON, - STATE(1737), 1, + ACTIONS(3920), 1, + anon_sym_PIPE, + STATE(1748), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1781), 1, sym_text_interpolation, - STATE(1956), 1, - sym__return_type, - ACTIONS(3771), 3, + ACTIONS(3574), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [62433] = 5, + [65788] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1035), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1738), 1, + ACTIONS(3907), 1, + anon_sym_PIPE, + STATE(1762), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1782), 1, sym_text_interpolation, - ACTIONS(1033), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [62452] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3773), 1, - sym_name, - ACTIONS(3775), 1, - anon_sym_LBRACE, - ACTIONS(3777), 1, + ACTIONS(3574), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - STATE(1739), 1, - sym_text_interpolation, - STATE(1616), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62475] = 4, + [65809] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1740), 1, + ACTIONS(4012), 1, + anon_sym_PIPE, + STATE(1750), 1, + aux_sym_union_type_repeat1, + STATE(1783), 1, sym_text_interpolation, - ACTIONS(3142), 5, + ACTIONS(3562), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_AMP, anon_sym_LBRACE, - anon_sym_PIPE, - [62492] = 6, + [65830] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1092), 1, + ACTIONS(1126), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1741), 1, + STATE(1784), 1, sym_text_interpolation, - ACTIONS(1090), 2, + ACTIONS(1124), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3779), 2, + ACTIONS(4014), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62513] = 6, + [65851] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3781), 1, - anon_sym_PIPE, - STATE(1660), 1, - aux_sym_union_type_repeat1, - STATE(1742), 1, + STATE(1785), 1, sym_text_interpolation, - ACTIONS(3358), 3, + ACTIONS(3269), 5, sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_AMP, anon_sym_LBRACE, - [62534] = 8, + anon_sym_PIPE, + [65868] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_COLON_COLON, - ACTIONS(3687), 1, - anon_sym_LBRACE, - ACTIONS(3693), 1, - anon_sym_LBRACK, - ACTIONS(3783), 1, - anon_sym_DASH_GT, - ACTIONS(3785), 1, - anon_sym_QMARK_DASH_GT, - STATE(1743), 1, + ACTIONS(3928), 1, + anon_sym_COLON, + STATE(1786), 1, sym_text_interpolation, - [62559] = 6, + STATE(2121), 1, + sym__return_type, + ACTIONS(4016), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [65889] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3787), 1, - sym_name, - STATE(1744), 1, + ACTIONS(4018), 1, + anon_sym_PIPE, + STATE(1768), 1, + aux_sym_union_type_repeat1, + STATE(1787), 1, sym_text_interpolation, - STATE(1997), 1, - sym_visibility_modifier, - ACTIONS(3789), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [62580] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(3562), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [65910] = 8, + ACTIONS(5), 1, sym_comment, - ACTIONS(3791), 1, - anon_sym_BSLASH, - STATE(1716), 1, - aux_sym_namespace_name_repeat1, - STATE(1745), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(3746), 1, + aux_sym_text_token1, + ACTIONS(3748), 1, + aux_sym_text_token2, + ACTIONS(3942), 1, + sym__eof, + ACTIONS(3944), 1, + sym_php_tag, + STATE(1788), 1, sym_text_interpolation, - ACTIONS(3654), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [62601] = 7, + STATE(1811), 1, + aux_sym_text_repeat1, + [65935] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(3765), 1, - anon_sym_AMP, - ACTIONS(3794), 1, - anon_sym_RPAREN, - STATE(1746), 1, + ACTIONS(3870), 1, + anon_sym_COLON_COLON, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(4003), 1, + anon_sym_LBRACK, + ACTIONS(4020), 1, + anon_sym_DASH_GT, + ACTIONS(4022), 1, + anon_sym_QMARK_DASH_GT, + STATE(1789), 1, sym_text_interpolation, - STATE(2350), 2, - sym_variable_name, - sym_variable_reference, - [62624] = 7, + [65960] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(4024), 1, sym_name, - ACTIONS(3798), 1, - anon_sym_LBRACE, - STATE(1747), 1, + STATE(1790), 1, sym_text_interpolation, - STATE(662), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62647] = 6, + STATE(2235), 1, + sym_visibility_modifier, + ACTIONS(4026), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [65981] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3800), 1, - anon_sym_BSLASH, - STATE(1745), 1, - aux_sym_namespace_name_repeat1, - STATE(1748), 1, + ACTIONS(4028), 1, + aux_sym_if_statement_token2, + ACTIONS(4030), 1, + aux_sym_else_if_clause_token1, + ACTIONS(4033), 1, + aux_sym_else_clause_token1, + STATE(2164), 1, + sym_else_if_clause_2, + STATE(1791), 2, sym_text_interpolation, - ACTIONS(3629), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [62668] = 8, + aux_sym_if_statement_repeat2, + [66004] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3870), 1, anon_sym_COLON_COLON, - ACTIONS(3803), 1, + ACTIONS(3934), 1, anon_sym_LBRACE, - ACTIONS(3805), 1, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(4035), 1, anon_sym_DASH_GT, - ACTIONS(3807), 1, + ACTIONS(4037), 1, anon_sym_QMARK_DASH_GT, - ACTIONS(3809), 1, - anon_sym_LBRACK, - STATE(1749), 1, - sym_text_interpolation, - [62693] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_DOLLAR, - ACTIONS(3811), 1, - sym_name, - STATE(1750), 1, + STATE(1792), 1, sym_text_interpolation, - STATE(1609), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62716] = 7, + [66029] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1842), 1, anon_sym_DOLLAR, - ACTIONS(3813), 1, - sym_name, - ACTIONS(3815), 1, - anon_sym_LBRACE, - STATE(1751), 1, + ACTIONS(3730), 1, + anon_sym_AMP, + ACTIONS(3734), 1, + sym_grit_metavariable, + STATE(1793), 1, sym_text_interpolation, - STATE(884), 2, - sym_dynamic_variable_name, + STATE(2464), 2, sym_variable_name, - [62739] = 6, + sym_variable_reference, + [66052] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_PIPE, - STATE(1665), 1, - aux_sym_disjunctive_normal_form_type_repeat1, - STATE(1752), 1, + ACTIONS(4039), 1, + anon_sym_COMMA, + STATE(1794), 2, sym_text_interpolation, - ACTIONS(3339), 3, + aux_sym_base_clause_repeat1, + ACTIONS(3736), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [62760] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3597), 1, - sym_name, - STATE(1753), 1, - sym_text_interpolation, - STATE(1911), 1, - sym_namespace_name, - STATE(2186), 1, - sym_namespace_use_group_clause, - ACTIONS(3599), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [62783] = 6, + [66071] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3435), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1754), 1, + ACTIONS(4044), 1, + anon_sym_EQ, + STATE(1795), 1, sym_text_interpolation, - STATE(2035), 1, - sym_namespace_aliasing_clause, - ACTIONS(3433), 3, + STATE(1999), 1, + sym_property_initializer, + ACTIONS(4042), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [62804] = 7, + [66092] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3775), 1, - anon_sym_LBRACE, - ACTIONS(3777), 1, - anon_sym_DOLLAR, - ACTIONS(3817), 1, - sym_name, - STATE(1755), 1, + ACTIONS(4046), 1, + anon_sym_BSLASH, + STATE(1765), 1, + aux_sym_namespace_name_repeat1, + STATE(1796), 1, sym_text_interpolation, - STATE(1616), 2, - sym_dynamic_variable_name, - sym_variable_name, - [62827] = 8, + ACTIONS(3901), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [66113] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_COLON_COLON, - ACTIONS(3687), 1, - anon_sym_LBRACE, - ACTIONS(3693), 1, - anon_sym_LBRACK, - ACTIONS(3819), 1, - anon_sym_DASH_GT, - ACTIONS(3821), 1, - anon_sym_QMARK_DASH_GT, - STATE(1756), 1, + ACTIONS(3907), 1, + anon_sym_PIPE, + STATE(1747), 1, + aux_sym_disjunctive_normal_form_type_repeat1, + STATE(1797), 1, sym_text_interpolation, - [62852] = 6, + ACTIONS(3568), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [66134] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1112), 1, + ACTIONS(1192), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1757), 1, + STATE(1798), 1, sym_text_interpolation, - ACTIONS(1110), 2, + ACTIONS(1190), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(3823), 2, + ACTIONS(4049), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62873] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON, - ACTIONS(3553), 1, - anon_sym_BSLASH, - ACTIONS(3825), 1, - sym_name, - STATE(1758), 1, - sym_text_interpolation, - STATE(2521), 1, - sym_namespace_name, - [62895] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3547), 1, - anon_sym_LBRACE, - STATE(1759), 1, - sym_text_interpolation, - STATE(1980), 1, - sym_enum_declaration_list, - STATE(2369), 1, - sym_class_interface_clause, - [62917] = 6, + [66155] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1210), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3829), 1, - anon_sym_COMMA, - STATE(1760), 1, + STATE(1799), 1, sym_text_interpolation, - STATE(1825), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3827), 2, + ACTIONS(1208), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(4051), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62937] = 4, + [66176] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1761), 1, + ACTIONS(3870), 1, + anon_sym_COLON_COLON, + ACTIONS(3934), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(4053), 1, + anon_sym_DASH_GT, + ACTIONS(4055), 1, + anon_sym_QMARK_DASH_GT, + STATE(1800), 1, sym_text_interpolation, - ACTIONS(3831), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [62953] = 7, + [66201] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(228), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3833), 1, - anon_sym_SEMI, - ACTIONS(3835), 1, - sym__automatic_semicolon, - STATE(1368), 1, + ACTIONS(3924), 1, + anon_sym_BSLASH, + STATE(557), 1, sym_compound_statement, - STATE(1762), 1, - sym_text_interpolation, - [62975] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3829), 1, - anon_sym_COMMA, - STATE(1763), 1, + STATE(1801), 1, sym_text_interpolation, - STATE(1876), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3837), 2, + ACTIONS(4057), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62995] = 4, + [66224] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1228), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - STATE(1764), 1, + STATE(1802), 1, sym_text_interpolation, - ACTIONS(3839), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [63011] = 4, + ACTIONS(1226), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(4059), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66245] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1765), 1, + ACTIONS(3666), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1803), 1, sym_text_interpolation, - ACTIONS(3841), 4, + STATE(1976), 1, + sym_namespace_aliasing_clause, + ACTIONS(3664), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [63027] = 4, + [66266] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1766), 1, - sym_text_interpolation, - ACTIONS(3843), 4, - aux_sym_namespace_use_declaration_token1, + ACTIONS(3870), 1, + anon_sym_COLON_COLON, + ACTIONS(4061), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [63043] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(4063), 1, + anon_sym_DASH_GT, + ACTIONS(4065), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(4067), 1, + anon_sym_LBRACK, + STATE(1804), 1, + sym_text_interpolation, + [66291] = 7, + ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1129), 1, - sym_declaration_list, - STATE(1767), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4069), 1, + ts_builtin_sym_end, + ACTIONS(4071), 1, + sym_php_tag, + ACTIONS(4073), 1, + aux_sym_text_token1, + ACTIONS(4076), 1, + aux_sym_text_token2, + STATE(1805), 2, sym_text_interpolation, - STATE(2310), 1, - sym_class_interface_clause, - [63065] = 7, + aux_sym_text_repeat1, + [66314] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1130), 1, - sym_declaration_list, - STATE(1768), 1, + STATE(1806), 1, sym_text_interpolation, - STATE(2311), 1, - sym_class_interface_clause, - [63087] = 6, + ACTIONS(3299), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [66331] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3847), 1, - anon_sym_COMMA, - STATE(1769), 1, + STATE(1807), 1, sym_text_interpolation, - STATE(1875), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3845), 2, + ACTIONS(2910), 5, sym__automatic_semicolon, anon_sym_SEMI, - [63107] = 4, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_PIPE, + [66348] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1770), 1, + STATE(1808), 1, sym_text_interpolation, - ACTIONS(3849), 4, + ACTIONS(3281), 5, sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_AMP, anon_sym_LBRACE, - anon_sym_COLON, - [63123] = 4, + anon_sym_PIPE, + [66365] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1234), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - STATE(1771), 1, + STATE(1809), 1, sym_text_interpolation, - ACTIONS(3851), 4, - anon_sym_RBRACE, - aux_sym_enum_case_token1, - aux_sym_match_default_expression_token1, - aux_sym_switch_block_token1, - [63139] = 6, + ACTIONS(1232), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(4079), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66386] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1071), 1, + aux_sym_while_statement_token1, + ACTIONS(1073), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3855), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1772), 1, + ACTIONS(4081), 1, + aux_sym_else_if_clause_token1, + STATE(1974), 1, + sym_else_if_clause, + STATE(1810), 2, sym_text_interpolation, - STATE(2446), 1, - sym_namespace_aliasing_clause, - ACTIONS(3853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [63159] = 6, + aux_sym_if_statement_repeat1, + [66409] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(3857), 1, - anon_sym_SQUOTE, - ACTIONS(3859), 1, - aux_sym_string_token2, - ACTIONS(3862), 1, - sym_string_value, - STATE(1773), 2, + ACTIONS(4069), 1, + sym__eof, + ACTIONS(4071), 1, + sym_php_tag, + ACTIONS(4084), 1, + aux_sym_text_token1, + ACTIONS(4087), 1, + aux_sym_text_token2, + STATE(1811), 2, sym_text_interpolation, - aux_sym_string_repeat1, - [63179] = 6, + aux_sym_text_repeat1, + [66432] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4092), 1, + anon_sym_COMMA, + STATE(1812), 1, + sym_text_interpolation, + STATE(1893), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(4090), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66452] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + STATE(478), 1, + sym_enum_declaration_list, + STATE(1813), 1, + sym_text_interpolation, + STATE(2301), 1, + sym_class_interface_clause, + [66474] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(4094), 1, anon_sym_AMP, - STATE(1774), 1, + STATE(1814), 1, sym_text_interpolation, - STATE(1823), 1, + STATE(1870), 1, aux_sym_intersection_type_repeat1, - ACTIONS(3158), 2, + ACTIONS(3311), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [63199] = 6, + [66494] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3870), 1, - anon_sym_COMMA, - STATE(1775), 1, + STATE(1815), 1, sym_text_interpolation, - STATE(1891), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3868), 2, + ACTIONS(4097), 4, sym__automatic_semicolon, anon_sym_SEMI, - [63219] = 5, + anon_sym_LBRACE, + anon_sym_COLON, + [66510] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3874), 1, - anon_sym_EQ, - STATE(1776), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1183), 1, + sym_compound_statement, + STATE(1816), 1, sym_text_interpolation, - ACTIONS(3872), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [63237] = 7, + STATE(2460), 1, + sym__return_type, + [66532] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, + ACTIONS(3690), 1, anon_sym_LBRACE, - STATE(440), 1, + STATE(458), 1, sym_declaration_list, - STATE(1777), 1, + STATE(1817), 1, sym_text_interpolation, - STATE(2442), 1, + STATE(2461), 1, sym_class_interface_clause, - [63259] = 6, + [66554] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3829), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1778), 1, + STATE(1818), 1, sym_text_interpolation, - STATE(1835), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3876), 2, + STATE(1881), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(4099), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63279] = 4, + [66574] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1779), 1, - sym_text_interpolation, - ACTIONS(3152), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [63295] = 6, + STATE(1162), 1, + sym_compound_statement, + STATE(1819), 1, + sym_text_interpolation, + STATE(2489), 1, + sym__return_type, + [66596] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3880), 1, - anon_sym_COMMA, - STATE(1780), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(463), 1, + sym_declaration_list, + STATE(1820), 1, sym_text_interpolation, - STATE(1895), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3878), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63315] = 4, + STATE(2366), 1, + sym_class_interface_clause, + [66618] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1781), 1, + ACTIONS(4105), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1821), 1, sym_text_interpolation, - ACTIONS(3705), 4, + STATE(2499), 1, + sym_namespace_aliasing_clause, + ACTIONS(4103), 2, anon_sym_COMMA, - anon_sym_BSLASH, - aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [63331] = 7, + [66638] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3663), 1, - anon_sym_LBRACE, - STATE(539), 1, - sym_enum_declaration_list, - STATE(1782), 1, + STATE(1822), 1, sym_text_interpolation, - STATE(2440), 1, - sym_class_interface_clause, - [63353] = 4, + ACTIONS(4107), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [66654] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1783), 1, + STATE(1823), 1, sym_text_interpolation, - ACTIONS(3178), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4109), 4, + aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, - anon_sym_PIPE, - [63369] = 6, + anon_sym_COLON, + anon_sym_EQ_GT, + [66670] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1618), 1, - anon_sym_LPAREN, - STATE(1784), 1, + STATE(1824), 1, sym_text_interpolation, - STATE(2223), 1, - sym_arguments, - ACTIONS(3523), 2, + ACTIONS(4111), 4, anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_RBRACK, - [63389] = 5, - ACTIONS(5), 1, + [66686] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, + STATE(1825), 1, + sym_text_interpolation, + ACTIONS(4113), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [66702] = 7, + ACTIONS(3), 1, anon_sym_QMARK_GT, - STATE(1785), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4115), 1, + anon_sym_SEMI, + ACTIONS(4117), 1, + sym__automatic_semicolon, + STATE(1411), 1, + sym_compound_statement, + STATE(1826), 1, sym_text_interpolation, - ACTIONS(3882), 2, - ts_builtin_sym_end, - aux_sym_text_token2, - ACTIONS(3884), 2, - sym_php_tag, - aux_sym_text_token1, - [63407] = 7, + [66724] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(1827), 1, + sym_text_interpolation, + STATE(1945), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(4119), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [66744] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(228), 1, anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1113), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4123), 1, + anon_sym_SEMI, + ACTIONS(4125), 1, + sym__automatic_semicolon, + STATE(1407), 1, sym_compound_statement, - STATE(1786), 1, + STATE(1828), 1, sym_text_interpolation, - STATE(2439), 1, - sym__return_type, - [63429] = 6, + [66766] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3829), 1, - anon_sym_COMMA, - STATE(1787), 1, + STATE(1829), 1, sym_text_interpolation, - STATE(1910), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(3886), 2, + ACTIONS(3415), 4, sym__automatic_semicolon, anon_sym_SEMI, - [63449] = 6, + anon_sym_LBRACE, + anon_sym_PIPE, + [66782] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(3806), 1, anon_sym_COMMA, - STATE(1788), 1, + STATE(1830), 1, sym_text_interpolation, - STATE(1857), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3888), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63469] = 7, + STATE(1938), 1, + aux_sym_base_clause_repeat1, + ACTIONS(4127), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [66802] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1110), 1, - sym_compound_statement, - STATE(1789), 1, + STATE(1831), 1, sym_text_interpolation, - STATE(2293), 1, - sym__return_type, - [63491] = 5, + ACTIONS(3736), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + [66818] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3892), 1, - anon_sym_COMMA, - ACTIONS(3467), 2, + ACTIONS(3610), 1, anon_sym_LBRACE, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - STATE(1790), 2, + STATE(1154), 1, + sym_declaration_list, + STATE(1832), 1, sym_text_interpolation, - aux_sym_base_clause_repeat1, - [63509] = 6, + STATE(2347), 1, + sym_class_interface_clause, + [66840] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(4131), 1, anon_sym_PIPE, - STATE(1791), 1, + STATE(1833), 1, sym_text_interpolation, - STATE(1885), 1, + STATE(1929), 1, aux_sym_type_list_repeat1, - ACTIONS(3895), 2, + ACTIONS(4129), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [63529] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + [66860] = 5, + ACTIONS(5), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3663), 1, - anon_sym_LBRACE, - STATE(505), 1, - sym_enum_declaration_list, - STATE(1792), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1834), 1, sym_text_interpolation, - STATE(2290), 1, - sym_class_interface_clause, - [63551] = 6, + ACTIONS(4133), 2, + sym_php_tag, + aux_sym_text_token1, + ACTIONS(4135), 2, + sym__eof, + aux_sym_text_token2, + [66878] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, - anon_sym_COMMA, - STATE(1793), 1, + STATE(1835), 1, sym_text_interpolation, - STATE(1815), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3899), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63571] = 7, + STATE(2664), 1, + sym_declare_directive, + ACTIONS(4137), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [66896] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(3269), 1, + ACTIONS(3466), 1, anon_sym_LPAREN, - STATE(1580), 1, - sym_formal_parameters, - STATE(1794), 1, + STATE(1836), 1, sym_text_interpolation, - STATE(2304), 1, + STATE(2102), 1, + sym_formal_parameters, + STATE(2252), 1, sym_reference_modifier, - [63593] = 7, + [66918] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(228), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3901), 1, - anon_sym_SEMI, - ACTIONS(3903), 1, - sym__automatic_semicolon, - STATE(1373), 1, - sym_compound_statement, - STATE(1795), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + STATE(1153), 1, + sym_declaration_list, + STATE(1837), 1, sym_text_interpolation, - [63615] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + STATE(2332), 1, + sym_class_interface_clause, + [66940] = 7, + ACTIONS(5), 1, sym_comment, - STATE(1796), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4139), 1, + anon_sym_SQUOTE, + ACTIONS(4141), 1, + aux_sym_string_token2, + ACTIONS(4143), 1, + sym_string_value, + STATE(1838), 1, sym_text_interpolation, - ACTIONS(3705), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BSLASH, - anon_sym_LBRACE, - [63631] = 7, + STATE(1921), 1, + aux_sym_string_repeat1, + [66962] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3905), 1, - anon_sym_LBRACE, - STATE(465), 1, - sym_declaration_list, - STATE(1797), 1, + STATE(1839), 1, sym_text_interpolation, - STATE(2383), 1, - sym_base_clause, - [63653] = 7, + ACTIONS(4145), 4, + anon_sym_RBRACE, + aux_sym_enum_case_token1, + aux_sym_match_default_expression_token1, + aux_sym_switch_block_token1, + [66978] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_declaration_list, - STATE(1798), 1, + STATE(1840), 1, sym_text_interpolation, - STATE(2410), 1, - sym_class_interface_clause, - [63675] = 6, + STATE(2578), 1, + sym_declare_directive, + ACTIONS(4137), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [66996] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3473), 1, + ACTIONS(4121), 1, anon_sym_COMMA, - STATE(1799), 1, + STATE(1841), 1, sym_text_interpolation, STATE(1859), 1, - aux_sym_base_clause_repeat1, - ACTIONS(3475), 2, + aux_sym_property_declaration_repeat2, + ACTIONS(4147), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [67016] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3610), 1, anon_sym_LBRACE, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - [63695] = 7, + STATE(1130), 1, + sym_declaration_list, + STATE(1842), 1, + sym_text_interpolation, + STATE(2503), 1, + sym_class_interface_clause, + [67038] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3907), 1, - anon_sym_EQ, - ACTIONS(3909), 1, - anon_sym_RPAREN, - STATE(1800), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1703), 1, + sym_formal_parameters, + STATE(1843), 1, sym_text_interpolation, - STATE(2132), 1, - aux_sym__list_destructing_repeat1, - [63717] = 7, + STATE(2370), 1, + sym_reference_modifier, + [67060] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1090), 1, - sym_declaration_list, - STATE(1801), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1695), 1, + sym_formal_parameters, + STATE(1844), 1, sym_text_interpolation, - STATE(2206), 1, - sym_class_interface_clause, - [63739] = 4, + STATE(2537), 1, + sym_reference_modifier, + [67082] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1802), 1, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(1845), 1, sym_text_interpolation, - ACTIONS(3839), 4, + STATE(1859), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(4149), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [63755] = 7, + [67102] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(228), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3911), 1, - anon_sym_SEMI, - ACTIONS(3913), 1, - sym__automatic_semicolon, - STATE(1374), 1, - sym_compound_statement, - STATE(1803), 1, + ACTIONS(4092), 1, + anon_sym_COMMA, + STATE(1812), 1, + aux_sym_function_static_declaration_repeat1, + STATE(1846), 1, sym_text_interpolation, - [63777] = 7, + ACTIONS(4151), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [67122] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1603), 1, - sym_formal_parameters, - STATE(1804), 1, + ACTIONS(4155), 1, + anon_sym_EQ, + STATE(1847), 1, sym_text_interpolation, - STATE(2338), 1, - sym_reference_modifier, - [63799] = 7, + ACTIONS(4153), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [67140] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(439), 1, - sym_declaration_list, - STATE(1805), 1, + ACTIONS(4159), 1, + anon_sym_COMMA, + STATE(1848), 1, sym_text_interpolation, - STATE(2282), 1, - sym_class_interface_clause, - [63821] = 7, + STATE(1956), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(4157), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [67160] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4163), 1, + sym_nowdoc_string, + ACTIONS(4161), 2, + sym_heredoc_end, + sym__new_line, + STATE(1849), 2, + sym_text_interpolation, + aux_sym_nowdoc_body_repeat1, + [67178] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(228), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3915), 1, - anon_sym_SEMI, - ACTIONS(3917), 1, - sym__automatic_semicolon, - STATE(1366), 1, - sym_compound_statement, - STATE(1806), 1, + ACTIONS(3806), 1, + anon_sym_COMMA, + STATE(1830), 1, + aux_sym_base_clause_repeat1, + STATE(1850), 1, sym_text_interpolation, - [63843] = 7, + ACTIONS(3808), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [67198] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(3269), 1, + ACTIONS(3466), 1, anon_sym_LPAREN, - STATE(1588), 1, + STATE(1629), 1, sym_formal_parameters, - STATE(1807), 1, + STATE(1851), 1, sym_text_interpolation, - STATE(2372), 1, + STATE(2264), 1, sym_reference_modifier, - [63865] = 7, + [67220] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3018), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3919), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3921), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1808), 1, + ACTIONS(4166), 1, + anon_sym_SEMI, + ACTIONS(4168), 1, + sym__automatic_semicolon, + STATE(1408), 1, + sym_compound_statement, + STATE(1852), 1, sym_text_interpolation, - STATE(2481), 1, - sym_static_modifier, - [63887] = 5, + [67242] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1809), 1, + STATE(1853), 1, sym_text_interpolation, - STATE(2520), 1, + STATE(2559), 1, sym_declare_directive, - ACTIONS(3923), 3, + ACTIONS(4137), 3, anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [63905] = 6, + [67260] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, - anon_sym_COMMA, - STATE(1810), 1, + ACTIONS(4172), 1, + anon_sym_PIPE, + ACTIONS(4170), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + STATE(1854), 2, sym_text_interpolation, - STATE(1822), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3925), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [63925] = 7, + aux_sym_type_list_repeat1, + [67278] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1645), 1, - sym_formal_parameters, - STATE(1811), 1, + ACTIONS(4177), 1, + anon_sym_COMMA, + ACTIONS(4175), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1855), 2, sym_text_interpolation, - STATE(2337), 1, - sym_reference_modifier, - [63947] = 7, + aux_sym__const_declaration_repeat1, + [67296] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(464), 1, - sym_declaration_list, - STATE(1812), 1, + ACTIONS(3137), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(3145), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4180), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1856), 1, sym_text_interpolation, - STATE(2253), 1, - sym_class_interface_clause, - [63969] = 7, + STATE(2572), 1, + sym_static_modifier, + [67318] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, + ACTIONS(1830), 1, anon_sym_AMP, - ACTIONS(3269), 1, + ACTIONS(3466), 1, anon_sym_LPAREN, - STATE(1643), 1, + STATE(1696), 1, sym_formal_parameters, - STATE(1813), 1, + STATE(1857), 1, sym_text_interpolation, - STATE(2431), 1, + STATE(2405), 1, sym_reference_modifier, - [63991] = 7, + [67340] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1589), 1, - sym_formal_parameters, - STATE(1814), 1, + ACTIONS(4101), 1, + anon_sym_COMMA, + STATE(1855), 1, + aux_sym__const_declaration_repeat1, + STATE(1858), 1, sym_text_interpolation, - STATE(2348), 1, - sym_reference_modifier, - [64013] = 5, + ACTIONS(4182), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [67360] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(4186), 1, anon_sym_COMMA, - ACTIONS(3927), 2, + ACTIONS(4184), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1815), 2, - sym_text_interpolation, - aux_sym__const_declaration_repeat1, - [64031] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3010), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(3018), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(3932), 1, - aux_sym_namespace_use_declaration_token2, - STATE(1816), 1, + STATE(1859), 2, sym_text_interpolation, - STATE(2481), 1, - sym_static_modifier, - [64053] = 7, + aux_sym_property_declaration_repeat2, + [67378] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - STATE(1077), 1, + STATE(1729), 1, sym_declaration_list, - STATE(1817), 1, + STATE(1860), 1, sym_text_interpolation, - STATE(2380), 1, + STATE(2374), 1, sym_class_interface_clause, - [64075] = 6, + [67400] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3897), 1, - anon_sym_PIPE, - STATE(1791), 1, - aux_sym_type_list_repeat1, - STATE(1818), 1, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(1845), 1, + aux_sym_property_declaration_repeat2, + STATE(1861), 1, sym_text_interpolation, - ACTIONS(3934), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [64095] = 7, + ACTIONS(4189), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [67420] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1819), 1, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(1859), 1, + aux_sym_property_declaration_repeat2, + STATE(1862), 1, sym_text_interpolation, - STATE(2018), 1, - sym_formal_parameters, - STATE(2259), 1, - sym_reference_modifier, - [64117] = 5, + ACTIONS(4191), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [67440] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1820), 1, + ACTIONS(4195), 1, + anon_sym_COMMA, + STATE(1863), 1, sym_text_interpolation, - STATE(2549), 1, - sym_declare_directive, - ACTIONS(3923), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [64135] = 6, + STATE(1965), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(4193), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [67460] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, - anon_sym_COMMA, - STATE(1793), 1, - aux_sym__const_declaration_repeat1, - STATE(1821), 1, + STATE(1864), 1, sym_text_interpolation, - ACTIONS(3936), 2, + ACTIONS(3321), 4, sym__automatic_semicolon, anon_sym_SEMI, - [64155] = 6, + anon_sym_LBRACE, + anon_sym_PIPE, + [67476] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1140), 1, + sym_compound_statement, + STATE(1865), 1, + sym_text_interpolation, + STATE(2291), 1, + sym__return_type, + [67498] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(956), 1, + sym_compound_statement, + STATE(1866), 1, + sym_text_interpolation, + STATE(2375), 1, + sym__return_type, + [67520] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1815), 1, - aux_sym__const_declaration_repeat1, - STATE(1822), 1, + STATE(1867), 1, sym_text_interpolation, - ACTIONS(3938), 2, + STATE(1951), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(4197), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64175] = 5, + [67540] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1694), 1, + sym_formal_parameters, + STATE(1868), 1, + sym_text_interpolation, + STATE(2415), 1, + sym_reference_modifier, + [67562] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(535), 1, + sym_declaration_list, + STATE(1869), 1, + sym_text_interpolation, + STATE(2531), 1, + sym_base_clause, + [67584] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4201), 1, anon_sym_AMP, - ACTIONS(3167), 2, + ACTIONS(3453), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - STATE(1823), 2, + STATE(1870), 2, sym_text_interpolation, aux_sym_intersection_type_repeat1, - [64193] = 7, + [67602] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3690), 1, anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1101), 1, - sym_compound_statement, - STATE(1824), 1, - sym_text_interpolation, - STATE(2457), 1, - sym__return_type, - [64215] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3945), 1, - anon_sym_COMMA, - ACTIONS(3943), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1825), 2, + STATE(439), 1, + sym_declaration_list, + STATE(1871), 1, sym_text_interpolation, - aux_sym_property_declaration_repeat2, - [64233] = 5, + STATE(2454), 1, + sym_class_interface_clause, + [67624] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_COMMA, - ACTIONS(3948), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1826), 2, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(447), 1, + sym_declaration_list, + STATE(1872), 1, sym_text_interpolation, - aux_sym_function_static_declaration_repeat1, - [64251] = 7, + STATE(2334), 1, + sym_class_interface_clause, + [67646] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - STATE(1669), 1, + STATE(1758), 1, sym_declaration_list, - STATE(1827), 1, + STATE(1873), 1, sym_text_interpolation, - STATE(2336), 1, + STATE(2387), 1, sym_class_interface_clause, - [64273] = 7, + [67668] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1145), 1, - sym_compound_statement, - STATE(1828), 1, + STATE(1874), 1, sym_text_interpolation, - STATE(2234), 1, - sym__return_type, - [64295] = 7, + STATE(2116), 1, + sym_enum_declaration_list, + STATE(2391), 1, + sym_class_interface_clause, + [67690] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(925), 1, + STATE(970), 1, sym_compound_statement, - STATE(1829), 1, + STATE(1875), 1, sym_text_interpolation, - STATE(2339), 1, + STATE(2393), 1, sym__return_type, - [64317] = 4, + [67712] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1830), 1, - sym_text_interpolation, - ACTIONS(1730), 4, + ACTIONS(1830), 1, anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [64333] = 4, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1687), 1, + sym_formal_parameters, + STATE(1876), 1, + sym_text_interpolation, + STATE(2521), 1, + sym_reference_modifier, + [67734] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1831), 1, - sym_text_interpolation, - ACTIONS(3467), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, anon_sym_LBRACE, - [64349] = 4, + STATE(1119), 1, + sym_compound_statement, + STATE(1877), 1, + sym_text_interpolation, + STATE(2340), 1, + sym__return_type, + [67756] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - STATE(1832), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(973), 1, + sym_compound_statement, + STATE(1878), 1, sym_text_interpolation, - ACTIONS(3183), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [64365] = 6, + STATE(2395), 1, + sym__return_type, + [67778] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1815), 1, + STATE(1855), 1, aux_sym__const_declaration_repeat1, - STATE(1833), 1, + STATE(1879), 1, sym_text_interpolation, - ACTIONS(3953), 2, + ACTIONS(4204), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64385] = 7, + [67798] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - STATE(1729), 1, + STATE(1775), 1, sym_declaration_list, - STATE(1834), 1, + STATE(1880), 1, sym_text_interpolation, - STATE(2366), 1, + STATE(2398), 1, sym_class_interface_clause, - [64407] = 6, + [67820] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3829), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1825), 1, - aux_sym_property_declaration_repeat2, - STATE(1835), 1, + STATE(1855), 1, + aux_sym__const_declaration_repeat1, + STATE(1881), 1, sym_text_interpolation, - ACTIONS(3955), 2, + ACTIONS(4206), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64427] = 7, + [67840] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(933), 1, - sym_compound_statement, - STATE(1836), 1, + ACTIONS(3145), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4208), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(4210), 1, + aux_sym_namespace_use_declaration_token2, + STATE(1882), 1, sym_text_interpolation, - STATE(2371), 1, - sym__return_type, - [64449] = 7, + STATE(2572), 1, + sym_static_modifier, + [67862] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4214), 1, + sym_nowdoc_string, + STATE(1849), 1, + aux_sym_nowdoc_body_repeat1, + STATE(1883), 1, + sym_text_interpolation, + ACTIONS(4212), 2, + sym_heredoc_end, + sym__new_line, + [67882] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(937), 1, - sym_compound_statement, - STATE(1837), 1, + STATE(1884), 1, sym_text_interpolation, - STATE(2376), 1, - sym__return_type, - [64471] = 7, + ACTIONS(4216), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [67898] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, + ACTIONS(3616), 1, anon_sym_LBRACE, - STATE(449), 1, + STATE(1005), 1, sym_declaration_list, - STATE(1838), 1, + STATE(1885), 1, sym_text_interpolation, - STATE(2229), 1, + STATE(2401), 1, sym_class_interface_clause, - [64493] = 4, + [67920] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1839), 1, + STATE(1886), 1, sym_text_interpolation, - ACTIONS(3199), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4218), 4, + aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, - anon_sym_PIPE, - [64509] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3957), 1, - anon_sym_SQUOTE, - ACTIONS(3959), 1, - aux_sym_string_token2, - ACTIONS(3961), 1, - sym_string_value, - STATE(1840), 1, - sym_text_interpolation, - STATE(1892), 1, - aux_sym_string_repeat1, - [64531] = 6, + anon_sym_COLON, + anon_sym_EQ_GT, + [67936] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4222), 1, anon_sym_COMMA, - STATE(1815), 1, - aux_sym__const_declaration_repeat1, - STATE(1841), 1, - sym_text_interpolation, - ACTIONS(3963), 2, + ACTIONS(4220), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64551] = 7, + STATE(1887), 2, + sym_text_interpolation, + aux_sym_namespace_use_declaration_repeat1, + [67954] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1581), 1, - sym_formal_parameters, - STATE(1842), 1, + STATE(1888), 1, sym_text_interpolation, - STATE(2235), 1, - sym_reference_modifier, - [64573] = 7, + STATE(2594), 1, + sym_declare_directive, + ACTIONS(4137), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [67972] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1656), 1, - sym_declaration_list, - STATE(1843), 1, + STATE(1141), 1, + sym_compound_statement, + STATE(1889), 1, sym_text_interpolation, - STATE(2386), 1, - sym_class_interface_clause, - [64595] = 6, + STATE(2445), 1, + sym__return_type, + [67994] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(3765), 1, - anon_sym_AMP, - STATE(1844), 1, + ACTIONS(4195), 1, + anon_sym_COMMA, + STATE(1887), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1890), 1, sym_text_interpolation, - STATE(1923), 2, - sym_variable_name, - sym_variable_reference, - [64615] = 7, + ACTIONS(4225), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [68014] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_declaration_list, - STATE(1845), 1, + STATE(1891), 1, sym_text_interpolation, - STATE(2389), 1, - sym_class_interface_clause, - [64637] = 6, + ACTIONS(3890), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BSLASH, + anon_sym_LBRACE, + [68030] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(4229), 1, anon_sym_COMMA, - STATE(1846), 1, + ACTIONS(4227), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1892), 2, sym_text_interpolation, - STATE(1870), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3965), 2, + aux_sym_global_declaration_repeat1, + [68048] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4234), 1, + anon_sym_COMMA, + ACTIONS(4232), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64657] = 7, + STATE(1893), 2, + sym_text_interpolation, + aux_sym_function_static_declaration_repeat1, + [68066] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(963), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1131), 1, sym_compound_statement, - STATE(1847), 1, + STATE(1894), 1, sym_text_interpolation, - STATE(2398), 1, + STATE(2267), 1, sym__return_type, - [64679] = 4, + [68088] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(1848), 1, - sym_text_interpolation, - ACTIONS(3843), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(395), 1, anon_sym_LBRACE, - anon_sym_COLON, - [64695] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(1122), 1, + STATE(1002), 1, sym_compound_statement, - STATE(1849), 1, + STATE(1895), 1, sym_text_interpolation, - STATE(2207), 1, + STATE(2412), 1, sym__return_type, - [64717] = 7, + [68110] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4141), 1, + aux_sym_string_token2, + ACTIONS(4143), 1, + sym_string_value, + ACTIONS(4237), 1, + anon_sym_SQUOTE, + STATE(1896), 1, + sym_text_interpolation, + STATE(1950), 1, + aux_sym_string_repeat1, + [68132] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1897), 1, + sym_text_interpolation, + STATE(2170), 1, + sym_formal_parameters, + STATE(2262), 1, + sym_reference_modifier, + [68154] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - STATE(1676), 1, + STATE(1799), 1, sym_declaration_list, - STATE(1850), 1, + STATE(1898), 1, sym_text_interpolation, - STATE(2405), 1, + STATE(2414), 1, sym_class_interface_clause, - [64739] = 7, + [68176] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(973), 1, + STATE(997), 1, sym_compound_statement, - STATE(1851), 1, + STATE(1899), 1, sym_text_interpolation, - STATE(2406), 1, + STATE(2416), 1, sym__return_type, - [64761] = 7, + [68198] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3469), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(447), 1, - sym_declaration_list, - STATE(1852), 1, - sym_text_interpolation, - STATE(2239), 1, - sym_class_interface_clause, - [64783] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3959), 1, - aux_sym_string_token2, - ACTIONS(3961), 1, - sym_string_value, - ACTIONS(3967), 1, - anon_sym_SQUOTE, - STATE(1853), 1, + STATE(1144), 1, + sym_compound_statement, + STATE(1900), 1, sym_text_interpolation, - STATE(1907), 1, - aux_sym_string_repeat1, - [64805] = 6, + STATE(2441), 1, + sym__return_type, + [68220] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3829), 1, - anon_sym_COMMA, - STATE(1760), 1, - aux_sym_property_declaration_repeat2, - STATE(1854), 1, + STATE(1901), 1, sym_text_interpolation, - ACTIONS(3969), 2, + ACTIONS(4109), 4, sym__automatic_semicolon, anon_sym_SEMI, - [64825] = 6, + anon_sym_LBRACE, + anon_sym_COLON, + [68236] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3880), 1, - anon_sym_COMMA, - STATE(1855), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_enum_declaration_list, + STATE(1902), 1, sym_text_interpolation, - STATE(1904), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(3971), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [64845] = 6, + STATE(2440), 1, + sym_class_interface_clause, + [68258] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3870), 1, - anon_sym_COMMA, - STATE(1856), 1, + STATE(1903), 1, sym_text_interpolation, - STATE(1905), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(3973), 2, + ACTIONS(4107), 4, sym__automatic_semicolon, anon_sym_SEMI, - [64865] = 6, + anon_sym_LBRACE, + anon_sym_COLON, + [68274] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1815), 1, + STATE(1855), 1, aux_sym__const_declaration_repeat1, - STATE(1857), 1, + STATE(1904), 1, sym_text_interpolation, - ACTIONS(3925), 2, + ACTIONS(4239), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64885] = 6, + [68294] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1858), 1, + STATE(1879), 1, + aux_sym__const_declaration_repeat1, + STATE(1905), 1, sym_text_interpolation, - STATE(1908), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(3975), 2, + ACTIONS(4241), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64905] = 6, + [68314] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3473), 1, - anon_sym_COMMA, - STATE(1790), 1, - aux_sym_base_clause_repeat1, - STATE(1859), 1, + ACTIONS(1674), 1, + anon_sym_LPAREN, + STATE(1906), 1, sym_text_interpolation, - ACTIONS(3977), 2, + STATE(2486), 1, + sym_arguments, + ACTIONS(3826), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68334] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3610), 1, anon_sym_LBRACE, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - [64925] = 6, + STATE(1809), 1, + sym_declaration_list, + STATE(1907), 1, + sym_text_interpolation, + STATE(2426), 1, + sym_class_interface_clause, + [68356] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1815), 1, - aux_sym__const_declaration_repeat1, - STATE(1860), 1, + STATE(1908), 1, sym_text_interpolation, - ACTIONS(3979), 2, + STATE(1939), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(4243), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64945] = 5, + [68376] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1861), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, + STATE(1909), 1, sym_text_interpolation, - STATE(2570), 1, - sym_declare_directive, - ACTIONS(3923), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [64963] = 6, + STATE(2434), 1, + sym_class_interface_clause, + [68398] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, - anon_sym_COMMA, - STATE(1862), 1, + STATE(1910), 1, sym_text_interpolation, - STATE(1887), 1, - aux_sym__const_declaration_repeat1, - ACTIONS(3981), 2, + ACTIONS(4218), 4, sym__automatic_semicolon, anon_sym_SEMI, - [64983] = 6, + anon_sym_LBRACE, + anon_sym_COLON, + [68414] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4092), 1, anon_sym_COMMA, - STATE(1841), 1, - aux_sym__const_declaration_repeat1, - STATE(1863), 1, + STATE(1911), 1, sym_text_interpolation, - ACTIONS(3983), 2, + STATE(1962), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(4245), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65003] = 6, + [68434] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4159), 1, anon_sym_COMMA, - STATE(1833), 1, - aux_sym__const_declaration_repeat1, - STATE(1864), 1, + STATE(1912), 1, sym_text_interpolation, - ACTIONS(3985), 2, + STATE(1963), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(4247), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65023] = 7, + [68454] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3373), 1, - aux_sym_base_clause_token1, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(1865), 1, + STATE(1913), 1, sym_text_interpolation, - STATE(2174), 1, - sym_declaration_list, - STATE(2226), 1, - sym_base_clause, - [65045] = 7, + ACTIONS(4216), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [68470] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3616), 1, anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1082), 1, - sym_compound_statement, - STATE(1866), 1, + STATE(983), 1, + sym_declaration_list, + STATE(1914), 1, sym_text_interpolation, - STATE(2284), 1, - sym__return_type, - [65067] = 7, + STATE(2435), 1, + sym_class_interface_clause, + [68492] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1867), 1, + ACTIONS(4195), 1, + anon_sym_COMMA, + STATE(1915), 1, + sym_text_interpolation, + STATE(1966), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(4249), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [68512] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(981), 1, + sym_declaration_list, + STATE(1916), 1, sym_text_interpolation, - STATE(1986), 1, - sym_formal_parameters, - STATE(2364), 1, - sym_reference_modifier, - [65089] = 7, + STATE(2436), 1, + sym_class_interface_clause, + [68534] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1625), 1, - sym_formal_parameters, - STATE(1868), 1, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(3696), 1, + anon_sym_BSLASH, + ACTIONS(4251), 1, + sym_name, + STATE(1917), 1, sym_text_interpolation, - STATE(2254), 1, - sym_reference_modifier, - [65111] = 7, + STATE(2633), 1, + sym_namespace_name, + [68556] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1689), 1, - sym_declaration_list, - STATE(1869), 1, + STATE(1918), 1, sym_text_interpolation, - STATE(2426), 1, - sym_class_interface_clause, - [65133] = 5, + ACTIONS(3890), 4, + anon_sym_COMMA, + anon_sym_BSLASH, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [68572] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3989), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - ACTIONS(3987), 2, + STATE(1919), 1, + sym_text_interpolation, + STATE(1960), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(4253), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1870), 2, + [68592] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4255), 1, + anon_sym_SQUOTE, + ACTIONS(4257), 1, + aux_sym_string_token2, + ACTIONS(4260), 1, + sym_string_value, + STATE(1920), 2, sym_text_interpolation, - aux_sym_namespace_use_declaration_repeat1, - [65151] = 6, + aux_sym_string_repeat1, + [68612] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(3994), 1, - sym_nowdoc_string, - STATE(1871), 1, + ACTIONS(4141), 1, + aux_sym_string_token2, + ACTIONS(4143), 1, + sym_string_value, + ACTIONS(4263), 1, + anon_sym_SQUOTE, + STATE(1920), 1, + aux_sym_string_repeat1, + STATE(1921), 1, sym_text_interpolation, - STATE(1888), 1, - aux_sym_nowdoc_body_repeat1, - ACTIONS(3992), 2, - sym_heredoc_end, - sym__new_line, - [65171] = 7, + [68634] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3614), 1, aux_sym_class_interface_clause_token1, - ACTIONS(3383), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - STATE(910), 1, - sym_declaration_list, - STATE(1872), 1, + STATE(1922), 1, sym_text_interpolation, - STATE(2435), 1, + STATE(2129), 1, + sym_enum_declaration_list, + STATE(2446), 1, sym_class_interface_clause, - [65193] = 7, + [68656] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3383), 1, + ACTIONS(3612), 1, + aux_sym_base_clause_token1, + ACTIONS(3616), 1, anon_sym_LBRACE, - STATE(959), 1, - sym_declaration_list, - STATE(1873), 1, + STATE(1923), 1, sym_text_interpolation, - STATE(2436), 1, - sym_class_interface_clause, - [65215] = 4, + STATE(2106), 1, + sym_declaration_list, + STATE(2548), 1, + sym_base_clause, + [68678] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1874), 1, + STATE(1924), 1, sym_text_interpolation, - ACTIONS(3849), 4, - aux_sym_namespace_use_declaration_token1, + ACTIONS(3453), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [65231] = 6, + [68694] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3847), 1, - anon_sym_COMMA, - STATE(1870), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1875), 1, + STATE(1925), 1, sym_text_interpolation, - ACTIONS(3996), 2, + ACTIONS(3458), 4, sym__automatic_semicolon, anon_sym_SEMI, - [65251] = 6, + anon_sym_LBRACE, + anon_sym_PIPE, + [68710] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3829), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1639), 1, + sym_formal_parameters, + STATE(1926), 1, + sym_text_interpolation, + STATE(2542), 1, + sym_reference_modifier, + [68732] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1825), 1, - aux_sym_property_declaration_repeat2, - STATE(1876), 1, + STATE(1855), 1, + aux_sym__const_declaration_repeat1, + STATE(1927), 1, sym_text_interpolation, - ACTIONS(3998), 2, + ACTIONS(4265), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65271] = 4, + [68752] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1877), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1928), 1, sym_text_interpolation, - ACTIONS(4000), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [65287] = 7, + STATE(2049), 1, + sym_formal_parameters, + STATE(2465), 1, + sym_reference_modifier, + [68774] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3547), 1, - anon_sym_LBRACE, - STATE(1878), 1, + ACTIONS(4131), 1, + anon_sym_PIPE, + STATE(1854), 1, + aux_sym_type_list_repeat1, + STATE(1929), 1, sym_text_interpolation, - STATE(2153), 1, - sym_enum_declaration_list, - STATE(2453), 1, - sym_class_interface_clause, - [65309] = 7, + ACTIONS(4267), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [68794] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(1830), 1, + anon_sym_AMP, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1930), 1, + sym_text_interpolation, + STATE(2067), 1, + sym_formal_parameters, + STATE(2457), 1, + sym_reference_modifier, + [68816] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(3453), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(1064), 1, + STATE(967), 1, sym_compound_statement, - STATE(1879), 1, + STATE(1931), 1, sym_text_interpolation, - STATE(2250), 1, + STATE(2448), 1, sym__return_type, - [65331] = 6, + [68838] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3847), 1, + STATE(1932), 1, + sym_text_interpolation, + ACTIONS(4269), 4, anon_sym_COMMA, - STATE(1846), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1880), 1, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [68854] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4271), 1, + anon_sym_EQ, + ACTIONS(4273), 1, + anon_sym_RPAREN, + STATE(1933), 1, sym_text_interpolation, - ACTIONS(3996), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65351] = 6, + STATE(2203), 1, + aux_sym__list_destructing_repeat1, + [68876] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4195), 1, anon_sym_COMMA, - STATE(1815), 1, - aux_sym__const_declaration_repeat1, - STATE(1881), 1, + STATE(1887), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1934), 1, sym_text_interpolation, - ACTIONS(4002), 2, + ACTIONS(4275), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65371] = 7, + [68896] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(954), 1, + STATE(952), 1, sym_compound_statement, - STATE(1882), 1, + STATE(1935), 1, sym_text_interpolation, - STATE(2451), 1, + STATE(2452), 1, sym__return_type, - [65393] = 7, + [68918] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_declaration_list, - STATE(1883), 1, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(1936), 1, sym_text_interpolation, - STATE(2356), 1, - sym_class_interface_clause, - [65415] = 7, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(4277), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [68938] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(909), 1, - sym_compound_statement, - STATE(1884), 1, + ACTIONS(4105), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1937), 1, sym_text_interpolation, - STATE(2285), 1, - sym__return_type, - [65437] = 5, + STATE(2428), 1, + sym_namespace_aliasing_clause, + ACTIONS(4279), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [68958] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4006), 1, - anon_sym_PIPE, - ACTIONS(4004), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - STATE(1885), 2, + ACTIONS(4281), 1, + anon_sym_COMMA, + ACTIONS(3736), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + STATE(1938), 2, sym_text_interpolation, - aux_sym_type_list_repeat1, - [65455] = 6, + aux_sym_base_clause_repeat1, + [68976] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1881), 1, + STATE(1855), 1, aux_sym__const_declaration_repeat1, - STATE(1886), 1, + STATE(1939), 1, sym_text_interpolation, - ACTIONS(4009), 2, + ACTIONS(4284), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65475] = 6, + [68996] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3610), 1, + anon_sym_LBRACE, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + STATE(1152), 1, + sym_declaration_list, + STATE(1940), 1, + sym_text_interpolation, + STATE(2307), 1, + sym_class_interface_clause, + [69018] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1815), 1, + STATE(1904), 1, aux_sym__const_declaration_repeat1, - STATE(1887), 1, + STATE(1941), 1, sym_text_interpolation, - ACTIONS(4011), 2, + ACTIONS(4286), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65495] = 5, - ACTIONS(5), 1, + [69038] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, + STATE(1942), 1, + sym_text_interpolation, + ACTIONS(3351), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [69054] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4015), 1, - sym_nowdoc_string, - ACTIONS(4013), 2, - sym_heredoc_end, - sym__new_line, - STATE(1888), 2, + ACTIONS(1656), 1, + sym_comment, + STATE(1943), 1, sym_text_interpolation, - aux_sym_nowdoc_body_repeat1, - [65513] = 6, + ACTIONS(4113), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [69070] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(3765), 1, - anon_sym_AMP, - STATE(1889), 1, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(1841), 1, + aux_sym_property_declaration_repeat2, + STATE(1944), 1, sym_text_interpolation, - STATE(2350), 2, - sym_variable_name, - sym_variable_reference, - [65533] = 4, + ACTIONS(4288), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [69090] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1890), 1, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(1859), 1, + aux_sym_property_declaration_repeat2, + STATE(1945), 1, sym_text_interpolation, - ACTIONS(3167), 4, + ACTIONS(4290), 2, sym__automatic_semicolon, anon_sym_SEMI, + [69110] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1830), 1, anon_sym_AMP, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1719), 1, + sym_formal_parameters, + STATE(1946), 1, + sym_text_interpolation, + STATE(2255), 1, + sym_reference_modifier, + [69132] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3616), 1, anon_sym_LBRACE, - [65549] = 6, + STATE(953), 1, + sym_declaration_list, + STATE(1947), 1, + sym_text_interpolation, + STATE(2470), 1, + sym_class_interface_clause, + [69154] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3870), 1, - anon_sym_COMMA, - STATE(1891), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(437), 1, + sym_declaration_list, + STATE(1948), 1, sym_text_interpolation, - STATE(1909), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(4018), 2, - sym__automatic_semicolon, + STATE(2359), 1, + sym_class_interface_clause, + [69176] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4292), 1, anon_sym_SEMI, - [65569] = 7, + ACTIONS(4294), 1, + sym__automatic_semicolon, + STATE(1399), 1, + sym_compound_statement, + STATE(1949), 1, + sym_text_interpolation, + [69198] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(3959), 1, + ACTIONS(4141), 1, aux_sym_string_token2, - ACTIONS(3961), 1, + ACTIONS(4143), 1, sym_string_value, - ACTIONS(4020), 1, + ACTIONS(4296), 1, anon_sym_SQUOTE, - STATE(1773), 1, + STATE(1920), 1, aux_sym_string_repeat1, - STATE(1892), 1, + STATE(1950), 1, sym_text_interpolation, - [65591] = 6, + [69220] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1860), 1, + STATE(1855), 1, aux_sym__const_declaration_repeat1, - STATE(1893), 1, + STATE(1951), 1, sym_text_interpolation, - ACTIONS(4011), 2, + ACTIONS(4243), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65611] = 7, + [69240] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - ACTIONS(3375), 1, - aux_sym_class_interface_clause_token1, - STATE(1671), 1, - sym_declaration_list, - STATE(1894), 1, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(1862), 1, + aux_sym_property_declaration_repeat2, + STATE(1952), 1, sym_text_interpolation, - STATE(2294), 1, - sym_class_interface_clause, - [65633] = 6, + ACTIONS(4298), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [69260] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(1953), 1, + sym_text_interpolation, + ACTIONS(4133), 2, + sym_php_tag, + aux_sym_text_token1, + ACTIONS(4135), 2, + ts_builtin_sym_end, + aux_sym_text_token2, + [69278] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(1954), 1, + sym_text_interpolation, + ACTIONS(1796), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [69294] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(1826), 1, - aux_sym_function_static_declaration_repeat1, - STATE(1895), 1, + STATE(1858), 1, + aux_sym__const_declaration_repeat1, + STATE(1955), 1, sym_text_interpolation, - ACTIONS(4022), 2, + ACTIONS(4300), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65653] = 6, + [69314] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(4159), 1, anon_sym_COMMA, - STATE(1870), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1896), 1, + STATE(1892), 1, + aux_sym_global_declaration_repeat1, + STATE(1956), 1, sym_text_interpolation, - ACTIONS(4024), 2, + ACTIONS(4302), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65673] = 7, + [69334] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - STATE(952), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1186), 1, sym_compound_statement, - STATE(1897), 1, + STATE(1957), 1, sym_text_interpolation, - STATE(2444), 1, + STATE(2378), 1, sym__return_type, - [65695] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1898), 1, - sym_text_interpolation, - STATE(2092), 1, - sym_formal_parameters, - STATE(2306), 1, - sym_reference_modifier, - [65717] = 7, + [69356] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1787), 1, - anon_sym_AMP, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1899), 1, + ACTIONS(4195), 1, + anon_sym_COMMA, + STATE(1890), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1958), 1, sym_text_interpolation, - STATE(2106), 1, - sym_formal_parameters, - STATE(2275), 1, - sym_reference_modifier, - [65739] = 7, + ACTIONS(4304), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [69376] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - ACTIONS(3453), 1, - anon_sym_COLON, - STATE(1104), 1, - sym_compound_statement, - STATE(1900), 1, + ACTIONS(3614), 1, + aux_sym_class_interface_clause_token1, + STATE(1740), 1, + sym_declaration_list, + STATE(1959), 1, sym_text_interpolation, - STATE(2252), 1, - sym__return_type, - [65761] = 4, + STATE(2487), 1, + sym_class_interface_clause, + [69398] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1901), 1, + ACTIONS(4101), 1, + anon_sym_COMMA, + STATE(1855), 1, + aux_sym__const_declaration_repeat1, + STATE(1960), 1, sym_text_interpolation, - ACTIONS(4000), 4, + ACTIONS(4286), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [65777] = 5, + [69418] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(1902), 1, - sym_text_interpolation, - STATE(2595), 1, - sym_declare_directive, - ACTIONS(3923), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [65795] = 5, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - STATE(1903), 1, + ACTIONS(4101), 1, + anon_sym_COMMA, + STATE(1927), 1, + aux_sym__const_declaration_repeat1, + STATE(1961), 1, sym_text_interpolation, - ACTIONS(3882), 2, - sym__eof, - aux_sym_text_token2, - ACTIONS(3884), 2, - sym_php_tag, - aux_sym_text_token1, - [65813] = 6, + ACTIONS(4306), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [69438] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(4092), 1, anon_sym_COMMA, - STATE(1826), 1, + STATE(1893), 1, aux_sym_function_static_declaration_repeat1, - STATE(1904), 1, + STATE(1962), 1, sym_text_interpolation, - ACTIONS(4026), 2, + ACTIONS(4308), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65833] = 6, + [69458] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3870), 1, + ACTIONS(4159), 1, anon_sym_COMMA, - STATE(1905), 1, - sym_text_interpolation, - STATE(1909), 1, + STATE(1892), 1, aux_sym_global_declaration_repeat1, - ACTIONS(4028), 2, + STATE(1963), 1, + sym_text_interpolation, + ACTIONS(4310), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65853] = 6, + [69478] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(4195), 1, anon_sym_COMMA, - STATE(1896), 1, + STATE(1934), 1, aux_sym_namespace_use_declaration_repeat1, - STATE(1906), 1, + STATE(1964), 1, sym_text_interpolation, - ACTIONS(4030), 2, + ACTIONS(4312), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65873] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3959), 1, - aux_sym_string_token2, - ACTIONS(3961), 1, - sym_string_value, - ACTIONS(4032), 1, - anon_sym_SQUOTE, - STATE(1773), 1, - aux_sym_string_repeat1, - STATE(1907), 1, - sym_text_interpolation, - [65895] = 6, + [69498] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3847), 1, + ACTIONS(4195), 1, anon_sym_COMMA, - STATE(1870), 1, + STATE(1887), 1, aux_sym_namespace_use_declaration_repeat1, - STATE(1908), 1, + STATE(1965), 1, sym_text_interpolation, - ACTIONS(4030), 2, + ACTIONS(4304), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65915] = 5, + [69518] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4036), 1, + ACTIONS(4195), 1, anon_sym_COMMA, - ACTIONS(4034), 2, + STATE(1887), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1966), 1, + sym_text_interpolation, + ACTIONS(4312), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1909), 2, + [69538] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(984), 1, + sym_compound_statement, + STATE(1967), 1, sym_text_interpolation, - aux_sym_global_declaration_repeat1, - [65933] = 6, + STATE(2490), 1, + sym__return_type, + [69560] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3829), 1, - anon_sym_COMMA, - STATE(1825), 1, - aux_sym_property_declaration_repeat2, - STATE(1910), 1, + STATE(1968), 1, sym_text_interpolation, - ACTIONS(4039), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [65953] = 6, + ACTIONS(4097), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [69576] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3855), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1911), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(4314), 1, + anon_sym_DOT_DOT_DOT, + STATE(1969), 1, sym_text_interpolation, - STATE(2203), 1, - sym_namespace_aliasing_clause, - ACTIONS(4041), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [65973] = 6, + STATE(2213), 1, + sym_variable_name, + [69595] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(3771), 1, - anon_sym_LBRACE, - STATE(1912), 1, + ACTIONS(4316), 1, + anon_sym_COMMA, + ACTIONS(4318), 1, + anon_sym_RPAREN, + STATE(1970), 1, sym_text_interpolation, - STATE(2502), 1, - sym__return_type, - [65992] = 5, + STATE(2147), 1, + aux_sym_array_creation_expression_repeat1, + [69614] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1370), 1, + ACTIONS(1396), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1913), 1, + STATE(1971), 1, sym_text_interpolation, - ACTIONS(1368), 2, + ACTIONS(1394), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66009] = 5, + [69631] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1150), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1914), 1, + ACTIONS(3642), 1, + anon_sym_COMMA, + ACTIONS(3644), 1, + anon_sym_RPAREN, + STATE(1972), 1, sym_text_interpolation, - ACTIONS(1148), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66026] = 5, + STATE(2091), 1, + aux_sym_formal_parameters_repeat1, + [69650] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1378), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1915), 1, + ACTIONS(4320), 1, + sym_name, + ACTIONS(4322), 1, + anon_sym_LBRACE, + STATE(1973), 1, sym_text_interpolation, - ACTIONS(1376), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66043] = 5, + STATE(2433), 1, + sym_namespace_use_group, + [69669] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1562), 1, + ACTIONS(1344), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1916), 1, + STATE(1974), 1, sym_text_interpolation, - ACTIONS(1560), 2, + ACTIONS(1342), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66060] = 5, + [69686] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1294), 1, + ACTIONS(1588), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1917), 1, + STATE(1975), 1, sym_text_interpolation, - ACTIONS(1292), 2, + ACTIONS(1586), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66077] = 5, + [69703] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4045), 1, - anon_sym_EQ, - STATE(1918), 1, + STATE(1976), 1, sym_text_interpolation, - ACTIONS(4043), 2, + ACTIONS(4324), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - [66094] = 6, + [69718] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(4047), 1, - anon_sym_DOT_DOT_DOT, - STATE(1919), 1, + ACTIONS(4328), 1, + anon_sym_EQ, + STATE(1977), 1, sym_text_interpolation, - STATE(1968), 1, - sym_variable_name, - [66113] = 6, + ACTIONS(4326), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69735] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4049), 1, - anon_sym_COMMA, - ACTIONS(4051), 1, - anon_sym_RBRACK, - STATE(1920), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(4016), 1, + anon_sym_LBRACE, + STATE(1978), 1, sym_text_interpolation, - STATE(1948), 1, - aux_sym_array_creation_expression_repeat1, - [66132] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + STATE(2644), 1, + sym__return_type, + [69754] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4053), 1, - sym__new_line, - ACTIONS(4055), 1, - sym_heredoc_end, - STATE(1921), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4332), 1, + anon_sym_EQ, + STATE(1979), 1, sym_text_interpolation, - STATE(2267), 1, - sym_heredoc_body, - [66151] = 5, + ACTIONS(4330), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69771] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1196), 1, + ACTIONS(1340), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1922), 1, + STATE(1980), 1, sym_text_interpolation, - ACTIONS(1194), 2, + ACTIONS(1338), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66168] = 6, + [69788] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4057), 1, + ACTIONS(4336), 1, + anon_sym_EQ, + STATE(1981), 1, + sym_text_interpolation, + ACTIONS(4334), 2, anon_sym_COMMA, - ACTIONS(4059), 1, anon_sym_RPAREN, - STATE(1923), 1, - sym_text_interpolation, - STATE(2144), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [66187] = 4, + [69805] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1416), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - STATE(1924), 1, + STATE(1982), 1, sym_text_interpolation, - ACTIONS(4061), 3, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(1414), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [69822] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3256), 1, + anon_sym_AMP, + ACTIONS(4338), 1, anon_sym_RPAREN, - [66202] = 6, + STATE(1479), 1, + aux_sym_intersection_type_repeat1, + STATE(1983), 1, + sym_text_interpolation, + [69841] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(3842), 1, anon_sym_RPAREN, - ACTIONS(4063), 1, + ACTIONS(4340), 1, anon_sym_COMMA, - STATE(1925), 1, + STATE(1984), 1, sym_text_interpolation, - STATE(1975), 1, - aux_sym_formal_parameters_repeat1, - [66221] = 5, + STATE(2126), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [69860] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_EQ, - STATE(1926), 1, - sym_text_interpolation, - ACTIONS(4065), 2, + ACTIONS(4342), 1, anon_sym_COMMA, + ACTIONS(4344), 1, anon_sym_RPAREN, - [66238] = 5, + STATE(1970), 1, + aux_sym_array_creation_expression_repeat1, + STATE(1985), 1, + sym_text_interpolation, + [69879] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(326), 1, anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1927), 1, + STATE(1986), 1, sym_text_interpolation, - STATE(1775), 2, + STATE(2076), 2, sym_dynamic_variable_name, sym_variable_name, - [66255] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + [69896] = 6, + ACTIONS(5), 1, sym_comment, - STATE(1928), 1, - sym_text_interpolation, - ACTIONS(4069), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [66270] = 4, - ACTIONS(3), 1, + ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(1929), 1, + ACTIONS(4346), 1, + sym__new_line, + ACTIONS(4348), 1, + sym_heredoc_end, + STATE(1987), 1, sym_text_interpolation, - ACTIONS(4004), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - [66285] = 6, + STATE(2504), 1, + sym_heredoc_body, + [69915] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4071), 1, - anon_sym_COMMA, - ACTIONS(4073), 1, - anon_sym_RPAREN, - STATE(1930), 1, + STATE(1988), 1, sym_text_interpolation, - STATE(1960), 1, - aux_sym_formal_parameters_repeat1, - [66304] = 5, + ACTIONS(4350), 3, + anon_sym_string, + anon_sym_int, + sym_grit_metavariable, + [69930] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1426), 1, + ACTIONS(1456), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1931), 1, + STATE(1989), 1, sym_text_interpolation, - ACTIONS(1424), 2, + ACTIONS(1454), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66321] = 5, + [69947] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1434), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1932), 1, + ACTIONS(4352), 1, + anon_sym_COMMA, + ACTIONS(4354), 1, + anon_sym_RBRACK, + STATE(1990), 1, sym_text_interpolation, - ACTIONS(1432), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66338] = 5, + STATE(1998), 1, + aux_sym_array_creation_expression_repeat1, + [69966] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4077), 1, - anon_sym_EQ, - STATE(1933), 1, + ACTIONS(1812), 1, + anon_sym_DOLLAR, + STATE(1795), 1, + sym_variable_name, + STATE(1861), 1, + sym_property_element, + STATE(1991), 1, sym_text_interpolation, - ACTIONS(4075), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66355] = 5, + [69985] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(4356), 1, + anon_sym_EQ_GT, + STATE(1992), 1, + sym_text_interpolation, + STATE(2658), 1, + sym__return_type, + [70004] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1430), 1, + ACTIONS(1464), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1934), 1, + STATE(1993), 1, sym_text_interpolation, - ACTIONS(1428), 2, + ACTIONS(1462), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66372] = 5, + [70021] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1468), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4081), 1, - anon_sym_LPAREN, - STATE(1935), 1, + STATE(1994), 1, sym_text_interpolation, - ACTIONS(4079), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [66389] = 6, + ACTIONS(1466), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [70038] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1812), 1, anon_sym_DOLLAR, - ACTIONS(4083), 1, - anon_sym_DOT_DOT_DOT, - STATE(1936), 1, - sym_text_interpolation, - STATE(2154), 1, + STATE(1795), 1, sym_variable_name, - [66408] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1458), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, - sym_comment, - STATE(1937), 1, + STATE(1995), 1, sym_text_interpolation, - ACTIONS(1456), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66425] = 4, + STATE(2127), 1, + sym_property_element, + [70057] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1938), 1, - sym_text_interpolation, - ACTIONS(3943), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4358), 1, anon_sym_COMMA, - [66440] = 6, + ACTIONS(4360), 1, + anon_sym_RPAREN, + STATE(1996), 1, + sym_text_interpolation, + STATE(2144), 1, + aux_sym_array_creation_expression_repeat1, + [70076] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4085), 1, - anon_sym_DQUOTE, - ACTIONS(4087), 1, - anon_sym_SQUOTE, - ACTIONS(4089), 1, - sym_heredoc_start, - STATE(1939), 1, + ACTIONS(4364), 1, + anon_sym_EQ, + STATE(1997), 1, sym_text_interpolation, - [66459] = 6, + ACTIONS(4362), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70093] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4091), 1, + ACTIONS(4366), 1, anon_sym_COMMA, - ACTIONS(4093), 1, - anon_sym_RPAREN, - STATE(1940), 1, + ACTIONS(4368), 1, + anon_sym_RBRACK, + STATE(1998), 1, sym_text_interpolation, - STATE(1970), 1, + STATE(2214), 1, aux_sym_array_creation_expression_repeat1, - [66478] = 5, + [70112] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4095), 1, - anon_sym_COMMA, - ACTIONS(4098), 1, - anon_sym_RPAREN, - STATE(1941), 2, + STATE(1999), 1, sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [66495] = 5, + ACTIONS(4370), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [70127] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1346), 1, + ACTIONS(1440), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1942), 1, + STATE(2000), 1, sym_text_interpolation, - ACTIONS(1344), 2, + ACTIONS(1438), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66512] = 5, + [70144] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1342), 1, + ACTIONS(1480), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1943), 1, + STATE(2001), 1, sym_text_interpolation, - ACTIONS(1340), 2, + ACTIONS(1478), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66529] = 5, + [70161] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4102), 1, - anon_sym_EQ, - STATE(1944), 1, - sym_text_interpolation, - ACTIONS(4100), 2, + ACTIONS(4372), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [66546] = 5, + ACTIONS(4374), 1, + anon_sym_RBRACE, + STATE(2002), 1, + sym_text_interpolation, + STATE(2122), 1, + aux_sym_namespace_use_group_repeat1, + [70180] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1160), 1, + ACTIONS(1484), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1945), 1, + STATE(2003), 1, sym_text_interpolation, - ACTIONS(1158), 2, + ACTIONS(1482), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66563] = 6, + [70197] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(876), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4104), 1, + ACTIONS(4376), 1, anon_sym_COMMA, - STATE(1946), 1, + ACTIONS(4378), 1, + anon_sym_RPAREN, + STATE(2004), 1, sym_text_interpolation, - STATE(2070), 1, - aux_sym_match_block_repeat1, - [66582] = 5, + STATE(2054), 1, + aux_sym_arguments_repeat1, + [70216] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1508), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_EQ, - STATE(1947), 1, + STATE(2005), 1, sym_text_interpolation, - ACTIONS(4106), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66599] = 6, + ACTIONS(1506), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [70233] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(849), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4110), 1, - anon_sym_COMMA, - STATE(1948), 1, + STATE(2006), 1, sym_text_interpolation, - STATE(2121), 1, - aux_sym_array_creation_expression_repeat1, - [66618] = 6, + ACTIONS(3736), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [70248] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(975), 1, - anon_sym_EQ_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - STATE(1949), 1, + ACTIONS(4380), 1, + anon_sym_LBRACE, + ACTIONS(4382), 1, + anon_sym_COLON, + STATE(2007), 1, sym_text_interpolation, - STATE(2065), 1, - aux_sym_match_condition_list_repeat1, - [66637] = 6, + STATE(2078), 1, + sym_switch_block, + [70267] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1520), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4114), 1, - aux_sym_class_declaration_token1, - STATE(1950), 1, + STATE(2008), 1, sym_text_interpolation, - STATE(2468), 1, - sym_readonly_modifier, - [66656] = 5, + ACTIONS(1518), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [70284] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1334), 1, + ACTIONS(1520), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1951), 1, + STATE(2009), 1, sym_text_interpolation, - ACTIONS(1332), 2, + ACTIONS(1518), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66673] = 4, + [70301] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1952), 1, + ACTIONS(4386), 1, + anon_sym_EQ, + STATE(2010), 1, sym_text_interpolation, - ACTIONS(4116), 3, + ACTIONS(4384), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [66688] = 5, + [70318] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1322), 1, + ACTIONS(1524), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1953), 1, + STATE(2011), 1, sym_text_interpolation, - ACTIONS(1320), 2, + ACTIONS(1522), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66705] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4118), 1, - anon_sym_COMMA, - ACTIONS(4120), 1, - anon_sym_RPAREN, - STATE(1954), 1, - sym_text_interpolation, - STATE(1994), 1, - aux_sym_arguments_repeat1, - [66724] = 6, + [70335] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1544), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4122), 1, - aux_sym_class_declaration_token1, - STATE(1955), 1, + STATE(2012), 1, sym_text_interpolation, - STATE(2599), 1, - sym_readonly_modifier, - [66743] = 4, + ACTIONS(1542), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [70352] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1552), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - STATE(1956), 1, + STATE(2013), 1, sym_text_interpolation, - ACTIONS(4124), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [66758] = 5, + ACTIONS(1550), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [70369] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1322), 1, + ACTIONS(1592), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1957), 1, + STATE(2014), 1, sym_text_interpolation, - ACTIONS(1320), 2, + ACTIONS(1590), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66775] = 5, + [70386] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1302), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1958), 1, + STATE(2015), 1, sym_text_interpolation, - ACTIONS(1300), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66792] = 6, + ACTIONS(4388), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [70401] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4126), 1, - aux_sym_class_declaration_token1, - STATE(1959), 1, + ACTIONS(1812), 1, + anon_sym_DOLLAR, + STATE(1847), 1, + sym_variable_name, + STATE(2016), 1, sym_text_interpolation, - STATE(2587), 1, - sym_readonly_modifier, - [66811] = 6, + STATE(2074), 1, + sym_static_variable_declaration, + [70420] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_RPAREN, - ACTIONS(4128), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4390), 1, anon_sym_COMMA, - STATE(1960), 1, + STATE(2017), 2, sym_text_interpolation, - STATE(1975), 1, - aux_sym_formal_parameters_repeat1, - [66830] = 5, + aux_sym_class_interface_clause_repeat1, + [70437] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1250), 1, + ACTIONS(1444), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1961), 1, + STATE(2018), 1, sym_text_interpolation, - ACTIONS(1248), 2, + ACTIONS(1442), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66847] = 5, + [70454] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1778), 1, + anon_sym_RPAREN, + STATE(2019), 1, + sym_text_interpolation, + STATE(2204), 1, + aux_sym__list_destructing_repeat1, + [70473] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4393), 1, + anon_sym_COMMA, + ACTIONS(4395), 1, + anon_sym_RPAREN, + STATE(2020), 1, + sym_text_interpolation, + STATE(2223), 1, + aux_sym_formal_parameters_repeat1, + [70492] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1246), 1, + ACTIONS(1448), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1962), 1, + STATE(2021), 1, sym_text_interpolation, - ACTIONS(1244), 2, + ACTIONS(1446), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66864] = 5, + [70509] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1246), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1963), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(4397), 1, + aux_sym_class_declaration_token1, + STATE(2022), 1, sym_text_interpolation, - ACTIONS(1244), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66881] = 6, + STATE(2624), 1, + sym_readonly_modifier, + [70528] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4130), 1, - anon_sym_LBRACE, - ACTIONS(4132), 1, - anon_sym_COLON, - STATE(1964), 1, + ACTIONS(4399), 1, + anon_sym_COMMA, + ACTIONS(4401), 1, + anon_sym_RBRACK, + STATE(2023), 1, sym_text_interpolation, - STATE(2158), 1, - sym_switch_block, - [66900] = 5, + STATE(2026), 1, + aux_sym__array_destructing_repeat1, + [70547] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1454), 1, + ACTIONS(1240), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1965), 1, + STATE(2024), 1, sym_text_interpolation, - ACTIONS(1452), 2, + ACTIONS(1238), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66917] = 5, + [70564] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1478), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1966), 1, + ACTIONS(4403), 1, + anon_sym_COMMA, + ACTIONS(4405), 1, + anon_sym_RBRACK, + STATE(2025), 1, sym_text_interpolation, - ACTIONS(1476), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [66934] = 5, + STATE(2214), 1, + aux_sym_array_creation_expression_repeat1, + [70583] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4136), 1, - anon_sym_EQ, - STATE(1967), 1, + ACTIONS(4407), 1, + anon_sym_COMMA, + ACTIONS(4410), 1, + anon_sym_RBRACK, + STATE(2026), 2, + sym_text_interpolation, + aux_sym__array_destructing_repeat1, + [70600] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4346), 1, + sym__new_line, + ACTIONS(4412), 1, + sym_heredoc_end, + STATE(2027), 1, sym_text_interpolation, - ACTIONS(4134), 2, + STATE(2481), 1, + sym_heredoc_body, + [70619] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3245), 1, + anon_sym_RBRACK, + ACTIONS(4414), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [66951] = 5, + STATE(2028), 1, + sym_text_interpolation, + STATE(2219), 1, + aux_sym_attribute_group_repeat1, + [70638] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(4416), 1, + anon_sym_EQ_GT, + STATE(2029), 1, + sym_text_interpolation, + STATE(2631), 1, + sym__return_type, + [70657] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4140), 1, + ACTIONS(4420), 1, anon_sym_EQ, - STATE(1968), 1, + STATE(2030), 1, sym_text_interpolation, - ACTIONS(4138), 2, + ACTIONS(4418), 2, anon_sym_COMMA, anon_sym_RPAREN, - [66968] = 5, + [70674] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1362), 1, + ACTIONS(1608), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1969), 1, + STATE(2031), 1, sym_text_interpolation, - ACTIONS(1360), 2, + ACTIONS(1606), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [66985] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(853), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + [70691] = 5, + ACTIONS(5), 1, sym_comment, - ACTIONS(4142), 1, - anon_sym_COMMA, - STATE(1941), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1970), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4424), 1, + sym_string_value, + STATE(2032), 1, sym_text_interpolation, - [67004] = 5, + ACTIONS(4422), 2, + anon_sym_SQUOTE, + aux_sym_string_token2, + [70708] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1558), 1, + ACTIONS(1608), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1971), 1, + STATE(2033), 1, sym_text_interpolation, - ACTIONS(1556), 2, + ACTIONS(1606), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67021] = 5, + [70725] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1538), 1, + ACTIONS(1432), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1972), 1, + STATE(2034), 1, sym_text_interpolation, - ACTIONS(1536), 2, + ACTIONS(1430), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67038] = 5, + [70742] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1180), 1, + ACTIONS(1216), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1973), 1, + STATE(2035), 1, sym_text_interpolation, - ACTIONS(1178), 2, + ACTIONS(1214), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67055] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3553), 1, - anon_sym_BSLASH, - ACTIONS(3825), 1, - sym_name, - STATE(1974), 1, - sym_text_interpolation, - STATE(2521), 1, - sym_namespace_name, - [67074] = 5, + [70759] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4144), 1, + ACTIONS(3658), 1, anon_sym_COMMA, - ACTIONS(4147), 1, + ACTIONS(3660), 1, anon_sym_RPAREN, - STATE(1975), 2, - sym_text_interpolation, + STATE(2020), 1, aux_sym_formal_parameters_repeat1, - [67091] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4151), 1, - anon_sym_EQ, - STATE(1976), 1, + STATE(2036), 1, sym_text_interpolation, - ACTIONS(4149), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67108] = 5, + [70778] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1600), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_EQ, - STATE(1977), 1, + STATE(2037), 1, sym_text_interpolation, - ACTIONS(4153), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67125] = 5, + ACTIONS(1598), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [70795] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1568), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_COMMA, - ACTIONS(4160), 1, - anon_sym_RPAREN, - STATE(1978), 2, + STATE(2038), 1, sym_text_interpolation, - aux_sym_anonymous_function_use_clause_repeat1, - [67142] = 6, + ACTIONS(1566), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [70812] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4426), 1, anon_sym_COMMA, - ACTIONS(4164), 1, + ACTIONS(4428), 1, anon_sym_RBRACE, - STATE(1979), 1, + STATE(2039), 1, sym_text_interpolation, - STATE(2025), 1, + STATE(2085), 1, aux_sym_match_block_repeat1, - [67161] = 5, + [70831] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1466), 1, + ACTIONS(1560), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1980), 1, + STATE(2040), 1, sym_text_interpolation, - ACTIONS(1464), 2, + ACTIONS(1558), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67178] = 5, + [70848] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1446), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1981), 1, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(4430), 1, + anon_sym_LPAREN, + STATE(2041), 1, sym_text_interpolation, - ACTIONS(1444), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67195] = 5, + STATE(2540), 1, + sym_parenthesized_expression, + [70867] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4432), 1, + anon_sym_COMMA, + ACTIONS(4434), 1, + anon_sym_RPAREN, + STATE(2042), 1, + sym_text_interpolation, + STATE(2232), 1, + aux_sym_arguments_repeat1, + [70886] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1422), 1, + ACTIONS(1556), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1982), 1, + STATE(2043), 1, sym_text_interpolation, - ACTIONS(1420), 2, + ACTIONS(1554), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67212] = 6, + [70903] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_COMMA, - ACTIONS(4168), 1, - anon_sym_RBRACE, - STATE(1983), 1, + ACTIONS(4438), 1, + aux_sym_else_clause_token1, + STATE(2044), 1, sym_text_interpolation, - STATE(2166), 1, - aux_sym_namespace_use_group_repeat1, - [67231] = 5, + ACTIONS(4436), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [70920] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1270), 1, + ACTIONS(1476), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1984), 1, + STATE(2045), 1, sym_text_interpolation, - ACTIONS(1268), 2, + ACTIONS(1474), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67248] = 5, + [70937] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1474), 1, + ACTIONS(1260), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1985), 1, + STATE(2046), 1, sym_text_interpolation, - ACTIONS(1472), 2, + ACTIONS(1258), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67265] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(4170), 1, - anon_sym_EQ_GT, - STATE(1986), 1, - sym_text_interpolation, - STATE(2507), 1, - sym__return_type, - [67284] = 5, + [70954] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1540), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4174), 1, - anon_sym_EQ, - STATE(1987), 1, + STATE(2047), 1, sym_text_interpolation, - ACTIONS(4172), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67301] = 5, + ACTIONS(1538), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [70971] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1530), 1, + ACTIONS(1248), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1988), 1, + STATE(2048), 1, sym_text_interpolation, - ACTIONS(1528), 2, + ACTIONS(1246), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67318] = 5, + [70988] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1530), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1989), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(4440), 1, + anon_sym_EQ_GT, + STATE(2049), 1, sym_text_interpolation, - ACTIONS(1528), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67335] = 5, + STATE(2740), 1, + sym__return_type, + [71007] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1536), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_EQ, - STATE(1990), 1, + STATE(2050), 1, sym_text_interpolation, - ACTIONS(4176), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67352] = 6, + ACTIONS(1534), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [71024] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(4053), 1, + ACTIONS(4346), 1, sym__new_line, - ACTIONS(4180), 1, + ACTIONS(4442), 1, sym_heredoc_end, - STATE(1991), 1, + STATE(2051), 1, sym_text_interpolation, - STATE(2429), 1, + STATE(2432), 1, sym_heredoc_body, - [67371] = 6, + [71043] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(4182), 1, + ACTIONS(4444), 1, sym__new_line, - ACTIONS(4184), 1, + ACTIONS(4446), 1, sym_heredoc_end, - STATE(1992), 1, + STATE(2052), 1, sym_text_interpolation, - STATE(2428), 1, + STATE(2429), 1, sym_nowdoc_body, - [67390] = 4, + [71062] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1564), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - STATE(1993), 1, + STATE(2053), 1, sym_text_interpolation, - ACTIONS(3987), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [67405] = 6, + ACTIONS(1562), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [71079] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(787), 1, + ACTIONS(819), 1, anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4448), 1, anon_sym_COMMA, - STATE(1994), 1, + STATE(2054), 1, sym_text_interpolation, - STATE(2122), 1, + STATE(2137), 1, aux_sym_arguments_repeat1, - [67424] = 5, + [71098] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4450), 1, + anon_sym_COMMA, + ACTIONS(4452), 1, + anon_sym_RBRACK, + STATE(2028), 1, + aux_sym_attribute_group_repeat1, + STATE(2055), 1, + sym_text_interpolation, + [71117] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1778), 1, + anon_sym_RPAREN, + STATE(2056), 1, + sym_text_interpolation, + STATE(2198), 1, + aux_sym__list_destructing_repeat1, + [71136] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1406), 1, + ACTIONS(1264), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1995), 1, + STATE(2057), 1, sym_text_interpolation, - ACTIONS(1404), 2, + ACTIONS(1262), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67441] = 5, + [71153] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1406), 1, + ACTIONS(1548), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1996), 1, + STATE(2058), 1, sym_text_interpolation, - ACTIONS(1404), 2, + ACTIONS(1546), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67458] = 5, + [71170] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4188), 1, - sym_name, - STATE(1997), 1, + ACTIONS(4454), 1, + anon_sym_COMMA, + ACTIONS(4457), 1, + anon_sym_RBRACE, + STATE(2059), 2, sym_text_interpolation, - ACTIONS(4190), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [67475] = 6, + aux_sym_match_block_repeat1, + [71187] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4192), 1, - anon_sym_LBRACE, - ACTIONS(4194), 1, - anon_sym_COLON, - STATE(472), 1, - sym_switch_block, - STATE(1998), 1, + ACTIONS(4399), 1, + anon_sym_COMMA, + ACTIONS(4459), 1, + anon_sym_RBRACK, + STATE(2026), 1, + aux_sym__array_destructing_repeat1, + STATE(2060), 1, sym_text_interpolation, - [67494] = 6, + [71206] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(3576), 1, - anon_sym_LBRACE, - STATE(1999), 1, + ACTIONS(4461), 1, + anon_sym_COMMA, + ACTIONS(4463), 1, + anon_sym_RBRACK, + STATE(2025), 1, + aux_sym_array_creation_expression_repeat1, + STATE(2061), 1, sym_text_interpolation, - STATE(2641), 1, - sym__return_type, - [67513] = 5, + [71225] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1210), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2000), 1, + ACTIONS(4399), 1, + anon_sym_COMMA, + ACTIONS(4459), 1, + anon_sym_RBRACK, + STATE(2023), 1, + aux_sym__array_destructing_repeat1, + STATE(2062), 1, sym_text_interpolation, - ACTIONS(1208), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67530] = 5, + [71244] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1450), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2001), 1, + STATE(2063), 1, sym_text_interpolation, - ACTIONS(1448), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67547] = 5, + ACTIONS(4465), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [71259] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4196), 1, + ACTIONS(2766), 1, + anon_sym_EQ_GT, + ACTIONS(4467), 1, anon_sym_COMMA, - ACTIONS(4199), 1, - anon_sym_RBRACE, - STATE(2002), 2, + STATE(2064), 2, sym_text_interpolation, - aux_sym_namespace_use_group_repeat1, - [67564] = 5, + aux_sym_match_condition_list_repeat1, + [71276] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1398), 1, + ACTIONS(1512), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2003), 1, + STATE(2065), 1, sym_text_interpolation, - ACTIONS(1396), 2, + ACTIONS(1510), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67581] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(4201), 1, - anon_sym_DOT_DOT_DOT, - STATE(1967), 1, - sym_variable_name, - STATE(2004), 1, - sym_text_interpolation, - [67600] = 5, + [71293] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3907), 1, + ACTIONS(4271), 1, anon_sym_EQ, - STATE(2005), 1, + STATE(2066), 1, sym_text_interpolation, - ACTIONS(4203), 2, + ACTIONS(4470), 2, anon_sym_COMMA, anon_sym_RBRACK, - [67617] = 6, + [71310] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4205), 1, - anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_RBRACK, - STATE(2006), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(4472), 1, + anon_sym_EQ_GT, + STATE(2067), 1, sym_text_interpolation, - STATE(2143), 1, - aux_sym__array_destructing_repeat1, - [67636] = 6, + STATE(2742), 1, + sym__return_type, + [71329] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1532), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4209), 1, - anon_sym_COMMA, - ACTIONS(4211), 1, - anon_sym_RBRACK, - STATE(2007), 1, + STATE(2068), 1, sym_text_interpolation, - STATE(2147), 1, - aux_sym_array_creation_expression_repeat1, - [67655] = 6, + ACTIONS(1530), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [71346] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1516), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4205), 1, - anon_sym_COMMA, - ACTIONS(4207), 1, - anon_sym_RBRACK, - STATE(2008), 1, + STATE(2069), 1, sym_text_interpolation, - STATE(2152), 1, - aux_sym__array_destructing_repeat1, - [67674] = 5, + ACTIONS(1514), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [71363] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1402), 1, + ACTIONS(1512), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2009), 1, + STATE(2070), 1, sym_text_interpolation, - ACTIONS(1400), 2, + ACTIONS(1510), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67691] = 5, + [71380] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1402), 1, + ACTIONS(1500), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2010), 1, + STATE(2071), 1, sym_text_interpolation, - ACTIONS(1400), 2, + ACTIONS(1498), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67708] = 6, + [71397] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4213), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, - anon_sym_RBRACK, - STATE(2011), 1, + ACTIONS(4474), 1, + anon_sym_LBRACE, + ACTIONS(4476), 1, + anon_sym_COLON, + STATE(499), 1, + sym_switch_block, + STATE(2072), 1, sym_text_interpolation, - STATE(2161), 1, - aux_sym_attribute_group_repeat1, - [67727] = 6, + [71416] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4217), 1, - sym_name, - ACTIONS(4219), 1, - anon_sym_LBRACE, - STATE(2012), 1, + STATE(2073), 1, sym_text_interpolation, - STATE(2198), 1, - sym_namespace_use_group, - [67746] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(4478), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [71431] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4223), 1, - sym_string_value, - STATE(2013), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(2074), 1, sym_text_interpolation, - ACTIONS(4221), 2, - anon_sym_SQUOTE, - aux_sym_string_token2, - [67763] = 5, + ACTIONS(4232), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [71446] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1330), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, sym_comment, - STATE(2014), 1, + ACTIONS(4480), 1, + anon_sym_RPAREN, + STATE(2075), 1, sym_text_interpolation, - ACTIONS(1328), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67780] = 4, + STATE(2204), 1, + aux_sym__list_destructing_repeat1, + [71465] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2015), 1, + STATE(2076), 1, sym_text_interpolation, - ACTIONS(4225), 3, + ACTIONS(4227), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [67795] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [71480] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4053), 1, - sym__new_line, - ACTIONS(4227), 1, - sym_heredoc_end, - STATE(2016), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(2077), 1, sym_text_interpolation, - STATE(2204), 1, - sym_heredoc_body, - [67814] = 5, + ACTIONS(4482), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [71495] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1254), 1, + ACTIONS(1364), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2017), 1, + STATE(2078), 1, sym_text_interpolation, - ACTIONS(1252), 2, + ACTIONS(1362), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67831] = 6, + [71512] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(4229), 1, - anon_sym_EQ_GT, - STATE(2018), 1, + ACTIONS(4484), 1, + anon_sym_RPAREN, + STATE(2079), 1, sym_text_interpolation, - STATE(2659), 1, - sym__return_type, - [67850] = 6, + STATE(2204), 1, + aux_sym__list_destructing_repeat1, + [71531] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4217), 1, + ACTIONS(4320), 1, sym_name, - ACTIONS(4219), 1, + ACTIONS(4322), 1, anon_sym_LBRACE, - STATE(2019), 1, + STATE(2080), 1, sym_text_interpolation, - STATE(2438), 1, + STATE(2270), 1, sym_namespace_use_group, - [67869] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1502), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, - sym_comment, - STATE(2020), 1, - sym_text_interpolation, - ACTIONS(1500), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67886] = 6, + [71550] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4219), 1, + ACTIONS(4322), 1, anon_sym_LBRACE, - ACTIONS(4231), 1, + ACTIONS(4486), 1, sym_name, - STATE(2021), 1, - sym_text_interpolation, - STATE(2438), 1, - sym_namespace_use_group, - [67905] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1226), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, - sym_comment, - STATE(2022), 1, - sym_text_interpolation, - ACTIONS(1224), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [67922] = 4, + STATE(2081), 1, + sym_text_interpolation, + STATE(2270), 1, + sym_namespace_use_group, + [71569] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2023), 1, + STATE(2082), 1, sym_text_interpolation, - ACTIONS(2854), 3, + ACTIONS(4488), 3, sym__automatic_semicolon, anon_sym_SEMI, - sym_name, - [67937] = 6, + anon_sym_COMMA, + [71584] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_DOLLAR, - STATE(1719), 1, - sym_variable_name, - STATE(1938), 1, - sym_property_element, - STATE(2024), 1, + STATE(2083), 1, sym_text_interpolation, - [67956] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(859), 1, - anon_sym_RBRACE, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4233), 1, + ACTIONS(4220), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2025), 1, - sym_text_interpolation, - STATE(2070), 1, - aux_sym_match_block_repeat1, - [67975] = 5, + [71599] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1222), 1, + ACTIONS(1492), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2026), 1, + STATE(2084), 1, sym_text_interpolation, - ACTIONS(1220), 2, + ACTIONS(1490), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67992] = 6, + [71616] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(893), 1, + anon_sym_RBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2536), 1, - aux_sym_readonly_modifier_token1, - ACTIONS(4235), 1, - aux_sym_class_declaration_token1, - STATE(2027), 1, + ACTIONS(4490), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym_match_block_repeat1, + STATE(2085), 1, sym_text_interpolation, - STATE(2550), 1, - sym_readonly_modifier, - [68011] = 5, + [71635] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(2086), 1, + sym_text_interpolation, + ACTIONS(4492), 3, + sym_heredoc_end, + sym_nowdoc_string, + sym__new_line, + [71650] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1218), 1, + ACTIONS(1492), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2028), 1, + STATE(2087), 1, sym_text_interpolation, - ACTIONS(1216), 2, + ACTIONS(1490), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68028] = 6, + [71667] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_DOLLAR, - STATE(1776), 1, - sym_variable_name, - STATE(2029), 1, + ACTIONS(4496), 1, + anon_sym_LPAREN, + STATE(2088), 1, sym_text_interpolation, - STATE(2076), 1, - sym_static_variable_declaration, - [68047] = 5, + ACTIONS(4494), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [71684] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1570), 1, + ACTIONS(1412), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2030), 1, + STATE(2089), 1, sym_text_interpolation, - ACTIONS(1568), 2, + ACTIONS(1410), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68064] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, - sym_comment, - STATE(2031), 1, - sym_text_interpolation, - STATE(2054), 2, - sym_dynamic_variable_name, - sym_variable_name, - [68081] = 5, + [71701] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1410), 1, + ACTIONS(1420), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2032), 1, + STATE(2090), 1, sym_text_interpolation, - ACTIONS(1408), 2, + ACTIONS(1418), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68098] = 5, + [71718] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1108), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2033), 1, + ACTIONS(4498), 1, + anon_sym_COMMA, + ACTIONS(4500), 1, + anon_sym_RPAREN, + STATE(2091), 1, sym_text_interpolation, - ACTIONS(1106), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68115] = 5, + STATE(2223), 1, + aux_sym_formal_parameters_repeat1, + [71737] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1278), 1, + ACTIONS(1424), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2034), 1, + STATE(2092), 1, sym_text_interpolation, - ACTIONS(1276), 2, + ACTIONS(1422), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68132] = 4, + [71754] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2035), 1, + ACTIONS(4504), 1, + anon_sym_EQ, + STATE(2093), 1, sym_text_interpolation, - ACTIONS(4237), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4502), 2, anon_sym_COMMA, - [68147] = 5, + anon_sym_RPAREN, + [71771] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1546), 1, + ACTIONS(1428), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2036), 1, + STATE(2094), 1, sym_text_interpolation, - ACTIONS(1544), 2, + ACTIONS(1426), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68164] = 6, + [71788] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4219), 1, - anon_sym_LBRACE, - ACTIONS(4231), 1, - sym_name, - STATE(2037), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(4506), 1, + anon_sym_RPAREN, + STATE(2095), 1, sym_text_interpolation, - STATE(2303), 1, - sym_namespace_use_group, - [68183] = 5, + STATE(2632), 1, + sym_variable_name, + [71807] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1414), 1, + ACTIONS(1352), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2038), 1, + STATE(2096), 1, sym_text_interpolation, - ACTIONS(1412), 2, + ACTIONS(1350), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68200] = 5, + [71824] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1550), 1, + ACTIONS(1244), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2039), 1, + STATE(2097), 1, sym_text_interpolation, - ACTIONS(1548), 2, + ACTIONS(1242), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68217] = 6, + [71841] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1244), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(4239), 1, - anon_sym_DOT_DOT_DOT, - STATE(1947), 1, - sym_variable_name, - STATE(2040), 1, + STATE(2098), 1, sym_text_interpolation, - [68236] = 6, + ACTIONS(1242), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [71858] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4241), 1, - anon_sym_COMMA, - ACTIONS(4243), 1, - anon_sym_RPAREN, - STATE(1925), 1, - aux_sym_formal_parameters_repeat1, - STATE(2041), 1, + ACTIONS(4322), 1, + anon_sym_LBRACE, + ACTIONS(4486), 1, + sym_name, + STATE(2099), 1, sym_text_interpolation, - [68255] = 5, + STATE(2409), 1, + sym_namespace_use_group, + [71877] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1486), 1, + ACTIONS(1460), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2042), 1, + STATE(2100), 1, sym_text_interpolation, - ACTIONS(1484), 2, + ACTIONS(1458), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68272] = 5, + [71894] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(2101), 1, + sym_text_interpolation, + ACTIONS(4508), 3, + anon_sym_string, + anon_sym_int, + sym_grit_metavariable, + [71909] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4247), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(4510), 1, + anon_sym_EQ_GT, + STATE(2102), 1, + sym_text_interpolation, + STATE(2579), 1, + sym__return_type, + [71928] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4514), 1, anon_sym_EQ, - STATE(2043), 1, + STATE(2103), 1, sym_text_interpolation, - ACTIONS(4245), 2, + ACTIONS(4512), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68289] = 5, + [71945] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1394), 1, + ACTIONS(1488), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2044), 1, + STATE(2104), 1, sym_text_interpolation, - ACTIONS(1392), 2, + ACTIONS(1486), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68306] = 5, + [71962] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1442), 1, + ACTIONS(1436), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2045), 1, + STATE(2105), 1, sym_text_interpolation, - ACTIONS(1440), 2, + ACTIONS(1434), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68323] = 5, + [71979] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1442), 1, + ACTIONS(1496), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2046), 1, + STATE(2106), 1, sym_text_interpolation, - ACTIONS(1440), 2, + ACTIONS(1494), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68340] = 5, + [71996] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1382), 1, + ACTIONS(1252), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2047), 1, + STATE(2107), 1, sym_text_interpolation, - ACTIONS(1380), 2, + ACTIONS(1250), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68357] = 5, + [72013] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1374), 1, + ACTIONS(1272), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2048), 1, + STATE(2108), 1, sym_text_interpolation, - ACTIONS(1372), 2, + ACTIONS(1270), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68374] = 6, + [72030] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3107), 1, - anon_sym_AMP, - ACTIONS(4249), 1, - anon_sym_RPAREN, - STATE(1441), 1, - aux_sym_intersection_type_repeat1, - STATE(2049), 1, + STATE(2109), 1, sym_text_interpolation, - [68393] = 5, + ACTIONS(4516), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [72045] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1354), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2050), 1, - sym_text_interpolation, - ACTIONS(1352), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68410] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - STATE(2051), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(4518), 1, + anon_sym_DOT_DOT_DOT, + STATE(2093), 1, + sym_variable_name, + STATE(2110), 1, sym_text_interpolation, - ACTIONS(4251), 3, - sym_heredoc_end, - sym_nowdoc_string, - sym__new_line, - [68425] = 6, + [72064] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(4520), 1, + anon_sym_COMMA, + ACTIONS(4522), 1, anon_sym_RPAREN, - STATE(2052), 1, + STATE(2111), 1, sym_text_interpolation, - STATE(2126), 1, - aux_sym__list_destructing_repeat1, - [68444] = 5, + STATE(2168), 1, + aux_sym_arguments_repeat1, + [72083] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1386), 1, + ACTIONS(1280), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2053), 1, + STATE(2112), 1, sym_text_interpolation, - ACTIONS(1384), 2, + ACTIONS(1278), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68461] = 4, + [72100] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2054), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(4524), 1, + anon_sym_DOT_DOT_DOT, + STATE(2113), 1, sym_text_interpolation, - ACTIONS(4034), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [68476] = 4, + STATE(2210), 1, + sym_variable_name, + [72119] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2055), 1, + ACTIONS(4528), 1, + anon_sym_EQ, + STATE(2114), 1, sym_text_interpolation, - ACTIONS(4255), 3, + ACTIONS(4526), 2, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [68491] = 5, + [72136] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1522), 1, + ACTIONS(1504), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2056), 1, + STATE(2115), 1, sym_text_interpolation, - ACTIONS(1520), 2, + ACTIONS(1502), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68508] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_RPAREN, - STATE(2057), 1, - sym_text_interpolation, - STATE(2126), 1, - aux_sym__list_destructing_repeat1, - [68527] = 5, + [72153] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1314), 1, + ACTIONS(1284), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2058), 1, + STATE(2116), 1, sym_text_interpolation, - ACTIONS(1312), 2, + ACTIONS(1282), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68544] = 5, + [72170] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1366), 1, + ACTIONS(1178), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2059), 1, + STATE(2117), 1, sym_text_interpolation, - ACTIONS(1364), 2, + ACTIONS(1176), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68561] = 4, + [72187] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2060), 1, + ACTIONS(4532), 1, + anon_sym_EQ, + STATE(2118), 1, sym_text_interpolation, - ACTIONS(4259), 3, + ACTIONS(4530), 2, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [68576] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(4261), 1, - anon_sym_EQ_GT, - STATE(2061), 1, - sym_text_interpolation, - STATE(2629), 1, - sym__return_type, - [68595] = 5, + [72204] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4265), 1, - anon_sym_LPAREN, - STATE(2062), 1, + ACTIONS(4322), 1, + anon_sym_LBRACE, + ACTIONS(4486), 1, + sym_name, + STATE(2119), 1, sym_text_interpolation, - ACTIONS(4263), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [68612] = 5, + STATE(2450), 1, + sym_namespace_use_group, + [72223] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1350), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2063), 1, + ACTIONS(4320), 1, + sym_name, + ACTIONS(4322), 1, + anon_sym_LBRACE, + STATE(2120), 1, sym_text_interpolation, - ACTIONS(1348), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68629] = 6, + STATE(2450), 1, + sym_namespace_use_group, + [72242] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(4269), 1, - anon_sym_RPAREN, - STATE(2064), 1, + STATE(2121), 1, sym_text_interpolation, - STATE(2148), 1, - aux_sym_array_creation_expression_repeat1, - [68648] = 5, + ACTIONS(4534), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [72257] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2588), 1, - anon_sym_EQ_GT, - ACTIONS(4271), 1, + ACTIONS(4536), 1, anon_sym_COMMA, - STATE(2065), 2, + ACTIONS(4539), 1, + anon_sym_RBRACE, + STATE(2122), 2, sym_text_interpolation, - aux_sym_match_condition_list_repeat1, - [68665] = 6, + aux_sym_namespace_use_group_repeat1, + [72274] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, + ACTIONS(3678), 1, anon_sym_COLON, - ACTIONS(4274), 1, - anon_sym_EQ_GT, - STATE(2066), 1, + ACTIONS(3926), 1, + anon_sym_LBRACE, + STATE(2123), 1, sym_text_interpolation, - STATE(2640), 1, + STATE(2722), 1, sym__return_type, - [68684] = 5, + [72293] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1258), 1, + ACTIONS(1320), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2067), 1, + STATE(2124), 1, sym_text_interpolation, - ACTIONS(1256), 2, + ACTIONS(1318), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68701] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(4276), 1, - anon_sym_RPAREN, - STATE(2068), 1, - sym_text_interpolation, - STATE(2516), 1, - sym_variable_name, - [68720] = 6, + [72310] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4217), 1, - sym_name, - ACTIONS(4219), 1, - anon_sym_LBRACE, - STATE(2069), 1, + ACTIONS(4543), 1, + anon_sym_EQ, + STATE(2125), 1, sym_text_interpolation, - STATE(2397), 1, - sym_namespace_use_group, - [68739] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4278), 1, + ACTIONS(4541), 2, anon_sym_COMMA, - ACTIONS(4281), 1, - anon_sym_RBRACE, - STATE(2070), 2, - sym_text_interpolation, - aux_sym_match_block_repeat1, - [68756] = 6, + anon_sym_RPAREN, + [72327] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(4545), 1, anon_sym_COMMA, - ACTIONS(4283), 1, + ACTIONS(4548), 1, anon_sym_RPAREN, - STATE(2071), 1, + STATE(2126), 2, sym_text_interpolation, - STATE(2097), 1, - aux_sym_unset_statement_repeat1, - [68775] = 5, + aux_sym_anonymous_function_use_clause_repeat1, + [72344] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1318), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2072), 1, + STATE(2127), 1, sym_text_interpolation, - ACTIONS(1316), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68792] = 5, + ACTIONS(4184), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [72359] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1490), 1, + ACTIONS(1288), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2073), 1, + STATE(2128), 1, sym_text_interpolation, - ACTIONS(1488), 2, + ACTIONS(1286), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68809] = 5, + [72376] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1438), 1, + ACTIONS(1292), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2074), 1, + STATE(2129), 1, sym_text_interpolation, - ACTIONS(1436), 2, + ACTIONS(1290), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68826] = 5, + [72393] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1278), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2075), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(1776), 1, + aux_sym_class_declaration_token1, + STATE(2130), 1, sym_text_interpolation, - ACTIONS(1276), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68843] = 4, + STATE(2656), 1, + sym_readonly_modifier, + [72412] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2076), 1, + STATE(2131), 1, sym_text_interpolation, - ACTIONS(3948), 3, + ACTIONS(4175), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [68858] = 4, + [72427] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2077), 1, + ACTIONS(3696), 1, + anon_sym_BSLASH, + ACTIONS(4251), 1, + sym_name, + STATE(2132), 1, sym_text_interpolation, - ACTIONS(3253), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [68873] = 6, + STATE(2633), 1, + sym_namespace_name, + [72446] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4217), 1, - sym_name, - ACTIONS(4219), 1, - anon_sym_LBRACE, - STATE(2078), 1, + STATE(2133), 1, sym_text_interpolation, - STATE(2447), 1, - sym_namespace_use_group, - [68892] = 6, + ACTIONS(4550), 3, + anon_sym_string, + anon_sym_int, + sym_grit_metavariable, + [72461] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4219), 1, - anon_sym_LBRACE, - ACTIONS(4231), 1, - sym_name, - STATE(2079), 1, + STATE(2134), 1, sym_text_interpolation, - STATE(2447), 1, - sym_namespace_use_group, - [68911] = 5, + ACTIONS(4170), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + [72476] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1462), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2080), 1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + ACTIONS(4552), 1, + aux_sym_class_declaration_token1, + STATE(2135), 1, sym_text_interpolation, - ACTIONS(1460), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68928] = 5, + STATE(2668), 1, + sym_readonly_modifier, + [72495] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1214), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2081), 1, + ACTIONS(4320), 1, + sym_name, + ACTIONS(4322), 1, + anon_sym_LBRACE, + STATE(2136), 1, sym_text_interpolation, - ACTIONS(1212), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68945] = 6, + STATE(2496), 1, + sym_namespace_use_group, + [72514] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(791), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4285), 1, + ACTIONS(4554), 1, anon_sym_COMMA, - STATE(2082), 1, + ACTIONS(4557), 1, + anon_sym_RPAREN, + STATE(2137), 2, sym_text_interpolation, - STATE(2122), 1, aux_sym_arguments_repeat1, - [68964] = 5, + [72531] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1230), 1, + ACTIONS(1300), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2083), 1, + STATE(2138), 1, sym_text_interpolation, - ACTIONS(1228), 2, + ACTIONS(1298), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68981] = 5, + [72548] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1418), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2084), 1, + STATE(2139), 1, sym_text_interpolation, - ACTIONS(1416), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [68998] = 5, + ACTIONS(4559), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [72563] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1482), 1, + ACTIONS(1100), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2085), 1, + STATE(2140), 1, sym_text_interpolation, - ACTIONS(1480), 2, + ACTIONS(1098), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69015] = 5, + [72580] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1242), 1, + ACTIONS(1316), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2086), 1, + STATE(2141), 1, sym_text_interpolation, - ACTIONS(1240), 2, + ACTIONS(1314), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69032] = 6, + [72597] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - ACTIONS(4287), 1, + ACTIONS(3987), 1, + anon_sym_COMMA, + ACTIONS(3989), 1, + anon_sym_LBRACE, + STATE(2142), 1, + sym_text_interpolation, + STATE(2183), 1, + aux_sym_class_interface_clause_repeat1, + [72616] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(2143), 1, + sym_text_interpolation, + ACTIONS(4561), 3, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, - STATE(2087), 1, + [72631] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4563), 1, + anon_sym_COMMA, + ACTIONS(4565), 1, + anon_sym_RPAREN, + STATE(2144), 1, sym_text_interpolation, - STATE(2565), 1, - sym_variable_name, - [69051] = 5, + STATE(2147), 1, + aux_sym_array_creation_expression_repeat1, + [72650] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1238), 1, + ACTIONS(1296), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2088), 1, + STATE(2145), 1, sym_text_interpolation, - ACTIONS(1236), 2, + ACTIONS(1294), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69068] = 5, + [72667] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4214), 1, + sym_nowdoc_string, + ACTIONS(4567), 1, + anon_sym_, + STATE(1883), 1, + aux_sym_nowdoc_body_repeat1, + STATE(2146), 1, + sym_text_interpolation, + [72686] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4569), 1, + anon_sym_COMMA, + ACTIONS(4572), 1, + anon_sym_RPAREN, + STATE(2147), 2, + sym_text_interpolation, + aux_sym_array_creation_expression_repeat1, + [72703] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1262), 1, + ACTIONS(1174), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2089), 1, + STATE(2148), 1, sym_text_interpolation, - ACTIONS(1260), 2, + ACTIONS(1172), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69085] = 6, + [72720] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4289), 1, + ACTIONS(3375), 1, + anon_sym_COMMA, + ACTIONS(4574), 1, anon_sym_RPAREN, - STATE(2052), 1, - aux_sym__list_destructing_repeat1, - STATE(2090), 1, + STATE(2149), 1, sym_text_interpolation, - [69104] = 6, + STATE(2181), 1, + aux_sym_unset_statement_repeat1, + [72739] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1308), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_RPAREN, - STATE(2057), 1, - aux_sym__list_destructing_repeat1, - STATE(2091), 1, + STATE(2150), 1, sym_text_interpolation, - [69123] = 6, + ACTIONS(1306), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [72756] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(4291), 1, - anon_sym_EQ_GT, - STATE(2092), 1, + ACTIONS(4576), 1, + anon_sym_DQUOTE, + ACTIONS(4578), 1, + anon_sym_SQUOTE, + ACTIONS(4580), 1, + sym_heredoc_start, + STATE(2151), 1, sym_text_interpolation, - STATE(2493), 1, - sym__return_type, - [69142] = 4, + [72775] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2093), 1, + STATE(2152), 1, sym_text_interpolation, - ACTIONS(4293), 3, + ACTIONS(4582), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69157] = 6, + [72790] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4219), 1, - anon_sym_LBRACE, - ACTIONS(4231), 1, - sym_name, - STATE(2094), 1, - sym_text_interpolation, - STATE(2271), 1, - sym_namespace_use_group, - [69176] = 6, - ACTIONS(5), 1, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(4182), 1, - sym__new_line, - ACTIONS(4295), 1, - sym_heredoc_end, - STATE(2095), 1, + ACTIONS(3522), 1, + anon_sym_RPAREN, + STATE(2075), 1, + aux_sym__list_destructing_repeat1, + STATE(2153), 1, sym_text_interpolation, - STATE(2262), 1, - sym_nowdoc_body, - [69195] = 4, + [72809] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(2096), 1, - sym_text_interpolation, - ACTIONS(3927), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(906), 1, anon_sym_COMMA, - [69210] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(4584), 1, anon_sym_RPAREN, - ACTIONS(4297), 1, - anon_sym_COMMA, - STATE(2097), 2, + STATE(2079), 1, + aux_sym__list_destructing_repeat1, + STATE(2154), 1, sym_text_interpolation, - aux_sym_unset_statement_repeat1, - [69227] = 4, + [72828] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2098), 1, + STATE(2155), 1, sym_text_interpolation, - ACTIONS(4300), 3, + ACTIONS(4586), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69242] = 6, + [72843] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(4302), 1, - anon_sym_EQ_GT, - STATE(2099), 1, + ACTIONS(1758), 1, + aux_sym_class_declaration_token1, + ACTIONS(1760), 1, + aux_sym_readonly_modifier_token1, + STATE(2156), 1, sym_text_interpolation, - STATE(2624), 1, - sym__return_type, - [69261] = 4, + STATE(2593), 1, + sym_readonly_modifier, + [72862] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - STATE(2100), 1, + STATE(2157), 1, sym_text_interpolation, - ACTIONS(4304), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [69276] = 6, + STATE(1912), 2, + sym_dynamic_variable_name, + sym_variable_name, + [72879] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1312), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1712), 1, - anon_sym_RPAREN, - STATE(2101), 1, + STATE(2158), 1, sym_text_interpolation, - STATE(2139), 1, - aux_sym__list_destructing_repeat1, - [69295] = 5, + ACTIONS(1310), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [72896] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4308), 1, + ACTIONS(1324), 1, aux_sym_else_clause_token1, - STATE(2102), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(2159), 1, sym_text_interpolation, - ACTIONS(4306), 2, - aux_sym_if_statement_token2, + ACTIONS(1322), 2, + aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69312] = 6, + [72913] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(993), 1, + anon_sym_EQ_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3473), 1, + ACTIONS(4588), 1, anon_sym_COMMA, - ACTIONS(4310), 1, - anon_sym_LBRACE, - STATE(1790), 1, - aux_sym_base_clause_repeat1, - STATE(2103), 1, + STATE(2064), 1, + aux_sym_match_condition_list_repeat1, + STATE(2160), 1, + sym_text_interpolation, + [72932] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(889), 1, + anon_sym_RBRACE, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4590), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym_match_block_repeat1, + STATE(2161), 1, sym_text_interpolation, - [69331] = 5, + [72951] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1266), 1, + ACTIONS(1328), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2104), 1, + STATE(2162), 1, sym_text_interpolation, - ACTIONS(1264), 2, + ACTIONS(1326), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69348] = 5, + [72968] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1266), 1, + ACTIONS(1328), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2105), 1, + STATE(2163), 1, sym_text_interpolation, - ACTIONS(1264), 2, + ACTIONS(1326), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69365] = 6, + [72985] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(4312), 1, - anon_sym_EQ_GT, - STATE(2106), 1, + ACTIONS(4594), 1, + aux_sym_else_clause_token1, + STATE(2164), 1, sym_text_interpolation, - STATE(2530), 1, - sym__return_type, - [69384] = 5, + ACTIONS(4592), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [73002] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1310), 1, + ACTIONS(1332), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2107), 1, + STATE(2165), 1, sym_text_interpolation, - ACTIONS(1308), 2, + ACTIONS(1330), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69401] = 5, + [73019] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1326), 1, + ACTIONS(1336), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2108), 1, + STATE(2166), 1, sym_text_interpolation, - ACTIONS(1324), 2, + ACTIONS(1334), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69418] = 6, + [73036] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4314), 1, + ACTIONS(4596), 1, + anon_sym_COMMA, + ACTIONS(4598), 1, + anon_sym_RBRACE, + STATE(2161), 1, + aux_sym_match_block_repeat1, + STATE(2167), 1, + sym_text_interpolation, + [73055] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(837), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4600), 1, + anon_sym_COMMA, + STATE(2137), 1, + aux_sym_arguments_repeat1, + STATE(2168), 1, + sym_text_interpolation, + [73074] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4602), 1, anon_sym_DQUOTE, - ACTIONS(4316), 1, + ACTIONS(4604), 1, anon_sym_SQUOTE, - ACTIONS(4318), 1, + ACTIONS(4606), 1, sym_heredoc_start, - STATE(2109), 1, + STATE(2169), 1, sym_text_interpolation, - [69437] = 5, + [73093] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1526), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2110), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(4608), 1, + anon_sym_EQ_GT, + STATE(2170), 1, sym_text_interpolation, - ACTIONS(1524), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [69454] = 6, + STATE(2613), 1, + sym__return_type, + [73112] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1348), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1712), 1, - anon_sym_RPAREN, - STATE(2111), 1, + STATE(2171), 1, sym_text_interpolation, - STATE(2126), 1, - aux_sym__list_destructing_repeat1, - [69473] = 5, + ACTIONS(1346), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [73129] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4322), 1, - anon_sym_EQ, - STATE(2112), 1, + ACTIONS(3375), 1, + anon_sym_COMMA, + ACTIONS(4610), 1, + anon_sym_RPAREN, + STATE(2172), 1, sym_text_interpolation, - ACTIONS(4320), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69490] = 5, + STATE(2181), 1, + aux_sym_unset_statement_repeat1, + [73148] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(326), 1, - anon_sym_DOLLAR, - ACTIONS(1596), 1, + ACTIONS(1348), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - STATE(2113), 1, + STATE(2173), 1, sym_text_interpolation, - STATE(1856), 2, - sym_dynamic_variable_name, - sym_variable_name, - [69507] = 5, + ACTIONS(1346), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [73165] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1282), 1, + ACTIONS(1376), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2114), 1, + STATE(2174), 1, sym_text_interpolation, - ACTIONS(1280), 2, + ACTIONS(1374), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69524] = 4, + [73182] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(2115), 1, - sym_text_interpolation, - ACTIONS(3467), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [69539] = 6, - ACTIONS(5), 1, + ACTIONS(1380), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(3994), 1, - sym_nowdoc_string, - ACTIONS(4324), 1, - anon_sym_, - STATE(1871), 1, - aux_sym_nowdoc_body_repeat1, - STATE(2116), 1, + STATE(2175), 1, sym_text_interpolation, - [69558] = 5, + ACTIONS(1378), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [73199] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1388), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4326), 1, - anon_sym_COMMA, - ACTIONS(4329), 1, - anon_sym_RBRACK, - STATE(2117), 2, + STATE(2176), 1, sym_text_interpolation, - aux_sym_attribute_group_repeat1, - [69575] = 5, + ACTIONS(1386), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [73216] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4333), 1, - anon_sym_EQ, - STATE(2118), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(4612), 1, + anon_sym_RPAREN, + STATE(2177), 1, sym_text_interpolation, - ACTIONS(4331), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [69592] = 4, + STATE(2590), 1, + sym_variable_name, + [73235] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2119), 1, + ACTIONS(4616), 1, + anon_sym_LPAREN, + STATE(2178), 1, sym_text_interpolation, - ACTIONS(4335), 3, + ACTIONS(4614), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [69607] = 5, + [73252] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1338), 1, + ACTIONS(1256), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2120), 1, + STATE(2179), 1, sym_text_interpolation, - ACTIONS(1336), 2, + ACTIONS(1254), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69624] = 5, + [73269] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4098), 1, - anon_sym_RBRACK, - ACTIONS(4337), 1, - anon_sym_COMMA, - STATE(2121), 2, + STATE(2180), 1, sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [69641] = 5, + ACTIONS(3001), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + sym_name, + [73284] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_COMMA, - ACTIONS(4343), 1, + ACTIONS(3536), 1, anon_sym_RPAREN, - STATE(2122), 2, + ACTIONS(4618), 1, + anon_sym_COMMA, + STATE(2181), 2, sym_text_interpolation, - aux_sym_arguments_repeat1, - [69658] = 4, + aux_sym_unset_statement_repeat1, + [73301] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1276), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - STATE(2123), 1, + STATE(2182), 1, sym_text_interpolation, - ACTIONS(4098), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [69673] = 5, + ACTIONS(1274), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [73318] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3907), 1, - anon_sym_EQ, - STATE(2124), 1, - sym_text_interpolation, - ACTIONS(4345), 2, + ACTIONS(3987), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [69690] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1746), 1, - anon_sym_DOLLAR, - STATE(1719), 1, - sym_variable_name, - STATE(1854), 1, - sym_property_element, - STATE(2125), 1, + ACTIONS(4621), 1, + anon_sym_LBRACE, + STATE(2017), 1, + aux_sym_class_interface_clause_repeat1, + STATE(2183), 1, sym_text_interpolation, - [69709] = 5, + [73337] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(1714), 1, + ACTIONS(857), 1, anon_sym_RPAREN, - ACTIONS(4347), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4623), 1, anon_sym_COMMA, - STATE(2126), 2, + STATE(2137), 1, + aux_sym_arguments_repeat1, + STATE(2184), 1, sym_text_interpolation, - aux_sym__list_destructing_repeat1, - [69726] = 6, + [73356] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4350), 1, + ACTIONS(4271), 1, + anon_sym_EQ, + STATE(2185), 1, + sym_text_interpolation, + ACTIONS(4625), 2, anon_sym_COMMA, - ACTIONS(4352), 1, anon_sym_RPAREN, - STATE(2127), 1, + [73373] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4629), 1, + anon_sym_EQ, + STATE(2186), 1, sym_text_interpolation, - STATE(2135), 1, - aux_sym_arguments_repeat1, - [69745] = 5, + ACTIONS(4627), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73390] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1534), 1, + ACTIONS(1304), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2128), 1, + STATE(2187), 1, sym_text_interpolation, - ACTIONS(1532), 2, + ACTIONS(1302), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69762] = 4, + [73407] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2129), 1, + STATE(2188), 1, sym_text_interpolation, - ACTIONS(4354), 3, + ACTIONS(3584), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [69777] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(817), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4356), 1, - anon_sym_COMMA, - STATE(2122), 1, - aux_sym_arguments_repeat1, - STATE(2130), 1, - sym_text_interpolation, - [69796] = 6, + [73422] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4631), 1, anon_sym_COMMA, - ACTIONS(4360), 1, + ACTIONS(4633), 1, anon_sym_RPAREN, - STATE(2130), 1, + STATE(2184), 1, aux_sym_arguments_repeat1, - STATE(2131), 1, + STATE(2189), 1, sym_text_interpolation, - [69815] = 6, + [73441] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4362), 1, - anon_sym_RPAREN, - STATE(2126), 1, - aux_sym__list_destructing_repeat1, - STATE(2132), 1, + ACTIONS(1812), 1, + anon_sym_DOLLAR, + STATE(1795), 1, + sym_variable_name, + STATE(1944), 1, + sym_property_element, + STATE(2190), 1, sym_text_interpolation, - [69834] = 4, + [73460] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2133), 1, + STATE(2191), 1, sym_text_interpolation, - ACTIONS(4364), 3, + ACTIONS(4635), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69849] = 6, + [73475] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4366), 1, + ACTIONS(4637), 1, anon_sym_COMMA, - ACTIONS(4368), 1, + ACTIONS(4639), 1, anon_sym_RPAREN, - STATE(2082), 1, - aux_sym_arguments_repeat1, - STATE(2134), 1, + STATE(2192), 1, sym_text_interpolation, - [69868] = 6, + STATE(2200), 1, + aux_sym_arguments_repeat1, + [73494] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(797), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4370), 1, - anon_sym_COMMA, - STATE(2122), 1, - aux_sym_arguments_repeat1, - STATE(2135), 1, + STATE(2193), 1, sym_text_interpolation, - [69887] = 5, + STATE(1848), 2, + sym_dynamic_variable_name, + sym_variable_name, + [73511] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1470), 1, + ACTIONS(1368), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2136), 1, + STATE(2194), 1, sym_text_interpolation, - ACTIONS(1468), 2, + ACTIONS(1366), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69904] = 6, + [73528] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1372), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_DOLLAR, - STATE(1719), 1, - sym_variable_name, - STATE(1787), 1, - sym_property_element, - STATE(2137), 1, + STATE(2195), 1, sym_text_interpolation, - [69923] = 5, + ACTIONS(1370), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [73545] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1136), 1, + ACTIONS(1384), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2138), 1, + STATE(2196), 1, sym_text_interpolation, - ACTIONS(1134), 2, + ACTIONS(1382), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69940] = 6, + [73562] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(861), 1, - anon_sym_COMMA, - ACTIONS(1596), 1, + ACTIONS(1612), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4372), 1, - anon_sym_RPAREN, - STATE(2126), 1, - aux_sym__list_destructing_repeat1, - STATE(2139), 1, + STATE(2197), 1, sym_text_interpolation, - [69959] = 6, + ACTIONS(1610), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [73579] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3473), 1, + ACTIONS(906), 1, anon_sym_COMMA, - ACTIONS(3727), 1, - anon_sym_LBRACE, - STATE(2103), 1, - aux_sym_base_clause_repeat1, - STATE(2140), 1, - sym_text_interpolation, - [69978] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON, - ACTIONS(4374), 1, - anon_sym_LPAREN, - STATE(2141), 1, + ACTIONS(4641), 1, + anon_sym_RPAREN, + STATE(2198), 1, sym_text_interpolation, - STATE(2292), 1, - sym_parenthesized_expression, - [69997] = 4, + STATE(2204), 1, + aux_sym__list_destructing_repeat1, + [73598] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2142), 1, + STATE(2199), 1, sym_text_interpolation, - ACTIONS(4376), 3, + ACTIONS(4643), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [70012] = 6, + [73613] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(851), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4205), 1, + ACTIONS(4645), 1, anon_sym_COMMA, - ACTIONS(4378), 1, - anon_sym_RBRACK, - STATE(2143), 1, + STATE(2137), 1, + aux_sym_arguments_repeat1, + STATE(2200), 1, sym_text_interpolation, - STATE(2152), 1, - aux_sym__array_destructing_repeat1, - [70031] = 6, + [73632] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3794), 1, - anon_sym_RPAREN, - ACTIONS(4380), 1, + ACTIONS(4647), 1, anon_sym_COMMA, - STATE(1978), 1, + ACTIONS(4649), 1, + anon_sym_RPAREN, + STATE(1984), 1, aux_sym_anonymous_function_use_clause_repeat1, - STATE(2144), 1, + STATE(2201), 1, sym_text_interpolation, - [70050] = 5, + [73651] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1510), 1, + ACTIONS(1604), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2145), 1, + STATE(2202), 1, sym_text_interpolation, - ACTIONS(1508), 2, + ACTIONS(1602), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70067] = 6, + [73668] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(825), 1, + ACTIONS(906), 1, + anon_sym_COMMA, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4651), 1, anon_sym_RPAREN, - ACTIONS(1596), 1, + STATE(2203), 1, + sym_text_interpolation, + STATE(2204), 1, + aux_sym__list_destructing_repeat1, + [73687] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(1785), 1, + anon_sym_RPAREN, + ACTIONS(4653), 1, anon_sym_COMMA, - STATE(2122), 1, - aux_sym_arguments_repeat1, - STATE(2146), 1, + STATE(2204), 2, sym_text_interpolation, - [70086] = 6, + aux_sym__list_destructing_repeat1, + [73704] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(845), 1, - anon_sym_RBRACK, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4658), 1, + anon_sym_EQ, + STATE(2205), 1, + sym_text_interpolation, + ACTIONS(4656), 2, anon_sym_COMMA, - STATE(2121), 1, - aux_sym_array_creation_expression_repeat1, - STATE(2147), 1, + anon_sym_RPAREN, + [73721] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + ACTIONS(4660), 1, + anon_sym_DOT_DOT_DOT, + STATE(1981), 1, + sym_variable_name, + STATE(2206), 1, sym_text_interpolation, - [70105] = 6, + [73740] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(843), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_COMMA, - STATE(1941), 1, - aux_sym_array_creation_expression_repeat1, - STATE(2148), 1, + ACTIONS(4271), 1, + anon_sym_EQ, + STATE(2207), 1, sym_text_interpolation, - [70124] = 6, + ACTIONS(4662), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [73757] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(4666), 1, + anon_sym_EQ, + STATE(2208), 1, + sym_text_interpolation, + ACTIONS(4664), 2, anon_sym_COMMA, - ACTIONS(4390), 1, anon_sym_RPAREN, - STATE(2146), 1, - aux_sym_arguments_repeat1, - STATE(2149), 1, - sym_text_interpolation, - [70143] = 5, + [73774] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1514), 1, + ACTIONS(1392), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2150), 1, + STATE(2209), 1, sym_text_interpolation, - ACTIONS(1512), 2, + ACTIONS(1390), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70160] = 5, + [73791] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3907), 1, + ACTIONS(4670), 1, anon_sym_EQ, - STATE(2151), 1, + STATE(2210), 1, sym_text_interpolation, - ACTIONS(4392), 2, + ACTIONS(4668), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70177] = 5, + [73808] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(835), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4672), 1, anon_sym_COMMA, - ACTIONS(4397), 1, - anon_sym_RBRACK, - STATE(2152), 2, + STATE(2137), 1, + aux_sym_arguments_repeat1, + STATE(2211), 1, sym_text_interpolation, - aux_sym__array_destructing_repeat1, - [70194] = 5, + [73827] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1358), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2153), 1, + STATE(2212), 1, sym_text_interpolation, - ACTIONS(1356), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [70211] = 5, + ACTIONS(4572), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [73842] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(4676), 1, anon_sym_EQ, - STATE(2154), 1, + STATE(2213), 1, sym_text_interpolation, - ACTIONS(4399), 2, + ACTIONS(4674), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70228] = 6, + [73859] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(4572), 1, + anon_sym_RBRACK, + ACTIONS(4678), 1, anon_sym_COMMA, - ACTIONS(4403), 1, - anon_sym_RPAREN, - STATE(2097), 1, - aux_sym_unset_statement_repeat1, - STATE(2155), 1, + STATE(2214), 2, sym_text_interpolation, - [70247] = 6, + aux_sym_array_creation_expression_repeat1, + [73876] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(831), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4405), 1, + ACTIONS(4681), 1, anon_sym_COMMA, - STATE(2122), 1, + ACTIONS(4683), 1, + anon_sym_RPAREN, + STATE(2211), 1, aux_sym_arguments_repeat1, - STATE(2156), 1, + STATE(2215), 1, sym_text_interpolation, - [70266] = 5, + [73895] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4687), 1, anon_sym_EQ, - STATE(2157), 1, + STATE(2216), 1, sym_text_interpolation, - ACTIONS(4407), 2, + ACTIONS(4685), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70283] = 5, + [73912] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1234), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4691), 1, + anon_sym_EQ, + STATE(2217), 1, + sym_text_interpolation, + ACTIONS(4689), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [73929] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1528), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2158), 1, + STATE(2218), 1, sym_text_interpolation, - ACTIONS(1232), 2, + ACTIONS(1526), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70300] = 5, + [73946] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4413), 1, - anon_sym_EQ, - STATE(2159), 1, - sym_text_interpolation, - ACTIONS(4411), 2, + ACTIONS(4693), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [70317] = 6, + ACTIONS(4696), 1, + anon_sym_RBRACK, + STATE(2219), 2, + sym_text_interpolation, + aux_sym_attribute_group_repeat1, + [73963] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1220), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4415), 1, - anon_sym_COMMA, - ACTIONS(4417), 1, - anon_sym_RPAREN, - STATE(2156), 1, - aux_sym_arguments_repeat1, - STATE(2160), 1, + STATE(2220), 1, sym_text_interpolation, - [70336] = 6, + ACTIONS(1218), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [73980] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1224), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3100), 1, - anon_sym_RBRACK, - ACTIONS(4419), 1, - anon_sym_COMMA, - STATE(2117), 1, - aux_sym_attribute_group_repeat1, - STATE(2161), 1, + STATE(2221), 1, sym_text_interpolation, - [70355] = 5, + ACTIONS(1222), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [73997] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1274), 1, + ACTIONS(1472), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2162), 1, + STATE(2222), 1, sym_text_interpolation, - ACTIONS(1272), 2, + ACTIONS(1470), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70372] = 5, + [74014] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3692), 1, + anon_sym_RPAREN, + ACTIONS(4698), 1, + anon_sym_COMMA, + STATE(2223), 2, + sym_text_interpolation, + aux_sym_formal_parameters_repeat1, + [74031] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(1596), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4423), 1, - anon_sym_EQ, - STATE(2163), 1, + STATE(2224), 1, sym_text_interpolation, - ACTIONS(4421), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [70389] = 5, + ACTIONS(1594), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [74048] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1286), 1, + ACTIONS(1452), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2164), 1, + STATE(2225), 1, sym_text_interpolation, - ACTIONS(1284), 2, + ACTIONS(1450), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70406] = 5, + [74065] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1290), 1, + ACTIONS(1408), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2165), 1, + STATE(2226), 1, sym_text_interpolation, - ACTIONS(1288), 2, + ACTIONS(1406), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70423] = 6, + [74082] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1616), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_COMMA, - ACTIONS(4425), 1, - anon_sym_RBRACE, - STATE(2002), 1, - aux_sym_namespace_use_group_repeat1, - STATE(2166), 1, + STATE(2227), 1, sym_text_interpolation, - [70442] = 6, + ACTIONS(1614), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [74099] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4427), 1, + ACTIONS(4372), 1, anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_RPAREN, - STATE(2167), 1, + ACTIONS(4701), 1, + anon_sym_RBRACE, + STATE(2002), 1, + aux_sym_namespace_use_group_repeat1, + STATE(2228), 1, sym_text_interpolation, - STATE(2171), 1, - aux_sym_arguments_repeat1, - [70461] = 5, + [74118] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1298), 1, + ACTIONS(1620), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2168), 1, + STATE(2229), 1, sym_text_interpolation, - ACTIONS(1296), 2, + ACTIONS(1618), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70478] = 6, + [74135] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(4053), 1, + ACTIONS(4346), 1, sym__new_line, - ACTIONS(4431), 1, + ACTIONS(4703), 1, sym_heredoc_end, - STATE(2169), 1, + STATE(2230), 1, sym_text_interpolation, - STATE(2266), 1, + STATE(2355), 1, sym_heredoc_body, - [70497] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1390), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + [74154] = 6, + ACTIONS(5), 1, sym_comment, - STATE(2170), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4444), 1, + sym__new_line, + ACTIONS(4705), 1, + sym_heredoc_end, + STATE(2231), 1, sym_text_interpolation, - ACTIONS(1388), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [70514] = 6, + STATE(2356), 1, + sym_nowdoc_body, + [74173] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(827), 1, + ACTIONS(843), 1, anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4433), 1, + ACTIONS(4707), 1, anon_sym_COMMA, - STATE(2122), 1, + STATE(2137), 1, aux_sym_arguments_repeat1, - STATE(2171), 1, + STATE(2232), 1, sym_text_interpolation, - [70533] = 6, + [74192] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_COLON, - ACTIONS(4435), 1, - anon_sym_EQ_GT, - STATE(2172), 1, + ACTIONS(4709), 1, + anon_sym_COMMA, + ACTIONS(4711), 1, + anon_sym_RPAREN, + STATE(2233), 1, sym_text_interpolation, - STATE(2475), 1, - sym__return_type, - [70552] = 5, + STATE(2239), 1, + aux_sym_arguments_repeat1, + [74211] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1554), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2173), 1, + ACTIONS(4322), 1, + anon_sym_LBRACE, + ACTIONS(4486), 1, + sym_name, + STATE(2234), 1, sym_text_interpolation, - ACTIONS(1552), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [70569] = 5, + STATE(2402), 1, + sym_namespace_use_group, + [74230] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1206), 1, - aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2174), 1, + ACTIONS(4713), 1, + sym_name, + STATE(2235), 1, sym_text_interpolation, - ACTIONS(1204), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [70586] = 5, + ACTIONS(4715), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74247] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1566), 1, + ACTIONS(1584), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2175), 1, + STATE(2236), 1, sym_text_interpolation, - ACTIONS(1564), 2, + ACTIONS(1582), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70603] = 5, + [74264] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(855), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(4717), 1, + anon_sym_COMMA, + STATE(2137), 1, + aux_sym_arguments_repeat1, + STATE(2237), 1, + sym_text_interpolation, + [74283] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1176), 1, + ACTIONS(1404), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2176), 1, + STATE(2238), 1, sym_text_interpolation, - ACTIONS(1174), 2, + ACTIONS(1402), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70620] = 5, + [74300] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(821), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4439), 1, - aux_sym_else_clause_token1, - STATE(2177), 1, + ACTIONS(4719), 1, + anon_sym_COMMA, + STATE(2137), 1, + aux_sym_arguments_repeat1, + STATE(2239), 1, sym_text_interpolation, - ACTIONS(4437), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [70637] = 6, + [74319] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4441), 1, - anon_sym_COMMA, - ACTIONS(4443), 1, - anon_sym_RBRACE, - STATE(1946), 1, - aux_sym_match_block_repeat1, - STATE(2178), 1, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(4721), 1, + anon_sym_EQ_GT, + STATE(2240), 1, sym_text_interpolation, - [70656] = 6, + STATE(2638), 1, + sym__return_type, + [74338] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4445), 1, + ACTIONS(4723), 1, anon_sym_COMMA, - ACTIONS(4447), 1, + ACTIONS(4725), 1, anon_sym_RPAREN, - STATE(2179), 1, - sym_text_interpolation, - STATE(2181), 1, + STATE(2237), 1, aux_sym_arguments_repeat1, - [70675] = 5, + STATE(2241), 1, + sym_text_interpolation, + [74357] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1306), 1, + ACTIONS(1400), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2180), 1, + STATE(2242), 1, sym_text_interpolation, - ACTIONS(1304), 2, + ACTIONS(1398), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70692] = 6, + [74374] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(813), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1580), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_COMMA, - STATE(2122), 1, - aux_sym_arguments_repeat1, - STATE(2181), 1, + STATE(2243), 1, + sym_text_interpolation, + ACTIONS(1578), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [74391] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3678), 1, + anon_sym_COLON, + ACTIONS(4727), 1, + anon_sym_EQ_GT, + STATE(2244), 1, sym_text_interpolation, - [70711] = 5, + STATE(2623), 1, + sym__return_type, + [74410] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1494), 1, + ACTIONS(1576), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2182), 1, + STATE(2245), 1, sym_text_interpolation, - ACTIONS(1492), 2, + ACTIONS(1574), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70728] = 5, + [74427] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1498), 1, + ACTIONS(1360), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2183), 1, + STATE(2246), 1, sym_text_interpolation, - ACTIONS(1496), 2, + ACTIONS(1358), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70745] = 5, + [74444] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(2247), 1, + sym_text_interpolation, + ACTIONS(4729), 3, + anon_sym_string, + anon_sym_int, + sym_grit_metavariable, + [74459] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1506), 1, + ACTIONS(1572), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2184), 1, + STATE(2248), 1, sym_text_interpolation, - ACTIONS(1504), 2, + ACTIONS(1570), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70762] = 5, + [74476] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1518), 1, + ACTIONS(1356), 1, aux_sym_else_clause_token1, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2185), 1, + STATE(2249), 1, sym_text_interpolation, - ACTIONS(1516), 2, + ACTIONS(1354), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70779] = 4, + [74493] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1320), 1, + aux_sym_else_clause_token1, + ACTIONS(1656), 1, sym_comment, - STATE(2186), 1, + STATE(2250), 1, sym_text_interpolation, - ACTIONS(4199), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [70793] = 4, + ACTIONS(1318), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [74510] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2187), 1, - sym_text_interpolation, - ACTIONS(4451), 2, - sym__automatic_semicolon, + ACTIONS(4731), 1, anon_sym_SEMI, - [70807] = 5, + ACTIONS(4733), 1, + sym__automatic_semicolon, + STATE(2251), 1, + sym_text_interpolation, + [74526] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(551), 1, - ts_builtin_sym_end, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4453), 1, - sym_php_tag, - STATE(2188), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1992), 1, + sym_formal_parameters, + STATE(2252), 1, sym_text_interpolation, - [70823] = 5, + [74542] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2189), 1, + STATE(2253), 1, sym_text_interpolation, - STATE(2318), 1, - sym_variable_name, - [70839] = 4, + ACTIONS(4488), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2190), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_enum_declaration_list, + STATE(2254), 1, sym_text_interpolation, - ACTIONS(4455), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70853] = 5, + [74572] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, + ACTIONS(3466), 1, anon_sym_LPAREN, - STATE(76), 1, - sym_parenthesized_expression, - STATE(2191), 1, + STATE(1627), 1, + sym_formal_parameters, + STATE(2255), 1, sym_text_interpolation, - [70869] = 4, + [74588] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2192), 1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(458), 1, + sym_declaration_list, + STATE(2256), 1, sym_text_interpolation, - ACTIONS(4459), 2, - sym__eof, - sym_php_tag, - [70883] = 4, + [74604] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2193), 1, + STATE(2257), 1, sym_text_interpolation, - ACTIONS(4461), 2, + ACTIONS(4735), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70897] = 4, + [74618] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(489), 1, + ts_builtin_sym_end, + ACTIONS(1656), 1, sym_comment, - STATE(2194), 1, + ACTIONS(4737), 1, + sym_php_tag, + STATE(2258), 1, sym_text_interpolation, - ACTIONS(4463), 2, + [74634] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(2259), 1, + sym_text_interpolation, + ACTIONS(2714), 2, anon_sym_SEMI, - anon_sym_COLON, - [70911] = 5, + anon_sym_RPAREN, + [74648] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1934), 1, - sym_compound_statement, - STATE(2195), 1, + STATE(2260), 1, sym_text_interpolation, - [70927] = 5, + ACTIONS(4739), 2, + sym__eof, + sym_php_tag, + [74662] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4741), 1, sym_name, - STATE(2196), 1, + ACTIONS(4743), 1, + sym_grit_metavariable, + STATE(2261), 1, sym_text_interpolation, - STATE(2600), 1, - sym_namespace_name, - [70943] = 4, + [74678] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2197), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(2029), 1, + sym_formal_parameters, + STATE(2262), 1, sym_text_interpolation, - ACTIONS(3485), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70957] = 4, + [74694] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2198), 1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(463), 1, + sym_declaration_list, + STATE(2263), 1, sym_text_interpolation, - ACTIONS(4468), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [70971] = 5, + [74710] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(3466), 1, anon_sym_LPAREN, - STATE(2199), 1, + STATE(1690), 1, + sym_formal_parameters, + STATE(2264), 1, sym_text_interpolation, - STATE(2297), 1, - sym_parenthesized_expression, - [70987] = 5, + [74726] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2200), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1169), 1, + sym_compound_statement, + STATE(2265), 1, sym_text_interpolation, - STATE(2224), 1, - sym_variable_name, - [71003] = 4, + [74742] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2201), 1, + STATE(2266), 1, sym_text_interpolation, - ACTIONS(4470), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71017] = 5, + ACTIONS(2728), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74756] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(383), 1, - anon_sym_COLON, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2202), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1161), 1, + sym_compound_statement, + STATE(2267), 1, sym_text_interpolation, - STATE(2488), 1, - sym_colon_block, - [71033] = 4, + [74772] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2203), 1, + STATE(2268), 1, sym_text_interpolation, - ACTIONS(3853), 2, + ACTIONS(2726), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [71047] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + anon_sym_RPAREN, + [74786] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4472), 1, - sym__new_line, - ACTIONS(4474), 1, - sym_heredoc_end, - STATE(2204), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_BSLASH, + STATE(2269), 1, sym_text_interpolation, - [71063] = 4, + STATE(2516), 1, + aux_sym_namespace_name_repeat1, + [74802] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2205), 1, + STATE(2270), 1, sym_text_interpolation, - ACTIONS(4476), 2, + ACTIONS(4745), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71077] = 5, + [74816] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - STATE(1130), 1, - sym_declaration_list, - STATE(2206), 1, + STATE(2271), 1, sym_text_interpolation, - [71093] = 5, + ACTIONS(4747), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74830] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - STATE(1093), 1, - sym_compound_statement, - STATE(2207), 1, + ACTIONS(4749), 1, + sym_name, + STATE(1937), 1, + sym_namespace_name, + STATE(2272), 1, sym_text_interpolation, - [71109] = 5, + [74846] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4751), 1, sym_name, - STATE(2208), 1, + STATE(2273), 1, sym_text_interpolation, - STATE(2592), 1, + STATE(2633), 1, sym_namespace_name, - [71125] = 5, + [74862] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4478), 1, - anon_sym_LPAREN, - STATE(1666), 1, - sym_formal_parameters, - STATE(2209), 1, + ACTIONS(4754), 1, + sym_name, + ACTIONS(4756), 1, + sym_grit_metavariable, + STATE(2274), 1, sym_text_interpolation, - [71141] = 5, + [74878] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - STATE(1129), 1, - sym_declaration_list, - STATE(2210), 1, + ACTIONS(4758), 1, + sym_name, + ACTIONS(4760), 1, + sym_grit_metavariable, + STATE(2275), 1, sym_text_interpolation, - [71157] = 4, + [74894] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2211), 1, + ACTIONS(4762), 1, + sym_name, + ACTIONS(4764), 1, + sym_grit_metavariable, + STATE(2276), 1, sym_text_interpolation, - ACTIONS(4480), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71171] = 5, + [74910] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4482), 1, - anon_sym_SEMI, - ACTIONS(4484), 1, - sym__automatic_semicolon, - STATE(2212), 1, + STATE(2277), 1, sym_text_interpolation, - [71187] = 4, + ACTIONS(3692), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [74924] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2213), 1, + STATE(2278), 1, sym_text_interpolation, - ACTIONS(4486), 2, + ACTIONS(4766), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71201] = 5, + [74938] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4465), 1, - sym_name, - STATE(2214), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(1997), 1, + sym_variable_name, + STATE(2279), 1, sym_text_interpolation, - STATE(2521), 1, - sym_namespace_name, - [71217] = 4, + [74954] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2215), 1, + ACTIONS(4751), 1, + sym_name, + STATE(2280), 1, sym_text_interpolation, - ACTIONS(4488), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71231] = 5, + STATE(2669), 1, + sym_namespace_name, + [74970] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(1990), 1, - sym_variable_name, - STATE(2216), 1, + ACTIONS(4768), 1, + sym_name, + ACTIONS(4770), 1, + sym_grit_metavariable, + STATE(2281), 1, sym_text_interpolation, - [71247] = 4, + [74986] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2217), 1, + STATE(2282), 1, sym_text_interpolation, - ACTIONS(4490), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71261] = 5, + ACTIONS(4696), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [75000] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(440), 1, - sym_declaration_list, - STATE(2218), 1, + STATE(2283), 1, sym_text_interpolation, - [71277] = 4, + ACTIONS(4772), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75014] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2219), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2284), 1, sym_text_interpolation, - ACTIONS(2518), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71291] = 4, + STATE(2520), 1, + sym_variable_name, + [75030] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2220), 1, + STATE(2285), 1, sym_text_interpolation, - ACTIONS(4492), 2, + ACTIONS(4774), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71305] = 5, + [75044] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, + ACTIONS(1842), 1, anon_sym_DOLLAR, - STATE(2221), 1, + STATE(2286), 1, sym_text_interpolation, - STATE(2374), 1, + STATE(2522), 1, sym_variable_name, - [71321] = 5, + [75060] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(928), 1, - sym_compound_statement, - STATE(2222), 1, + STATE(2287), 1, sym_text_interpolation, - [71337] = 4, + ACTIONS(4776), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [75074] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2223), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(1979), 1, + sym_variable_name, + STATE(2288), 1, sym_text_interpolation, - ACTIONS(4494), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71351] = 4, + [75090] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2224), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2289), 1, sym_text_interpolation, - ACTIONS(4496), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71365] = 5, + STATE(2549), 1, + sym_variable_name, + [75106] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4498), 1, - anon_sym_LBRACE, - STATE(434), 1, - sym_compound_statement, - STATE(2225), 1, + STATE(2290), 1, sym_text_interpolation, - [71381] = 5, + ACTIONS(4779), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75120] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(1917), 1, - sym_declaration_list, - STATE(2226), 1, + STATE(1091), 1, + sym_compound_statement, + STATE(2291), 1, sym_text_interpolation, - [71397] = 4, + [75136] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2227), 1, + ACTIONS(4751), 1, + sym_name, + STATE(2292), 1, sym_text_interpolation, - ACTIONS(4500), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71411] = 4, + STATE(2661), 1, + sym_namespace_name, + [75152] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2228), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2293), 1, sym_text_interpolation, - ACTIONS(4502), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [71425] = 5, + STATE(2544), 1, + sym_variable_name, + [75168] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(458), 1, - sym_declaration_list, - STATE(2229), 1, + STATE(2294), 1, sym_text_interpolation, - [71441] = 4, + ACTIONS(4781), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75182] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2230), 1, + STATE(2295), 1, sym_text_interpolation, - ACTIONS(4504), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [71455] = 5, + ACTIONS(4783), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75196] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3547), 1, - anon_sym_LBRACE, - STATE(1915), 1, - sym_enum_declaration_list, - STATE(2231), 1, + STATE(2296), 1, sym_text_interpolation, - [71471] = 5, + ACTIONS(1785), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75210] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1708), 1, + STATE(1766), 1, sym_compound_statement, - STATE(2232), 1, + STATE(2297), 1, sym_text_interpolation, - [71487] = 5, + [75226] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(1976), 1, - sym_variable_name, - STATE(2233), 1, + ACTIONS(4785), 1, + anon_sym_LPAREN, + STATE(67), 1, + sym_parenthesized_expression, + STATE(2298), 1, sym_text_interpolation, - [71503] = 5, + [75242] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - STATE(1114), 1, - sym_compound_statement, - STATE(2234), 1, + ACTIONS(4787), 1, + sym_name, + ACTIONS(4789), 1, + sym_grit_metavariable, + STATE(2299), 1, sym_text_interpolation, - [71519] = 5, + [75258] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1590), 1, - sym_formal_parameters, - STATE(2235), 1, + ACTIONS(4791), 1, + sym_name, + ACTIONS(4793), 1, + sym_grit_metavariable, + STATE(2300), 1, sym_text_interpolation, - [71535] = 5, + [75274] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3903), 1, anon_sym_LBRACE, - STATE(1111), 1, - sym_compound_statement, - STATE(2236), 1, + STATE(505), 1, + sym_enum_declaration_list, + STATE(2301), 1, sym_text_interpolation, - [71551] = 5, + [75290] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(1671), 1, + STATE(1154), 1, sym_declaration_list, - STATE(2237), 1, + STATE(2302), 1, sym_text_interpolation, - [71567] = 4, + [75306] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2238), 1, + STATE(2303), 1, sym_text_interpolation, - ACTIONS(1714), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71581] = 5, + ACTIONS(4795), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75320] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_declaration_list, - STATE(2239), 1, + ACTIONS(4785), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym_parenthesized_expression, + STATE(2304), 1, sym_text_interpolation, - [71597] = 5, + [75336] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, + ACTIONS(4430), 1, anon_sym_LPAREN, - STATE(54), 1, - sym_parenthesized_expression, - STATE(2240), 1, + STATE(2305), 1, sym_text_interpolation, - [71613] = 5, + STATE(2494), 1, + sym_parenthesized_expression, + [75352] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON, - ACTIONS(4506), 1, + ACTIONS(4430), 1, anon_sym_LPAREN, - STATE(2241), 1, + STATE(2072), 1, + sym_parenthesized_expression, + STATE(2306), 1, sym_text_interpolation, - [71629] = 5, + [75368] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(1108), 1, - sym_compound_statement, - STATE(2242), 1, + STATE(1153), 1, + sym_declaration_list, + STATE(2307), 1, sym_text_interpolation, - [71645] = 5, + [75384] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, - anon_sym_LPAREN, - STATE(51), 1, - sym_parenthesized_expression, - STATE(2243), 1, + STATE(2308), 1, + sym_text_interpolation, + ACTIONS(4797), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75398] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(2309), 1, sym_text_interpolation, - [71661] = 5, + ACTIONS(3758), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75412] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - STATE(2244), 1, + STATE(2310), 1, sym_text_interpolation, - STATE(2407), 1, - sym_parenthesized_expression, - [71677] = 5, + ACTIONS(4799), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75426] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - STATE(1998), 1, - sym_parenthesized_expression, - STATE(2245), 1, + STATE(2311), 1, sym_text_interpolation, - [71693] = 4, + ACTIONS(4801), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75440] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2246), 1, + STATE(2312), 1, sym_text_interpolation, - ACTIONS(2640), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71707] = 4, + ACTIONS(4715), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75454] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2247), 1, + STATE(2313), 1, sym_text_interpolation, - ACTIONS(1716), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71721] = 5, + ACTIONS(4803), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75468] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_declaration_list, - STATE(2248), 1, + ACTIONS(4785), 1, + anon_sym_LPAREN, + STATE(33), 1, + sym_parenthesized_expression, + STATE(2314), 1, sym_text_interpolation, - [71737] = 4, + [75484] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2249), 1, + STATE(2315), 1, sym_text_interpolation, - ACTIONS(513), 2, - sym__automatic_semicolon, + ACTIONS(4805), 2, anon_sym_SEMI, - [71751] = 5, + anon_sym_COLON, + [75498] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(2762), 1, + anon_sym_RPAREN, + ACTIONS(4807), 1, + anon_sym_EQ, + STATE(2316), 1, + sym_text_interpolation, + [75514] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(228), 1, anon_sym_LBRACE, - STATE(1141), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(568), 1, sym_compound_statement, - STATE(2250), 1, + STATE(2317), 1, sym_text_interpolation, - [71767] = 4, + [75530] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2251), 1, + STATE(2318), 1, sym_text_interpolation, - ACTIONS(4397), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71781] = 5, + ACTIONS(4271), 2, + anon_sym_EQ, + anon_sym_RPAREN, + [75544] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(505), 1, + anon_sym_COLON, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym_compound_statement, - STATE(2252), 1, + STATE(2044), 1, + sym_colon_block, + STATE(2319), 1, sym_text_interpolation, - [71797] = 5, + [75560] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(442), 1, - sym_declaration_list, - STATE(2253), 1, + STATE(2320), 1, sym_text_interpolation, - [71813] = 5, + ACTIONS(465), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75574] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1652), 1, - sym_formal_parameters, - STATE(2254), 1, + ACTIONS(2770), 1, + anon_sym_RPAREN, + ACTIONS(4807), 1, + anon_sym_EQ, + STATE(2321), 1, sym_text_interpolation, - [71829] = 4, + [75590] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2255), 1, + STATE(2322), 1, sym_text_interpolation, - ACTIONS(4508), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71843] = 5, + ACTIONS(4809), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75604] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2220), 1, - sym_variable_name, - STATE(2256), 1, + STATE(2323), 1, sym_text_interpolation, - [71859] = 4, + ACTIONS(4811), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75618] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2257), 1, + STATE(2324), 1, sym_text_interpolation, - ACTIONS(2652), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71873] = 4, + ACTIONS(4813), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75632] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2258), 1, + ACTIONS(4815), 1, + anon_sym_SEMI, + ACTIONS(4817), 1, + sym__automatic_semicolon, + STATE(2325), 1, sym_text_interpolation, - ACTIONS(4329), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [71887] = 5, + [75648] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(2172), 1, - sym_formal_parameters, - STATE(2259), 1, + ACTIONS(3708), 1, + sym_name, + ACTIONS(3712), 1, + sym_grit_metavariable, + STATE(2326), 1, sym_text_interpolation, - [71903] = 5, + [75664] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(403), 1, + anon_sym_COLON, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2594), 1, - anon_sym_RPAREN, - ACTIONS(4511), 1, - anon_sym_EQ, - STATE(2260), 1, + STATE(2327), 1, sym_text_interpolation, - [71919] = 4, + STATE(2681), 1, + sym_colon_block, + [75680] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2261), 1, + ACTIONS(4430), 1, + anon_sym_LPAREN, + STATE(2319), 1, + sym_parenthesized_expression, + STATE(2328), 1, sym_text_interpolation, - ACTIONS(4343), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71933] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [75696] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4513), 1, - sym__new_line, - ACTIONS(4515), 1, - sym_heredoc_end, - STATE(2262), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(2329), 1, sym_text_interpolation, - [71949] = 4, + ACTIONS(4819), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [75710] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2263), 1, + STATE(2330), 1, sym_text_interpolation, - ACTIONS(4517), 2, + ACTIONS(4821), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71963] = 5, + [75724] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1686), 1, - sym_compound_statement, - STATE(2264), 1, + STATE(2331), 1, sym_text_interpolation, - [71979] = 5, + ACTIONS(4823), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75738] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(936), 1, + STATE(1129), 1, sym_declaration_list, - STATE(2265), 1, + STATE(2332), 1, sym_text_interpolation, - [71995] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [75754] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4519), 1, - sym__new_line, - ACTIONS(4521), 1, - sym_heredoc_end, - STATE(2266), 1, - sym_text_interpolation, - [72011] = 5, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(4523), 1, - sym__new_line, - ACTIONS(4525), 1, - sym_heredoc_end, - STATE(2267), 1, + ACTIONS(4785), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym_parenthesized_expression, + STATE(2333), 1, sym_text_interpolation, - [72027] = 5, + [75770] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2268), 1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(456), 1, + sym_declaration_list, + STATE(2334), 1, sym_text_interpolation, - STATE(2341), 1, - sym_variable_name, - [72043] = 5, + [75786] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(949), 1, - sym_compound_statement, - STATE(2269), 1, + ACTIONS(4825), 1, + sym_name, + ACTIONS(4827), 1, + sym_grit_metavariable, + STATE(2335), 1, sym_text_interpolation, - [72059] = 5, + [75802] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2870), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4527), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2270), 1, + ACTIONS(4829), 1, + sym_name, + ACTIONS(4831), 1, + sym_grit_metavariable, + STATE(2336), 1, sym_text_interpolation, - [72075] = 4, + [75818] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2271), 1, + ACTIONS(4833), 1, + sym_name, + ACTIONS(4835), 1, + sym_grit_metavariable, + STATE(2337), 1, sym_text_interpolation, - ACTIONS(4024), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72089] = 4, + [75834] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2272), 1, + ACTIONS(4837), 1, + sym_name, + ACTIONS(4839), 1, + sym_grit_metavariable, + STATE(2338), 1, sym_text_interpolation, - ACTIONS(4529), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72103] = 4, + [75850] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2273), 1, + STATE(2339), 1, sym_text_interpolation, - ACTIONS(4531), 2, + ACTIONS(4841), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72117] = 5, + [75864] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(953), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1170), 1, sym_compound_statement, - STATE(2274), 1, + STATE(2340), 1, sym_text_interpolation, - [72133] = 5, + [75880] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(2099), 1, - sym_formal_parameters, - STATE(2275), 1, + STATE(2341), 1, sym_text_interpolation, - [72149] = 5, + ACTIONS(4843), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [75894] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1675), 1, + STATE(1745), 1, sym_compound_statement, - STATE(2276), 1, + STATE(2342), 1, sym_text_interpolation, - [72165] = 5, + [75910] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, - anon_sym_LPAREN, - STATE(64), 1, - sym_parenthesized_expression, - STATE(2277), 1, + ACTIONS(4845), 1, + sym_name, + STATE(2343), 1, sym_text_interpolation, - [72181] = 5, + STATE(2564), 1, + sym_namespace_name, + [75926] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, + ACTIONS(4785), 1, anon_sym_LPAREN, - STATE(66), 1, + STATE(57), 1, sym_parenthesized_expression, - STATE(2278), 1, + STATE(2344), 1, sym_text_interpolation, - [72197] = 5, + [75942] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4430), 1, anon_sym_LPAREN, - STATE(2279), 1, + STATE(2345), 1, sym_text_interpolation, - STATE(2292), 1, + STATE(2540), 1, sym_parenthesized_expression, - [72213] = 5, + [75958] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4430), 1, anon_sym_LPAREN, - STATE(1964), 1, + STATE(2007), 1, sym_parenthesized_expression, - STATE(2280), 1, - sym_text_interpolation, - [72229] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(228), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, - sym_comment, - STATE(550), 1, - sym_compound_statement, - STATE(2281), 1, + STATE(2346), 1, sym_text_interpolation, - [72245] = 5, + [75974] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(452), 1, + STATE(1130), 1, sym_declaration_list, - STATE(2282), 1, + STATE(2347), 1, sym_text_interpolation, - [72261] = 4, + [75990] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2283), 1, - sym_text_interpolation, - ACTIONS(3907), 2, - anon_sym_EQ, + ACTIONS(2955), 1, anon_sym_RPAREN, - [72275] = 5, + ACTIONS(4807), 1, + anon_sym_EQ, + STATE(2348), 1, + sym_text_interpolation, + [76006] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - STATE(1146), 1, - sym_compound_statement, - STATE(2284), 1, + STATE(2349), 1, sym_text_interpolation, - [72291] = 5, + ACTIONS(4662), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [76020] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(955), 1, - sym_compound_statement, - STATE(2285), 1, + STATE(2350), 1, sym_text_interpolation, - [72307] = 5, + ACTIONS(3538), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [76034] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4498), 1, - anon_sym_LBRACE, - STATE(435), 1, - sym_compound_statement, - STATE(2286), 1, + STATE(2351), 1, sym_text_interpolation, - [72323] = 4, + ACTIONS(4057), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76048] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2287), 1, + STATE(2352), 1, sym_text_interpolation, - ACTIONS(4225), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [72337] = 5, + ACTIONS(4848), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76062] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2157), 1, - sym_variable_name, - STATE(2288), 1, + STATE(2353), 1, sym_text_interpolation, - [72353] = 5, + ACTIONS(4850), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76076] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, - anon_sym_LPAREN, - STATE(55), 1, - sym_parenthesized_expression, - STATE(2289), 1, + STATE(2354), 1, sym_text_interpolation, - [72369] = 5, - ACTIONS(3), 1, + ACTIONS(2640), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76090] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(4852), 1, + sym__new_line, + ACTIONS(4854), 1, + sym_heredoc_end, + STATE(2355), 1, + sym_text_interpolation, + [76106] = 5, + ACTIONS(5), 1, sym_comment, - ACTIONS(3663), 1, - anon_sym_LBRACE, - STATE(502), 1, - sym_enum_declaration_list, - STATE(2290), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4856), 1, + sym__new_line, + ACTIONS(4858), 1, + sym_heredoc_end, + STATE(2356), 1, sym_text_interpolation, - [72385] = 4, + [76122] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2291), 1, + STATE(2357), 1, sym_text_interpolation, - ACTIONS(3311), 2, + ACTIONS(4557), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [72399] = 5, + anon_sym_RPAREN, + [76136] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4533), 1, - anon_sym_LBRACE, - STATE(971), 1, - sym_match_block, - STATE(2292), 1, + STATE(2358), 1, sym_text_interpolation, - [72415] = 5, + ACTIONS(499), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76150] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3690), 1, anon_sym_LBRACE, - STATE(1063), 1, - sym_compound_statement, - STATE(2293), 1, + STATE(449), 1, + sym_declaration_list, + STATE(2359), 1, sym_text_interpolation, - [72431] = 5, + [76166] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - STATE(1725), 1, - sym_declaration_list, - STATE(2294), 1, + ACTIONS(3015), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(4860), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2360), 1, sym_text_interpolation, - [72447] = 4, + [76182] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2295), 1, + STATE(2361), 1, sym_text_interpolation, - ACTIONS(4345), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [72461] = 5, + ACTIONS(4862), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76196] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2213), 1, - sym_variable_name, - STATE(2296), 1, + STATE(2362), 1, sym_text_interpolation, - [72477] = 5, + ACTIONS(4864), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76210] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(517), 1, - anon_sym_COLON, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2102), 1, - sym_colon_block, - STATE(2297), 1, + STATE(2363), 1, sym_text_interpolation, - [72493] = 4, + ACTIONS(4866), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76224] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2298), 1, + ACTIONS(4868), 1, + sym_name, + ACTIONS(4870), 1, + sym_grit_metavariable, + STATE(2364), 1, sym_text_interpolation, - ACTIONS(4535), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72507] = 5, + [76240] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - STATE(1090), 1, - sym_declaration_list, - STATE(2299), 1, + ACTIONS(4872), 1, + sym_name, + ACTIONS(4874), 1, + sym_grit_metavariable, + STATE(2365), 1, sym_text_interpolation, - [72523] = 4, + [76256] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2300), 1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_declaration_list, + STATE(2366), 1, sym_text_interpolation, - ACTIONS(4537), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72537] = 4, + [76272] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2301), 1, + ACTIONS(4876), 1, + sym_name, + ACTIONS(4878), 1, + sym_grit_metavariable, + STATE(2367), 1, sym_text_interpolation, - ACTIONS(4539), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72551] = 5, + [76288] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(4880), 1, sym_name, - STATE(2302), 1, + ACTIONS(4882), 1, + sym_grit_metavariable, + STATE(2368), 1, sym_text_interpolation, - STATE(2485), 1, - sym_namespace_name, - [72567] = 4, + [76304] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2303), 1, + STATE(2369), 1, sym_text_interpolation, - ACTIONS(3965), 2, + ACTIONS(4884), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72581] = 5, + [76318] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3466), 1, anon_sym_LPAREN, - STATE(1583), 1, + STATE(1715), 1, sym_formal_parameters, - STATE(2304), 1, + STATE(2370), 1, sym_text_interpolation, - [72597] = 5, + [76334] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2298), 1, - sym_variable_name, - STATE(2305), 1, + STATE(2371), 1, sym_text_interpolation, - [72613] = 5, + ACTIONS(4886), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76348] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(2066), 1, - sym_formal_parameters, - STATE(2306), 1, + STATE(2372), 1, sym_text_interpolation, - [72629] = 4, + ACTIONS(483), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76362] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2307), 1, + STATE(2373), 1, sym_text_interpolation, - ACTIONS(4544), 2, + ACTIONS(4888), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72643] = 4, + [76376] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2308), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1725), 1, + sym_declaration_list, + STATE(2374), 1, sym_text_interpolation, - ACTIONS(4546), 2, - anon_sym_string, - anon_sym_int, - [72657] = 5, + [76392] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2211), 1, - sym_variable_name, - STATE(2309), 1, + STATE(954), 1, + sym_compound_statement, + STATE(2375), 1, sym_text_interpolation, - [72673] = 5, + [76408] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - STATE(1077), 1, - sym_declaration_list, - STATE(2310), 1, + STATE(2376), 1, sym_text_interpolation, - [72689] = 5, + ACTIONS(2796), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [76422] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_declaration_list, - STATE(2311), 1, + STATE(2377), 1, sym_text_interpolation, - [72705] = 4, + ACTIONS(573), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76436] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2312), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1146), 1, + sym_compound_statement, + STATE(2378), 1, sym_text_interpolation, - ACTIONS(2512), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72719] = 4, + [76452] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2313), 1, + STATE(2379), 1, sym_text_interpolation, - ACTIONS(4548), 2, + ACTIONS(4516), 2, anon_sym_LBRACE, - anon_sym_COLON, - [72733] = 5, + anon_sym_EQ_GT, + [76466] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4465), 1, - sym_name, - STATE(2314), 1, + ACTIONS(4890), 1, + anon_sym_LBRACE, + STATE(429), 1, + sym_compound_statement, + STATE(2380), 1, sym_text_interpolation, - STATE(2487), 1, - sym_namespace_name, - [72749] = 5, + [76482] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2750), 1, - anon_sym_RPAREN, - ACTIONS(4511), 1, - anon_sym_EQ, - STATE(2315), 1, + STATE(1728), 1, + sym_compound_statement, + STATE(2381), 1, sym_text_interpolation, - [72765] = 5, + [76498] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(2382), 1, + sym_text_interpolation, + ACTIONS(4892), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76512] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4894), 1, anon_sym_LPAREN, - STATE(2307), 1, - sym_parenthesized_expression, - STATE(2316), 1, + STATE(2383), 1, sym_text_interpolation, - [72781] = 4, + STATE(2478), 1, + sym_parenthesized_expression, + [76528] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2317), 1, + STATE(2384), 1, sym_text_interpolation, - ACTIONS(2548), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72795] = 4, + ACTIONS(4896), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76542] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2318), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1729), 1, + sym_declaration_list, + STATE(2385), 1, sym_text_interpolation, - ACTIONS(4552), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72809] = 5, + [76558] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, - anon_sym_LPAREN, - STATE(81), 1, - sym_parenthesized_expression, - STATE(2319), 1, + STATE(2386), 1, sym_text_interpolation, - [72825] = 4, + ACTIONS(4898), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76572] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2320), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1730), 1, + sym_declaration_list, + STATE(2387), 1, sym_text_interpolation, - ACTIONS(4281), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [72839] = 4, + [76588] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2321), 1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(447), 1, + sym_declaration_list, + STATE(2388), 1, sym_text_interpolation, - ACTIONS(4147), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72853] = 4, + [76604] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2322), 1, + STATE(2389), 1, sym_text_interpolation, - ACTIONS(4554), 2, + ACTIONS(4900), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72867] = 5, + [76618] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1912), 1, - sym_formal_parameters, - STATE(2323), 1, + ACTIONS(4902), 1, + sym_name, + ACTIONS(4904), 1, + sym_grit_metavariable, + STATE(2390), 1, sym_text_interpolation, - [72883] = 5, + [76634] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2163), 1, - sym_variable_name, - STATE(2324), 1, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(2043), 1, + sym_enum_declaration_list, + STATE(2391), 1, sym_text_interpolation, - [72899] = 5, + [76650] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(1100), 1, + STATE(1138), 1, sym_compound_statement, - STATE(2325), 1, + STATE(2392), 1, sym_text_interpolation, - [72915] = 4, + [76666] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - STATE(2326), 1, + STATE(980), 1, + sym_compound_statement, + STATE(2393), 1, sym_text_interpolation, - ACTIONS(2546), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [72929] = 4, + [76682] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2327), 1, + ACTIONS(4751), 1, + sym_name, + STATE(2394), 1, sym_text_interpolation, - ACTIONS(4556), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72943] = 5, + STATE(2652), 1, + sym_namespace_name, + [76698] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3469), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(464), 1, - sym_declaration_list, - STATE(2328), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(971), 1, + sym_compound_statement, + STATE(2395), 1, sym_text_interpolation, - [72959] = 4, + [76714] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2329), 1, + ACTIONS(4906), 1, + sym_name, + ACTIONS(4908), 1, + sym_grit_metavariable, + STATE(2396), 1, sym_text_interpolation, - ACTIONS(4558), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72973] = 4, + [76730] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - STATE(2330), 1, + STATE(1001), 1, + sym_compound_statement, + STATE(2397), 1, sym_text_interpolation, - ACTIONS(4560), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [72987] = 4, + [76746] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2331), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1739), 1, + sym_declaration_list, + STATE(2398), 1, sym_text_interpolation, - ACTIONS(4562), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73001] = 4, + [76762] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2332), 1, + ACTIONS(4785), 1, + anon_sym_LPAREN, + STATE(54), 1, + sym_parenthesized_expression, + STATE(2399), 1, sym_text_interpolation, - ACTIONS(4564), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73015] = 4, + [76778] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2333), 1, + STATE(2400), 1, sym_text_interpolation, - ACTIONS(4566), 2, - sym__automatic_semicolon, + ACTIONS(2640), 2, anon_sym_SEMI, - [73029] = 4, + anon_sym_RPAREN, + [76792] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2334), 1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym_declaration_list, + STATE(2401), 1, sym_text_interpolation, - ACTIONS(505), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73043] = 4, + [76808] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2335), 1, + STATE(2402), 1, sym_text_interpolation, - ACTIONS(497), 2, + ACTIONS(4910), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73057] = 5, + [76822] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - STATE(1679), 1, - sym_declaration_list, - STATE(2336), 1, + ACTIONS(4912), 1, + anon_sym_SEMI, + ACTIONS(4914), 1, + sym__automatic_semicolon, + STATE(2403), 1, sym_text_interpolation, - [73073] = 5, + [76838] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1607), 1, - sym_formal_parameters, - STATE(2337), 1, + STATE(2404), 1, sym_text_interpolation, - [73089] = 5, + ACTIONS(4916), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [76852] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3466), 1, anon_sym_LPAREN, - STATE(1577), 1, + STATE(1630), 1, sym_formal_parameters, - STATE(2338), 1, - sym_text_interpolation, - [73105] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, - sym_comment, - STATE(922), 1, - sym_compound_statement, - STATE(2339), 1, + STATE(2405), 1, sym_text_interpolation, - [73121] = 5, + [76868] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3451), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(1140), 1, - sym_compound_statement, - STATE(2340), 1, - sym_text_interpolation, - [73137] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2341), 1, + STATE(1752), 1, + sym_compound_statement, + STATE(2406), 1, sym_text_interpolation, - ACTIONS(4568), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73151] = 5, + [76884] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2215), 1, - sym_parenthesized_expression, - STATE(2342), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2285), 1, + sym_variable_name, + STATE(2407), 1, sym_text_interpolation, - [73167] = 4, + [76900] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2343), 1, + STATE(2408), 1, sym_text_interpolation, - ACTIONS(3461), 2, + ACTIONS(4918), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73181] = 5, + [76914] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4570), 1, - anon_sym_SEMI, - ACTIONS(4572), 1, - sym__automatic_semicolon, - STATE(2344), 1, + STATE(2409), 1, sym_text_interpolation, - [73197] = 4, + ACTIONS(4920), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76928] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2345), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2283), 1, + sym_variable_name, + STATE(2410), 1, sym_text_interpolation, - ACTIONS(4574), 2, - anon_sym_string, - anon_sym_int, - [73211] = 5, + [76944] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3663), 1, - anon_sym_LBRACE, - STATE(527), 1, - sym_enum_declaration_list, - STATE(2346), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1978), 1, + sym_formal_parameters, + STATE(2411), 1, sym_text_interpolation, - [73227] = 4, + [76960] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - STATE(2347), 1, + STATE(963), 1, + sym_compound_statement, + STATE(2412), 1, sym_text_interpolation, - ACTIONS(471), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73241] = 5, + [76976] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1592), 1, - sym_formal_parameters, - STATE(2348), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1758), 1, + sym_declaration_list, + STATE(2413), 1, sym_text_interpolation, - [73257] = 4, + [76992] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2349), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1761), 1, + sym_declaration_list, + STATE(2414), 1, sym_text_interpolation, - ACTIONS(4576), 2, - anon_sym_string, - anon_sym_int, - [73271] = 4, + [77008] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2350), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1686), 1, + sym_formal_parameters, + STATE(2415), 1, sym_text_interpolation, - ACTIONS(4160), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73285] = 5, + [77024] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1672), 1, + STATE(969), 1, sym_compound_statement, - STATE(2351), 1, + STATE(2416), 1, sym_text_interpolation, - [73301] = 5, + [77040] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(449), 1, - sym_declaration_list, - STATE(2352), 1, + ACTIONS(4922), 1, + sym_name, + ACTIONS(4924), 1, + sym_grit_metavariable, + STATE(2417), 1, sym_text_interpolation, - [73317] = 5, + [77056] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4498), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(429), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(964), 1, sym_compound_statement, - STATE(2353), 1, + STATE(2418), 1, sym_text_interpolation, - [73333] = 4, + [77072] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - STATE(2354), 1, + STATE(978), 1, + sym_compound_statement, + STATE(2419), 1, sym_text_interpolation, - ACTIONS(4578), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73347] = 4, + [77088] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2355), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2216), 1, + sym_variable_name, + STATE(2420), 1, sym_text_interpolation, - ACTIONS(4580), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73361] = 5, + [77104] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(959), 1, - sym_declaration_list, - STATE(2356), 1, + STATE(2421), 1, sym_text_interpolation, - [73377] = 5, + ACTIONS(4926), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [77118] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3905), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(565), 1, + STATE(1775), 1, sym_declaration_list, - STATE(2357), 1, + STATE(2422), 1, sym_text_interpolation, - [73393] = 4, + [77134] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2358), 1, + STATE(2423), 1, sym_text_interpolation, - ACTIONS(4582), 2, + ACTIONS(4928), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73407] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - STATE(1669), 1, - sym_declaration_list, - STATE(2359), 1, - sym_text_interpolation, - [73423] = 5, + [77148] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2598), 1, - anon_sym_RPAREN, - ACTIONS(4511), 1, - anon_sym_EQ, - STATE(2360), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2278), 1, + sym_variable_name, + STATE(2424), 1, sym_text_interpolation, - [73439] = 4, + [77164] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2361), 1, + STATE(2425), 1, sym_text_interpolation, - ACTIONS(4584), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73453] = 5, + ACTIONS(4539), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [77178] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(910), 1, + STATE(1784), 1, sym_declaration_list, - STATE(2362), 1, + STATE(2426), 1, sym_text_interpolation, - [73469] = 5, + [77194] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_BSLASH, - STATE(2363), 1, + ACTIONS(2790), 1, + anon_sym_RPAREN, + ACTIONS(4807), 1, + anon_sym_EQ, + STATE(2427), 1, sym_text_interpolation, - STATE(2456), 1, - aux_sym_namespace_name_repeat1, - [73485] = 5, + [77210] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(2061), 1, - sym_formal_parameters, - STATE(2364), 1, + STATE(2428), 1, + sym_text_interpolation, + ACTIONS(4930), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [77224] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4932), 1, + sym__new_line, + ACTIONS(4934), 1, + sym_heredoc_end, + STATE(2429), 1, sym_text_interpolation, - [73501] = 5, + [77240] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_RPAREN, - ACTIONS(4511), 1, - anon_sym_EQ, - STATE(2365), 1, + STATE(2430), 1, sym_text_interpolation, - [73517] = 5, + ACTIONS(4936), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [77254] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(4199), 1, anon_sym_LBRACE, - STATE(1668), 1, + STATE(537), 1, sym_declaration_list, - STATE(2366), 1, + STATE(2431), 1, sym_text_interpolation, - [73533] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + [77270] = 5, + ACTIONS(5), 1, sym_comment, - STATE(2367), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4938), 1, + sym__new_line, + ACTIONS(4940), 1, + sym_heredoc_end, + STATE(2432), 1, sym_text_interpolation, - ACTIONS(4586), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73547] = 4, + [77286] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2368), 1, + STATE(2433), 1, sym_text_interpolation, - ACTIONS(4588), 2, + ACTIONS(4225), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73561] = 5, + [77300] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3547), 1, + ACTIONS(3690), 1, anon_sym_LBRACE, - STATE(2022), 1, - sym_enum_declaration_list, - STATE(2369), 1, + STATE(446), 1, + sym_declaration_list, + STATE(2434), 1, sym_text_interpolation, - [73577] = 4, + [77316] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2370), 1, - sym_text_interpolation, - ACTIONS(4590), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [73591] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(3616), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, - sym_comment, - STATE(923), 1, - sym_compound_statement, - STATE(2371), 1, + STATE(1005), 1, + sym_declaration_list, + STATE(2435), 1, sym_text_interpolation, - [73607] = 5, + [77332] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1621), 1, - sym_formal_parameters, - STATE(2372), 1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(999), 1, + sym_declaration_list, + STATE(2436), 1, sym_text_interpolation, - [73623] = 5, + [77348] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4506), 1, - anon_sym_LPAREN, - ACTIONS(4592), 1, - anon_sym_RPAREN, - STATE(2373), 1, + STATE(2437), 1, sym_text_interpolation, - [73639] = 4, + ACTIONS(4942), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77362] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2374), 1, + ACTIONS(4944), 1, + anon_sym_SEMI, + ACTIONS(4946), 1, + sym__automatic_semicolon, + STATE(2438), 1, sym_text_interpolation, - ACTIONS(4594), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73653] = 4, + [77378] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2375), 1, + STATE(2439), 1, sym_text_interpolation, - ACTIONS(4596), 2, + ACTIONS(4948), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73667] = 5, + [77392] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3903), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + STATE(552), 1, + sym_enum_declaration_list, + STATE(2440), 1, + sym_text_interpolation, + [77408] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - STATE(924), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1112), 1, sym_compound_statement, - STATE(2376), 1, + STATE(2441), 1, sym_text_interpolation, - [73683] = 5, + [77424] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(447), 1, - sym_declaration_list, - STATE(2377), 1, + STATE(1139), 1, + sym_compound_statement, + STATE(2442), 1, sym_text_interpolation, - [73699] = 4, + [77440] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2378), 1, + STATE(2443), 1, sym_text_interpolation, - ACTIONS(2512), 2, + ACTIONS(4950), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73713] = 5, + [77454] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3663), 1, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(510), 1, - sym_enum_declaration_list, - STATE(2379), 1, + STATE(1185), 1, + sym_compound_statement, + STATE(2444), 1, sym_text_interpolation, - [73729] = 5, + [77470] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(1107), 1, - sym_declaration_list, - STATE(2380), 1, + STATE(1118), 1, + sym_compound_statement, + STATE(2445), 1, sym_text_interpolation, - [73745] = 4, + [77486] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2381), 1, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(2176), 1, + sym_enum_declaration_list, + STATE(2446), 1, sym_text_interpolation, - ACTIONS(4598), 2, - anon_sym_string, - anon_sym_int, - [73759] = 4, + [77502] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2382), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1087), 1, + sym_compound_statement, + STATE(2447), 1, sym_text_interpolation, - ACTIONS(4600), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73773] = 5, + [77518] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3905), 1, + STATE(976), 1, + sym_compound_statement, + STATE(2448), 1, + sym_text_interpolation, + [77534] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(488), 1, - sym_declaration_list, - STATE(2383), 1, + STATE(1142), 1, + sym_compound_statement, + STATE(2449), 1, sym_text_interpolation, - [73789] = 4, + [77550] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2384), 1, + STATE(2450), 1, sym_text_interpolation, - ACTIONS(3265), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73803] = 5, + ACTIONS(4952), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77564] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(926), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1125), 1, sym_compound_statement, - STATE(2385), 1, + STATE(2451), 1, sym_text_interpolation, - [73819] = 5, + [77580] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3371), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(1661), 1, - sym_declaration_list, - STATE(2386), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(995), 1, + sym_compound_statement, + STATE(2452), 1, sym_text_interpolation, - [73835] = 4, + [77596] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - STATE(2387), 1, + STATE(1013), 1, + sym_compound_statement, + STATE(2453), 1, sym_text_interpolation, - ACTIONS(4190), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73849] = 5, + [77612] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3690), 1, anon_sym_LBRACE, - STATE(1689), 1, + STATE(444), 1, sym_declaration_list, - STATE(2388), 1, + STATE(2454), 1, sym_text_interpolation, - [73865] = 5, + [77628] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(927), 1, - sym_declaration_list, - STATE(2389), 1, + ACTIONS(4954), 1, + sym_name, + ACTIONS(4956), 1, + sym_grit_metavariable, + STATE(2455), 1, sym_text_interpolation, - [73881] = 4, + [77644] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2390), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1799), 1, + sym_declaration_list, + STATE(2456), 1, sym_text_interpolation, - ACTIONS(4602), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73895] = 5, + [77660] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4604), 1, - anon_sym_SEMI, - ACTIONS(4606), 1, - sym__automatic_semicolon, - STATE(2391), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(2244), 1, + sym_formal_parameters, + STATE(2457), 1, sym_text_interpolation, - [73911] = 4, + [77676] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2392), 1, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(2218), 1, + sym_enum_declaration_list, + STATE(2458), 1, sym_text_interpolation, - ACTIONS(4608), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73925] = 5, + [77692] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(1712), 1, + STATE(993), 1, sym_compound_statement, - STATE(2393), 1, + STATE(2459), 1, sym_text_interpolation, - [73941] = 4, + [77708] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - STATE(2394), 1, - sym_text_interpolation, - ACTIONS(4610), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73955] = 4, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - STATE(2395), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1145), 1, + sym_compound_statement, + STATE(2460), 1, sym_text_interpolation, - ACTIONS(3992), 2, - sym_heredoc_end, - sym__new_line, - [73969] = 5, + [77724] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3690), 1, anon_sym_LBRACE, - STATE(2175), 1, + STATE(450), 1, sym_declaration_list, - STATE(2396), 1, + STATE(2461), 1, sym_text_interpolation, - [73985] = 4, + [77740] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2397), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1809), 1, + sym_declaration_list, + STATE(2462), 1, sym_text_interpolation, - ACTIONS(4612), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [73999] = 5, + [77756] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(930), 1, - sym_compound_statement, - STATE(2398), 1, + ACTIONS(4958), 1, + anon_sym_LPAREN, + ACTIONS(4960), 1, + anon_sym_RPAREN, + STATE(2463), 1, sym_text_interpolation, - [74015] = 5, + [77772] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - STATE(1081), 1, - sym_compound_statement, - STATE(2399), 1, + STATE(2464), 1, sym_text_interpolation, - [74031] = 4, + ACTIONS(4548), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [77786] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2400), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(2240), 1, + sym_formal_parameters, + STATE(2465), 1, sym_text_interpolation, - ACTIONS(4614), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74045] = 4, + [77802] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2401), 1, + ACTIONS(4962), 1, + sym_name, + ACTIONS(4964), 1, + sym_grit_metavariable, + STATE(2466), 1, sym_text_interpolation, - ACTIONS(4616), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74059] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, + [77818] = 4, + ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_LBRACE, - STATE(1729), 1, - sym_declaration_list, - STATE(2402), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + STATE(2467), 1, sym_text_interpolation, - [74075] = 5, + ACTIONS(4212), 2, + sym_heredoc_end, + sym__new_line, + [77832] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1999), 1, - sym_formal_parameters, - STATE(2403), 1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(983), 1, + sym_declaration_list, + STATE(2468), 1, sym_text_interpolation, - [74091] = 5, + [77848] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, - anon_sym_LPAREN, - STATE(39), 1, - sym_parenthesized_expression, - STATE(2404), 1, + STATE(2469), 1, sym_text_interpolation, - [74107] = 5, + ACTIONS(2742), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [77862] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3616), 1, anon_sym_LBRACE, - STATE(1730), 1, + STATE(981), 1, sym_declaration_list, - STATE(2405), 1, + STATE(2470), 1, sym_text_interpolation, - [74123] = 5, + [77878] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(932), 1, - sym_compound_statement, - STATE(2406), 1, + ACTIONS(3690), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, + STATE(2471), 1, sym_text_interpolation, - [74139] = 5, + [77894] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4618), 1, - anon_sym_LBRACE, - STATE(1072), 1, - sym_match_block, - STATE(2407), 1, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(4958), 1, + anon_sym_LPAREN, + STATE(2472), 1, sym_text_interpolation, - [74155] = 5, + [77910] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4478), 1, - anon_sym_LPAREN, - STATE(1737), 1, - sym_formal_parameters, - STATE(2408), 1, + STATE(2473), 1, sym_text_interpolation, - [74171] = 5, + ACTIONS(3844), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77924] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(935), 1, - sym_compound_statement, - STATE(2409), 1, + STATE(2474), 1, sym_text_interpolation, - [74187] = 5, + ACTIONS(4966), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77938] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(461), 1, - sym_declaration_list, - STATE(2410), 1, + STATE(2475), 1, sym_text_interpolation, - [74203] = 5, + ACTIONS(4968), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77952] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_DOLLAR, - STATE(2272), 1, - sym_variable_name, - STATE(2411), 1, + STATE(2476), 1, sym_text_interpolation, - [74219] = 5, + ACTIONS(2714), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77966] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, + ACTIONS(4785), 1, anon_sym_LPAREN, - STATE(23), 1, + STATE(83), 1, sym_parenthesized_expression, - STATE(2412), 1, + STATE(2477), 1, sym_text_interpolation, - [74235] = 5, + [77982] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - STATE(1069), 1, - sym_compound_statement, - STATE(2413), 1, + STATE(2478), 1, sym_text_interpolation, - [74251] = 5, + ACTIONS(4970), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77996] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - STATE(1120), 1, - sym_compound_statement, - STATE(2414), 1, + ACTIONS(4785), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_parenthesized_expression, + STATE(2479), 1, sym_text_interpolation, - [74267] = 5, + [78012] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(939), 1, - sym_compound_statement, - STATE(2415), 1, + ACTIONS(4785), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, + STATE(2480), 1, + sym_text_interpolation, + [78028] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4972), 1, + sym__new_line, + ACTIONS(4974), 1, + sym_heredoc_end, + STATE(2481), 1, sym_text_interpolation, - [74283] = 4, + [78044] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2416), 1, + STATE(2482), 1, sym_text_interpolation, - ACTIONS(4620), 2, + ACTIONS(4976), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74297] = 4, + [78058] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2417), 1, + ACTIONS(4978), 1, + sym_name, + ACTIONS(4980), 1, + sym_grit_metavariable, + STATE(2483), 1, + sym_text_interpolation, + [78074] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, + sym_comment, + STATE(2484), 1, sym_text_interpolation, - ACTIONS(4622), 2, + ACTIONS(4982), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74311] = 4, + [78088] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2418), 1, + STATE(2485), 1, sym_text_interpolation, - ACTIONS(4116), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [74325] = 5, + ACTIONS(4984), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [78102] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(972), 1, - sym_compound_statement, - STATE(2419), 1, + STATE(2486), 1, sym_text_interpolation, - [74341] = 5, + ACTIONS(4986), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [78116] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3547), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(1931), 1, - sym_enum_declaration_list, - STATE(2420), 1, + STATE(1771), 1, + sym_declaration_list, + STATE(2487), 1, sym_text_interpolation, - [74357] = 4, + [78132] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2421), 1, + STATE(2488), 1, sym_text_interpolation, - ACTIONS(4624), 2, + ACTIONS(4988), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74371] = 5, + [78146] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3680), 1, anon_sym_LBRACE, - STATE(1656), 1, - sym_declaration_list, - STATE(2422), 1, + STATE(1157), 1, + sym_compound_statement, + STATE(2489), 1, sym_text_interpolation, - [74387] = 5, + [78162] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4465), 1, - sym_name, - STATE(2423), 1, + STATE(968), 1, + sym_compound_statement, + STATE(2490), 1, sym_text_interpolation, - STATE(2483), 1, - sym_namespace_name, - [74403] = 4, + [78178] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2424), 1, + STATE(2491), 1, sym_text_interpolation, - ACTIONS(4626), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74417] = 4, + ACTIONS(1783), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [78192] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2425), 1, + STATE(2492), 1, sym_text_interpolation, - ACTIONS(4628), 2, + ACTIONS(4410), 2, anon_sym_COMMA, anon_sym_RBRACK, - [74431] = 5, + [78206] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(3371), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(1741), 1, - sym_declaration_list, - STATE(2426), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(966), 1, + sym_compound_statement, + STATE(2493), 1, sym_text_interpolation, - [74447] = 5, + [78222] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(4990), 1, anon_sym_LBRACE, - STATE(1676), 1, - sym_declaration_list, - STATE(2427), 1, + STATE(1181), 1, + sym_match_block, + STATE(2494), 1, sym_text_interpolation, - [74463] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(11), 1, + [78238] = 5, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4631), 1, - sym__new_line, - ACTIONS(4633), 1, - sym_heredoc_end, - STATE(2428), 1, - sym_text_interpolation, - [74479] = 5, - ACTIONS(5), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(11), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2125), 1, + sym_variable_name, + STATE(2495), 1, + sym_text_interpolation, + [78254] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(4635), 1, - sym__new_line, - ACTIONS(4637), 1, - sym_heredoc_end, - STATE(2429), 1, + ACTIONS(1656), 1, + sym_comment, + STATE(2496), 1, sym_text_interpolation, - [74495] = 5, + ACTIONS(4275), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [78268] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2145), 1, + STATE(951), 1, sym_compound_statement, - STATE(2430), 1, + STATE(2497), 1, sym_text_interpolation, - [74511] = 5, + [78284] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3269), 1, - anon_sym_LPAREN, - STATE(1598), 1, - sym_formal_parameters, - STATE(2431), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1152), 1, + sym_declaration_list, + STATE(2498), 1, sym_text_interpolation, - [74527] = 5, + [78300] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(228), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(528), 1, - sym_compound_statement, - STATE(2432), 1, + STATE(2499), 1, sym_text_interpolation, - [74543] = 5, + ACTIONS(4279), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [78314] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(964), 1, - sym_compound_statement, - STATE(2433), 1, + STATE(2500), 1, sym_text_interpolation, - [74559] = 4, + ACTIONS(3580), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [78328] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2434), 1, + STATE(2501), 1, sym_text_interpolation, - ACTIONS(2518), 2, - anon_sym_SEMI, + ACTIONS(4992), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [74573] = 5, + [78342] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_declaration_list, - STATE(2435), 1, + STATE(2502), 1, sym_text_interpolation, - [74589] = 5, + ACTIONS(4994), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [78356] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3610), 1, anon_sym_LBRACE, - STATE(944), 1, + STATE(1155), 1, sym_declaration_list, - STATE(2436), 1, + STATE(2503), 1, + sym_text_interpolation, + [78372] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(4996), 1, + sym__new_line, + ACTIONS(4998), 1, + sym_heredoc_end, + STATE(2504), 1, sym_text_interpolation, - [74605] = 5, + [78388] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4639), 1, - sym_name, - STATE(1772), 1, - sym_namespace_name, - STATE(2437), 1, + STATE(2227), 1, + sym_compound_statement, + STATE(2505), 1, sym_text_interpolation, - [74621] = 4, + [78404] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2438), 1, + ACTIONS(4894), 1, + anon_sym_LPAREN, + STATE(2339), 1, + sym_parenthesized_expression, + STATE(2506), 1, sym_text_interpolation, - ACTIONS(4641), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74635] = 5, + [78420] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LBRACE, - STATE(1062), 1, - sym_compound_statement, - STATE(2439), 1, + STATE(2507), 1, sym_text_interpolation, - [74651] = 5, + ACTIONS(5000), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [78434] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3663), 1, + ACTIONS(4890), 1, anon_sym_LBRACE, - STATE(470), 1, - sym_enum_declaration_list, - STATE(2440), 1, + STATE(431), 1, + sym_compound_statement, + STATE(2508), 1, sym_text_interpolation, - [74667] = 5, + [78450] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2870), 1, - aux_sym__arrow_function_header_token1, - ACTIONS(4643), 1, - aux_sym_namespace_use_declaration_token2, - STATE(2441), 1, + STATE(2509), 1, sym_text_interpolation, - [74683] = 5, + ACTIONS(4457), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [78464] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(457), 1, - sym_declaration_list, - STATE(2442), 1, + ACTIONS(3820), 1, + sym_name, + ACTIONS(3824), 1, + sym_grit_metavariable, + STATE(2510), 1, sym_text_interpolation, - [74699] = 4, + [78480] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2443), 1, + STATE(2511), 1, sym_text_interpolation, - ACTIONS(4645), 2, + ACTIONS(3922), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74713] = 5, + [78494] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(960), 1, - sym_compound_statement, - STATE(2444), 1, + ACTIONS(4785), 1, + anon_sym_LPAREN, + STATE(29), 1, + sym_parenthesized_expression, + STATE(2512), 1, sym_text_interpolation, - [74729] = 5, + [78510] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4457), 1, + ACTIONS(5003), 1, anon_sym_LPAREN, - STATE(25), 1, - sym_parenthesized_expression, - STATE(2445), 1, + STATE(1786), 1, + sym_formal_parameters, + STATE(2513), 1, sym_text_interpolation, - [74745] = 4, + [78526] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2446), 1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(2115), 1, + sym_declaration_list, + STATE(2514), 1, sym_text_interpolation, - ACTIONS(4647), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [74759] = 4, + [78542] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2447), 1, + ACTIONS(4890), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_compound_statement, + STATE(2515), 1, sym_text_interpolation, - ACTIONS(4649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74773] = 5, + [78558] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2644), 1, - anon_sym_RPAREN, - ACTIONS(4511), 1, - anon_sym_EQ, - STATE(2448), 1, + ACTIONS(5005), 1, + anon_sym_BSLASH, + STATE(1737), 1, + aux_sym_namespace_name_repeat1, + STATE(2516), 1, sym_text_interpolation, - [74789] = 4, + [78574] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2449), 1, + STATE(2517), 1, sym_text_interpolation, - ACTIONS(4651), 2, + ACTIONS(5008), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74803] = 5, + [78588] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4653), 1, - anon_sym_SEMI, - ACTIONS(4655), 1, - sym__automatic_semicolon, - STATE(2450), 1, + ACTIONS(5010), 1, + sym_name, + ACTIONS(5012), 1, + sym_grit_metavariable, + STATE(2518), 1, sym_text_interpolation, - [74819] = 5, + [78604] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(401), 1, - anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(951), 1, - sym_compound_statement, - STATE(2451), 1, + ACTIONS(5014), 1, + sym_name, + ACTIONS(5016), 1, + sym_grit_metavariable, + STATE(2519), 1, sym_text_interpolation, - [74835] = 4, + [78620] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2452), 1, + STATE(2520), 1, sym_text_interpolation, - ACTIONS(4657), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [74849] = 5, + ACTIONS(5018), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [78634] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3547), 1, - anon_sym_LBRACE, - STATE(1942), 1, - sym_enum_declaration_list, - STATE(2453), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1704), 1, + sym_formal_parameters, + STATE(2521), 1, sym_text_interpolation, - [74865] = 5, + [78650] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(439), 1, - sym_declaration_list, - STATE(2454), 1, + STATE(2522), 1, sym_text_interpolation, - [74881] = 4, + ACTIONS(5020), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [78664] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2455), 1, + STATE(2523), 1, sym_text_interpolation, - ACTIONS(4659), 2, + ACTIONS(5022), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74895] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(4661), 1, - anon_sym_BSLASH, - STATE(1714), 1, - aux_sym_namespace_name_repeat1, - STATE(2456), 1, - sym_text_interpolation, - [74911] = 5, + [78678] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3690), 1, anon_sym_LBRACE, - STATE(1103), 1, - sym_compound_statement, - STATE(2457), 1, + STATE(439), 1, + sym_declaration_list, + STATE(2524), 1, sym_text_interpolation, - [74927] = 5, + [78694] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3451), 1, + ACTIONS(3690), 1, anon_sym_LBRACE, - STATE(1109), 1, - sym_compound_statement, - STATE(2458), 1, + STATE(437), 1, + sym_declaration_list, + STATE(2525), 1, sym_text_interpolation, - [74943] = 4, + [78710] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_COLON_COLON, - STATE(2459), 1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(953), 1, + sym_declaration_list, + STATE(2526), 1, sym_text_interpolation, - [74956] = 4, + [78726] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4664), 1, - anon_sym_COLON_COLON, - STATE(2460), 1, + ACTIONS(3015), 1, + aux_sym__arrow_function_header_token1, + ACTIONS(5024), 1, + aux_sym_namespace_use_declaration_token2, + STATE(2527), 1, sym_text_interpolation, - [74969] = 4, + [78742] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4666), 1, - anon_sym_RPAREN, - STATE(2461), 1, + ACTIONS(5026), 1, + sym_name, + ACTIONS(5028), 1, + sym_grit_metavariable, + STATE(2528), 1, sym_text_interpolation, - [74982] = 4, + [78758] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4231), 1, - sym_name, - STATE(2462), 1, + ACTIONS(3903), 1, + anon_sym_LBRACE, + STATE(518), 1, + sym_enum_declaration_list, + STATE(2529), 1, sym_text_interpolation, - [74995] = 4, + [78774] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4668), 1, + ACTIONS(5030), 1, sym_name, - STATE(2463), 1, + ACTIONS(5032), 1, + sym_grit_metavariable, + STATE(2530), 1, sym_text_interpolation, - [75008] = 4, + [78790] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4670), 1, - sym_heredoc_start, - STATE(2464), 1, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(520), 1, + sym_declaration_list, + STATE(2531), 1, sym_text_interpolation, - [75021] = 4, + [78806] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4672), 1, - sym_heredoc_start, - STATE(2465), 1, + STATE(2532), 1, sym_text_interpolation, - [75034] = 4, + ACTIONS(5034), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [78820] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4674), 1, - anon_sym_RPAREN, - STATE(2466), 1, + STATE(1736), 1, + sym_compound_statement, + STATE(2533), 1, sym_text_interpolation, - [75047] = 4, + [78836] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(889), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2467), 1, + STATE(2534), 1, sym_text_interpolation, - [75060] = 4, + ACTIONS(5036), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [78850] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4676), 1, - aux_sym_class_declaration_token1, - STATE(2468), 1, + STATE(2535), 1, sym_text_interpolation, - [75073] = 4, + ACTIONS(5038), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [78864] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, - sym_comment, - ACTIONS(2644), 1, - anon_sym_RPAREN, - STATE(2469), 1, + ACTIONS(228), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, + sym_comment, + STATE(540), 1, + sym_compound_statement, + STATE(2536), 1, sym_text_interpolation, - [75086] = 4, + [78880] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4678), 1, - anon_sym_RPAREN, - STATE(2470), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1691), 1, + sym_formal_parameters, + STATE(2537), 1, sym_text_interpolation, - [75099] = 4, + [78896] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4680), 1, - anon_sym_COLON_COLON, - STATE(2471), 1, + ACTIONS(2734), 1, + anon_sym_RPAREN, + ACTIONS(4807), 1, + anon_sym_EQ, + STATE(2538), 1, sym_text_interpolation, - [75112] = 4, + [78912] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(891), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2472), 1, + STATE(2539), 1, sym_text_interpolation, - [75125] = 4, + ACTIONS(4277), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [78926] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4682), 1, - anon_sym_EQ, - STATE(2473), 1, + ACTIONS(5040), 1, + anon_sym_LBRACE, + STATE(977), 1, + sym_match_block, + STATE(2540), 1, sym_text_interpolation, - [75138] = 4, + [78942] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4684), 1, - anon_sym_RPAREN, - STATE(2474), 1, + STATE(2541), 1, sym_text_interpolation, - [75151] = 4, + ACTIONS(5042), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [78956] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4686), 1, - anon_sym_EQ_GT, - STATE(2475), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(1708), 1, + sym_formal_parameters, + STATE(2542), 1, sym_text_interpolation, - [75164] = 4, + [78972] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4688), 1, - anon_sym_EQ_GT, - STATE(2476), 1, + ACTIONS(3680), 1, + anon_sym_LBRACE, + STATE(1189), 1, + sym_compound_statement, + STATE(2543), 1, sym_text_interpolation, - [75177] = 4, + [78988] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4690), 1, - anon_sym_EQ_GT, - STATE(2477), 1, + STATE(2544), 1, sym_text_interpolation, - [75190] = 4, + ACTIONS(5044), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [79002] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4692), 1, - sym_name, - STATE(2478), 1, + ACTIONS(3610), 1, + anon_sym_LBRACE, + STATE(1740), 1, + sym_declaration_list, + STATE(2545), 1, sym_text_interpolation, - [75203] = 4, + [79018] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4694), 1, - sym_name, - STATE(2479), 1, + ACTIONS(3466), 1, + anon_sym_LPAREN, + STATE(2123), 1, + sym_formal_parameters, + STATE(2546), 1, sym_text_interpolation, - [75216] = 4, + [79034] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4235), 1, - aux_sym_class_declaration_token1, - STATE(2480), 1, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(2000), 1, + sym_enum_declaration_list, + STATE(2547), 1, sym_text_interpolation, - [75229] = 4, + [79050] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4696), 1, - aux_sym__arrow_function_header_token1, - STATE(2481), 1, + ACTIONS(3616), 1, + anon_sym_LBRACE, + STATE(2021), 1, + sym_declaration_list, + STATE(2548), 1, sym_text_interpolation, - [75242] = 4, + [79066] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4511), 1, - anon_sym_EQ, - STATE(2482), 1, + STATE(2549), 1, sym_text_interpolation, - [75255] = 4, + ACTIONS(5046), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [79080] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4698), 1, - anon_sym_BSLASH, - STATE(2483), 1, + ACTIONS(4751), 1, + sym_name, + STATE(2550), 1, sym_text_interpolation, - [75268] = 4, + STATE(2627), 1, + sym_namespace_name, + [79096] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4700), 1, - anon_sym_COLON_COLON, - STATE(2484), 1, + STATE(987), 1, + sym_compound_statement, + STATE(2551), 1, sym_text_interpolation, - [75281] = 4, + [79112] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4702), 1, - anon_sym_BSLASH, - STATE(2485), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2430), 1, + sym_variable_name, + STATE(2552), 1, sym_text_interpolation, - [75294] = 4, + [79128] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4704), 1, - anon_sym_BSLASH, - STATE(2486), 1, + ACTIONS(5003), 1, + anon_sym_LPAREN, + STATE(1756), 1, + sym_formal_parameters, + STATE(2553), 1, sym_text_interpolation, - [75307] = 4, + [79144] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4706), 1, - anon_sym_BSLASH, - STATE(2487), 1, + STATE(2069), 1, + sym_compound_statement, + STATE(2554), 1, sym_text_interpolation, - [75320] = 4, + [79160] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4708), 1, - aux_sym_if_statement_token2, - STATE(2488), 1, + ACTIONS(1842), 1, + anon_sym_DOLLAR, + STATE(2421), 1, + sym_variable_name, + STATE(2555), 1, sym_text_interpolation, - [75333] = 4, + [79176] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4710), 1, - sym_name, - STATE(2489), 1, + ACTIONS(5048), 1, + sym_heredoc_start, + STATE(2556), 1, sym_text_interpolation, - [75346] = 4, + [79189] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(961), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4712), 1, - sym_name, - STATE(2490), 1, + STATE(2557), 1, sym_text_interpolation, - [75359] = 4, + [79202] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4714), 1, - aux_sym_class_declaration_token1, - STATE(2491), 1, + ACTIONS(5050), 1, + sym_name, + STATE(2558), 1, sym_text_interpolation, - [75372] = 4, + [79215] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3625), 1, - sym_name, - STATE(2492), 1, + ACTIONS(5052), 1, + anon_sym_RPAREN, + STATE(2559), 1, sym_text_interpolation, - [75385] = 4, + [79228] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4716), 1, - anon_sym_EQ_GT, - STATE(2493), 1, + ACTIONS(5054), 1, + anon_sym_BSLASH, + STATE(2560), 1, sym_text_interpolation, - [75398] = 4, + [79241] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4243), 1, + ACTIONS(5056), 1, anon_sym_RPAREN, - STATE(2494), 1, + STATE(2561), 1, sym_text_interpolation, - [75411] = 4, + [79254] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4718), 1, - sym_heredoc_end, - STATE(2495), 1, + ACTIONS(5058), 1, + anon_sym_RPAREN, + STATE(2562), 1, sym_text_interpolation, - [75424] = 4, + [79267] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4720), 1, + ACTIONS(4486), 1, sym_name, - STATE(2496), 1, + STATE(2563), 1, sym_text_interpolation, - [75437] = 4, + [79280] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4722), 1, - aux_sym_while_statement_token1, - STATE(2497), 1, + ACTIONS(5060), 1, + anon_sym_BSLASH, + STATE(2564), 1, sym_text_interpolation, - [75450] = 4, + [79293] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(5062), 1, anon_sym_LPAREN, - STATE(2498), 1, + STATE(2565), 1, sym_text_interpolation, - [75463] = 4, + [79306] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4726), 1, - anon_sym_COLON_COLON, - STATE(2499), 1, + ACTIONS(5064), 1, + anon_sym_RPAREN, + STATE(2566), 1, sym_text_interpolation, - [75476] = 4, + [79319] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4728), 1, - anon_sym_RPAREN, - STATE(2500), 1, + ACTIONS(5066), 1, + sym_name, + STATE(2567), 1, sym_text_interpolation, - [75489] = 4, + [79332] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4730), 1, - sym_heredoc_end, - STATE(2501), 1, + ACTIONS(5068), 1, + anon_sym_RPAREN, + STATE(2568), 1, sym_text_interpolation, - [75502] = 4, + [79345] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_LBRACE, - STATE(2502), 1, + STATE(2569), 1, sym_text_interpolation, - [75515] = 4, + [79358] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4732), 1, - sym_heredoc_end, - STATE(2503), 1, + ACTIONS(5070), 1, + anon_sym_RPAREN, + STATE(2570), 1, sym_text_interpolation, - [75528] = 4, + [79371] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4734), 1, - sym_heredoc_end, - STATE(2504), 1, + ACTIONS(2734), 1, + anon_sym_RPAREN, + STATE(2571), 1, sym_text_interpolation, - [75541] = 4, + [79384] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4736), 1, - sym_name, - STATE(2505), 1, + ACTIONS(5072), 1, + aux_sym__arrow_function_header_token1, + STATE(2572), 1, sym_text_interpolation, - [75554] = 4, + [79397] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_RPAREN, - STATE(2506), 1, + ACTIONS(4397), 1, + aux_sym_class_declaration_token1, + STATE(2573), 1, sym_text_interpolation, - [75567] = 4, + [79410] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(955), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4740), 1, - anon_sym_EQ_GT, - STATE(2507), 1, + STATE(2574), 1, sym_text_interpolation, - [75580] = 4, + [79423] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4742), 1, + ACTIONS(5074), 1, sym_heredoc_end, - STATE(2508), 1, + STATE(2575), 1, sym_text_interpolation, - [75593] = 4, + [79436] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4744), 1, - aux_sym_foreach_statement_token2, - STATE(2509), 1, + ACTIONS(5076), 1, + anon_sym_RBRACK, + STATE(2576), 1, sym_text_interpolation, - [75606] = 4, + [79449] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(5078), 1, anon_sym_RPAREN, - STATE(2510), 1, + STATE(2577), 1, sym_text_interpolation, - [75619] = 4, + [79462] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(5080), 1, anon_sym_RPAREN, - STATE(2511), 1, + STATE(2578), 1, sym_text_interpolation, - [75632] = 4, + [79475] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4748), 1, - anon_sym_RPAREN, - STATE(2512), 1, + ACTIONS(5082), 1, + anon_sym_EQ_GT, + STATE(2579), 1, sym_text_interpolation, - [75645] = 4, + [79488] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4750), 1, - anon_sym_RBRACK, - STATE(2513), 1, + ACTIONS(4320), 1, + sym_name, + STATE(2580), 1, sym_text_interpolation, - [75658] = 4, + [79501] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4269), 1, + ACTIONS(4960), 1, anon_sym_RPAREN, - STATE(2514), 1, + STATE(2581), 1, sym_text_interpolation, - [75671] = 4, + [79514] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(931), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2515), 1, + ACTIONS(5084), 1, + anon_sym_RPAREN, + STATE(2582), 1, sym_text_interpolation, - [75684] = 4, + [79527] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4752), 1, + ACTIONS(5086), 1, anon_sym_RPAREN, - STATE(2516), 1, + STATE(2583), 1, sym_text_interpolation, - [75697] = 4, + [79540] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4754), 1, - anon_sym_EQ, - STATE(2517), 1, + ACTIONS(5088), 1, + sym_name, + STATE(2584), 1, sym_text_interpolation, - [75710] = 4, + [79553] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4756), 1, - aux_sym_if_statement_token2, - STATE(2518), 1, + ACTIONS(5090), 1, + anon_sym_RPAREN, + STATE(2585), 1, sym_text_interpolation, - [75723] = 4, + [79566] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2598), 1, - anon_sym_RPAREN, - STATE(2519), 1, + ACTIONS(5092), 1, + sym_heredoc_start, + STATE(2586), 1, sym_text_interpolation, - [75736] = 4, + [79579] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_RPAREN, - STATE(2520), 1, + ACTIONS(5094), 1, + sym_heredoc_start, + STATE(2587), 1, sym_text_interpolation, - [75749] = 4, + [79592] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3615), 1, - anon_sym_BSLASH, - STATE(2521), 1, + ACTIONS(5096), 1, + anon_sym_COLON_COLON, + STATE(2588), 1, sym_text_interpolation, - [75762] = 4, + [79605] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(5098), 1, anon_sym_EQ, - STATE(2522), 1, + STATE(2589), 1, sym_text_interpolation, - [75775] = 4, + [79618] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(927), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2523), 1, + ACTIONS(5100), 1, + anon_sym_RPAREN, + STATE(2590), 1, sym_text_interpolation, - [75788] = 4, + [79631] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4760), 1, - anon_sym_LPAREN, - STATE(2524), 1, + ACTIONS(5102), 1, + aux_sym_while_statement_token1, + STATE(2591), 1, sym_text_interpolation, - [75801] = 4, + [79644] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4762), 1, - sym_name, - STATE(2525), 1, + ACTIONS(5104), 1, + anon_sym_EQ_GT, + STATE(2592), 1, sym_text_interpolation, - [75814] = 4, + [79657] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4764), 1, - aux_sym_if_statement_token2, - STATE(2526), 1, + ACTIONS(5106), 1, + aux_sym_class_declaration_token1, + STATE(2593), 1, sym_text_interpolation, - [75827] = 4, + [79670] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4217), 1, - sym_name, - STATE(2527), 1, + ACTIONS(5108), 1, + anon_sym_RPAREN, + STATE(2594), 1, sym_text_interpolation, - [75840] = 4, + [79683] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4766), 1, - anon_sym_SEMI, - STATE(2528), 1, + ACTIONS(5110), 1, + anon_sym_COLON_COLON, + STATE(2595), 1, sym_text_interpolation, - [75853] = 4, + [79696] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4768), 1, - aux_sym_if_statement_token2, - STATE(2529), 1, + ACTIONS(4807), 1, + anon_sym_EQ, + STATE(2596), 1, sym_text_interpolation, - [75866] = 4, + [79709] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4770), 1, - anon_sym_EQ_GT, - STATE(2530), 1, + ACTIONS(5112), 1, + anon_sym_LPAREN, + STATE(2597), 1, sym_text_interpolation, - [75879] = 4, + [79722] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4772), 1, - sym_name, - STATE(2531), 1, + ACTIONS(5114), 1, + anon_sym_EQ_GT, + STATE(2598), 1, sym_text_interpolation, - [75892] = 4, + [79735] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_RPAREN, - STATE(2532), 1, + ACTIONS(5116), 1, + aux_sym_while_statement_token2, + STATE(2599), 1, sym_text_interpolation, - [75905] = 4, + [79748] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(5118), 1, anon_sym_SEMI, - STATE(2533), 1, + STATE(2600), 1, sym_text_interpolation, - [75918] = 4, + [79761] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4164), 1, - anon_sym_RBRACE, - STATE(2534), 1, + ACTIONS(5120), 1, + sym_name, + STATE(2601), 1, sym_text_interpolation, - [75931] = 4, + [79774] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(5122), 1, anon_sym_EQ_GT, - STATE(2535), 1, + STATE(2602), 1, sym_text_interpolation, - [75944] = 4, + [79787] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4778), 1, + ACTIONS(5124), 1, anon_sym_EQ, - STATE(2536), 1, + STATE(2603), 1, sym_text_interpolation, - [75957] = 4, + [79800] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - STATE(2537), 1, + ACTIONS(5126), 1, + anon_sym_RPAREN, + STATE(2604), 1, sym_text_interpolation, - [75970] = 4, + [79813] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4782), 1, + ACTIONS(5128), 1, anon_sym_RPAREN, - STATE(2538), 1, + STATE(2605), 1, sym_text_interpolation, - [75983] = 4, + [79826] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4784), 1, - sym_name, - STATE(2539), 1, + ACTIONS(5130), 1, + aux_sym_class_declaration_token1, + STATE(2606), 1, sym_text_interpolation, - [75996] = 4, + [79839] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4786), 1, - sym_name, - STATE(2540), 1, + ACTIONS(4378), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_text_interpolation, - [76009] = 4, + [79852] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4788), 1, - anon_sym_SQUOTE2, - STATE(2541), 1, + ACTIONS(5132), 1, + anon_sym_RPAREN, + STATE(2608), 1, sym_text_interpolation, - [76022] = 4, + [79865] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4790), 1, - anon_sym_DQUOTE2, - STATE(2542), 1, + ACTIONS(5134), 1, + anon_sym_RBRACK, + STATE(2609), 1, sym_text_interpolation, - [76035] = 4, + [79878] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4792), 1, - anon_sym_BSLASH, - STATE(2543), 1, + ACTIONS(5136), 1, + anon_sym_EQ, + STATE(2610), 1, sym_text_interpolation, - [76048] = 4, + [79891] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4794), 1, - anon_sym_RPAREN, - STATE(2544), 1, + ACTIONS(5138), 1, + aux_sym_while_statement_token1, + STATE(2611), 1, sym_text_interpolation, - [76061] = 4, + [79904] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4796), 1, + ACTIONS(5140), 1, anon_sym_RPAREN, - STATE(2545), 1, + STATE(2612), 1, sym_text_interpolation, - [76074] = 4, + [79917] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(919), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2546), 1, + ACTIONS(5142), 1, + anon_sym_EQ_GT, + STATE(2613), 1, sym_text_interpolation, - [76087] = 4, + [79930] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4798), 1, - aux_sym_while_statement_token2, - STATE(2547), 1, + ACTIONS(5144), 1, + anon_sym_DQUOTE2, + STATE(2614), 1, sym_text_interpolation, - [76100] = 4, + [79943] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_RPAREN, - STATE(2548), 1, + ACTIONS(5146), 1, + anon_sym_SQUOTE2, + STATE(2615), 1, sym_text_interpolation, - [76113] = 4, + [79956] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(4434), 1, anon_sym_RPAREN, - STATE(2549), 1, + STATE(2616), 1, sym_text_interpolation, - [76126] = 4, + [79969] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4804), 1, - aux_sym_class_declaration_token1, - STATE(2550), 1, + ACTIONS(5148), 1, + sym_heredoc_end, + STATE(2617), 1, sym_text_interpolation, - [76139] = 4, + [79982] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4806), 1, - sym_name, - STATE(2551), 1, + ACTIONS(4428), 1, + anon_sym_RBRACE, + STATE(2618), 1, sym_text_interpolation, - [76152] = 4, + [79995] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(5150), 1, + anon_sym_RBRACK, + STATE(2619), 1, + sym_text_interpolation, + [80008] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4808), 1, + ACTIONS(5152), 1, anon_sym_RPAREN, - STATE(2552), 1, + STATE(2620), 1, sym_text_interpolation, - [76165] = 4, + [80021] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4810), 1, + ACTIONS(5154), 1, anon_sym_RPAREN, - STATE(2553), 1, + STATE(2621), 1, sym_text_interpolation, - [76178] = 4, + [80034] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_RBRACK, - STATE(2554), 1, + ACTIONS(5156), 1, + sym_heredoc_end, + STATE(2622), 1, sym_text_interpolation, - [76191] = 4, + [80047] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4812), 1, - sym_name, - STATE(2555), 1, + ACTIONS(5158), 1, + anon_sym_EQ_GT, + STATE(2623), 1, sym_text_interpolation, - [76204] = 4, + [80060] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4814), 1, - aux_sym_if_statement_token2, - STATE(2556), 1, + ACTIONS(5160), 1, + aux_sym_class_declaration_token1, + STATE(2624), 1, sym_text_interpolation, - [76217] = 4, + [80073] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4816), 1, - sym_name, - STATE(2557), 1, + ACTIONS(5162), 1, + anon_sym_RPAREN, + STATE(2625), 1, sym_text_interpolation, - [76230] = 4, + [80086] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4818), 1, + ACTIONS(5164), 1, sym_name, - STATE(2558), 1, + STATE(2626), 1, sym_text_interpolation, - [76243] = 4, + [80099] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4820), 1, - aux_sym_while_statement_token2, - STATE(2559), 1, + ACTIONS(5166), 1, + anon_sym_BSLASH, + STATE(2627), 1, sym_text_interpolation, - [76256] = 4, + [80112] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(3643), 1, - sym_name, - STATE(2560), 1, + ACTIONS(5168), 1, + aux_sym_foreach_statement_token2, + STATE(2628), 1, sym_text_interpolation, - [76269] = 4, + [80125] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4822), 1, - aux_sym_class_declaration_token1, - STATE(2561), 1, + ACTIONS(5170), 1, + anon_sym_RPAREN, + STATE(2629), 1, sym_text_interpolation, - [76282] = 4, + [80138] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(929), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4824), 1, - anon_sym_LPAREN, - STATE(2562), 1, + STATE(2630), 1, sym_text_interpolation, - [76295] = 4, + [80151] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4826), 1, - sym_heredoc_end, - STATE(2563), 1, + ACTIONS(5172), 1, + anon_sym_EQ_GT, + STATE(2631), 1, sym_text_interpolation, - [76308] = 4, + [80164] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(893), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2564), 1, + ACTIONS(5174), 1, + anon_sym_RPAREN, + STATE(2632), 1, sym_text_interpolation, - [76321] = 4, + [80177] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4828), 1, - anon_sym_RPAREN, - STATE(2565), 1, + ACTIONS(3924), 1, + anon_sym_BSLASH, + STATE(2633), 1, sym_text_interpolation, - [76334] = 4, + [80190] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4830), 1, - aux_sym_foreach_statement_token2, - STATE(2566), 1, + ACTIONS(5176), 1, + aux_sym_if_statement_token2, + STATE(2634), 1, sym_text_interpolation, - [76347] = 4, + [80203] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4832), 1, - sym_name, - STATE(2567), 1, + ACTIONS(3543), 1, + anon_sym_EQ, + STATE(2635), 1, sym_text_interpolation, - [76360] = 4, + [80216] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4834), 1, - sym_name, - STATE(2568), 1, + ACTIONS(2790), 1, + anon_sym_RPAREN, + STATE(2636), 1, sym_text_interpolation, - [76373] = 4, + [80229] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(945), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4836), 1, - sym_name, - STATE(2569), 1, + STATE(2637), 1, sym_text_interpolation, - [76386] = 4, + [80242] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_RPAREN, - STATE(2570), 1, + ACTIONS(5178), 1, + anon_sym_EQ_GT, + STATE(2638), 1, sym_text_interpolation, - [76399] = 4, + [80255] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(925), 1, - anon_sym_SEMI, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2571), 1, + ACTIONS(5180), 1, + aux_sym_if_statement_token2, + STATE(2639), 1, sym_text_interpolation, - [76412] = 4, + [80268] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_EQ, - STATE(2572), 1, + ACTIONS(5182), 1, + anon_sym_BSLASH, + STATE(2640), 1, sym_text_interpolation, - [76425] = 4, + [80281] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4842), 1, - anon_sym_COLON_COLON, - STATE(2573), 1, + ACTIONS(2762), 1, + anon_sym_RPAREN, + STATE(2641), 1, sym_text_interpolation, - [76438] = 4, + [80294] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4844), 1, - anon_sym_EQ_GT, - STATE(2574), 1, + ACTIONS(5184), 1, + sym_heredoc_end, + STATE(2642), 1, sym_text_interpolation, - [76451] = 4, + [80307] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4846), 1, - anon_sym_RBRACK, - STATE(2575), 1, + ACTIONS(5186), 1, + sym_heredoc_end, + STATE(2643), 1, sym_text_interpolation, - [76464] = 4, + [80320] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4848), 1, - sym_name, - STATE(2576), 1, + ACTIONS(4534), 1, + anon_sym_LBRACE, + STATE(2644), 1, sym_text_interpolation, - [76477] = 4, + [80333] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4506), 1, - anon_sym_LPAREN, - STATE(2577), 1, + ACTIONS(5188), 1, + anon_sym_SQUOTE2, + STATE(2645), 1, sym_text_interpolation, - [76490] = 4, + [80346] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4126), 1, + ACTIONS(1776), 1, aux_sym_class_declaration_token1, - STATE(2578), 1, + STATE(2646), 1, sym_text_interpolation, - [76503] = 4, + [80359] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4850), 1, + ACTIONS(5190), 1, aux_sym_namespace_use_declaration_token3, - STATE(2579), 1, + STATE(2647), 1, sym_text_interpolation, - [76516] = 4, + [80372] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(5192), 1, anon_sym_BSLASH, - STATE(2580), 1, + STATE(2648), 1, sym_text_interpolation, - [76529] = 4, + [80385] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4854), 1, - sym_name, - STATE(2581), 1, + ACTIONS(5194), 1, + anon_sym_DQUOTE2, + STATE(2649), 1, sym_text_interpolation, - [76542] = 4, + [80398] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4856), 1, - aux_sym_namespace_use_declaration_token3, - STATE(2582), 1, + ACTIONS(5196), 1, + anon_sym_RPAREN, + STATE(2650), 1, sym_text_interpolation, - [76555] = 4, + [80411] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4858), 1, - sym_name, - STATE(2583), 1, + ACTIONS(5198), 1, + aux_sym_while_statement_token2, + STATE(2651), 1, sym_text_interpolation, - [76568] = 4, + [80424] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4860), 1, - aux_sym_while_statement_token1, - STATE(2584), 1, + ACTIONS(5200), 1, + anon_sym_BSLASH, + STATE(2652), 1, sym_text_interpolation, - [76581] = 4, + [80437] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4862), 1, - sym_heredoc_start, - STATE(2585), 1, + ACTIONS(5202), 1, + sym_name, + STATE(2653), 1, sym_text_interpolation, - [76594] = 4, + [80450] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(5204), 1, + anon_sym_COLON_COLON, + STATE(2654), 1, + sym_text_interpolation, + [80463] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4864), 1, + ACTIONS(5206), 1, sym_heredoc_start, - STATE(2586), 1, + STATE(2655), 1, sym_text_interpolation, - [76607] = 4, + [80476] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4866), 1, + ACTIONS(5208), 1, aux_sym_class_declaration_token1, - STATE(2587), 1, + STATE(2656), 1, sym_text_interpolation, - [76620] = 4, + [80489] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4868), 1, - sym_name, - STATE(2588), 1, + ACTIONS(5210), 1, + aux_sym_class_declaration_token1, + STATE(2657), 1, sym_text_interpolation, - [76633] = 4, + [80502] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4870), 1, - sym_name, - STATE(2589), 1, + ACTIONS(5212), 1, + anon_sym_EQ_GT, + STATE(2658), 1, sym_text_interpolation, - [76646] = 4, + [80515] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4122), 1, + ACTIONS(4552), 1, aux_sym_class_declaration_token1, - STATE(2590), 1, + STATE(2659), 1, sym_text_interpolation, - [76659] = 4, + [80528] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(5214), 1, anon_sym_BSLASH, - STATE(2591), 1, + STATE(2660), 1, sym_text_interpolation, - [76672] = 4, + [80541] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4874), 1, + ACTIONS(5216), 1, anon_sym_BSLASH, - STATE(2592), 1, + STATE(2661), 1, sym_text_interpolation, - [76685] = 4, + [80554] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4876), 1, + ACTIONS(5218), 1, anon_sym_RPAREN, - STATE(2593), 1, + STATE(2662), 1, sym_text_interpolation, - [76698] = 4, + [80567] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_RPAREN, - STATE(2594), 1, + ACTIONS(5220), 1, + aux_sym_foreach_statement_token2, + STATE(2663), 1, sym_text_interpolation, - [76711] = 4, + [80580] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4878), 1, + ACTIONS(5222), 1, anon_sym_RPAREN, - STATE(2595), 1, + STATE(2664), 1, sym_text_interpolation, - [76724] = 4, + [80593] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4880), 1, - aux_sym__arrow_function_header_token1, - STATE(2596), 1, + ACTIONS(5224), 1, + anon_sym_RBRACK, + STATE(2665), 1, sym_text_interpolation, - [76737] = 4, + [80606] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4114), 1, - aux_sym_class_declaration_token1, - STATE(2597), 1, + ACTIONS(5226), 1, + anon_sym_COLON_COLON, + STATE(2666), 1, sym_text_interpolation, - [76750] = 4, + [80619] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4882), 1, - anon_sym_RBRACK, - STATE(2598), 1, + ACTIONS(5228), 1, + sym_name, + STATE(2667), 1, sym_text_interpolation, - [76763] = 4, + [80632] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4884), 1, + ACTIONS(5230), 1, aux_sym_class_declaration_token1, - STATE(2599), 1, + STATE(2668), 1, sym_text_interpolation, - [76776] = 4, + [80645] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(5232), 1, anon_sym_BSLASH, - STATE(2600), 1, + STATE(2669), 1, sym_text_interpolation, - [76789] = 4, + [80658] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4888), 1, - sym_name, - STATE(2601), 1, + ACTIONS(2955), 1, + anon_sym_RPAREN, + STATE(2670), 1, sym_text_interpolation, - [76802] = 4, + [80671] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4890), 1, - sym_name, - STATE(2602), 1, + ACTIONS(4958), 1, + anon_sym_LPAREN, + STATE(2671), 1, sym_text_interpolation, - [76815] = 4, + [80684] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(937), 1, + anon_sym_SEMI, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4892), 1, - anon_sym_BSLASH, - STATE(2603), 1, + STATE(2672), 1, sym_text_interpolation, - [76828] = 4, + [80697] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(899), 1, + ACTIONS(925), 1, anon_sym_SEMI, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2604), 1, + STATE(2673), 1, sym_text_interpolation, - [76841] = 4, + [80710] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4894), 1, - sym_name, - STATE(2605), 1, + ACTIONS(5234), 1, + aux_sym_if_statement_token2, + STATE(2674), 1, sym_text_interpolation, - [76854] = 4, + [80723] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4051), 1, - anon_sym_RBRACK, - STATE(2606), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + STATE(2675), 1, sym_text_interpolation, - [76867] = 4, + [80736] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_RPAREN, - STATE(2607), 1, + ACTIONS(5238), 1, + sym_name, + STATE(2676), 1, sym_text_interpolation, - [76880] = 4, + [80749] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4898), 1, - sym_integer, - STATE(2608), 1, + ACTIONS(5240), 1, + aux_sym_if_statement_token2, + STATE(2677), 1, sym_text_interpolation, - [76893] = 4, + [80762] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(909), 1, + ACTIONS(927), 1, anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2609), 1, + STATE(2678), 1, sym_text_interpolation, - [76906] = 4, + [80775] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4900), 1, - anon_sym_RBRACK, - STATE(2610), 1, + ACTIONS(5242), 1, + anon_sym_SEMI, + STATE(2679), 1, sym_text_interpolation, - [76919] = 4, + [80788] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4902), 1, - anon_sym_SEMI, - STATE(2611), 1, + ACTIONS(2770), 1, + anon_sym_RPAREN, + STATE(2680), 1, sym_text_interpolation, - [76932] = 4, + [80801] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2594), 1, - anon_sym_RPAREN, - STATE(2612), 1, + ACTIONS(5244), 1, + aux_sym_if_statement_token2, + STATE(2681), 1, sym_text_interpolation, - [76945] = 4, + [80814] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4093), 1, - anon_sym_RPAREN, - STATE(2613), 1, + ACTIONS(4598), 1, + anon_sym_RBRACE, + STATE(2682), 1, sym_text_interpolation, - [76958] = 4, + [80827] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(933), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_COLON_COLON, - STATE(2614), 1, + STATE(2683), 1, sym_text_interpolation, - [76971] = 4, + [80840] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(913), 1, - anon_sym_RPAREN, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2615), 1, + ACTIONS(5246), 1, + anon_sym_LPAREN, + STATE(2684), 1, sym_text_interpolation, - [76984] = 4, + [80853] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4906), 1, - sym_name, - STATE(2616), 1, + ACTIONS(5248), 1, + anon_sym_COLON_COLON, + STATE(2685), 1, sym_text_interpolation, - [76997] = 4, + [80866] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(5250), 1, anon_sym_RPAREN, - STATE(2617), 1, + STATE(2686), 1, sym_text_interpolation, - [77010] = 4, + [80879] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(3870), 1, anon_sym_COLON_COLON, - STATE(2618), 1, + STATE(2687), 1, sym_text_interpolation, - [77023] = 4, + [80892] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_RPAREN, - STATE(2619), 1, + ACTIONS(5252), 1, + anon_sym_COLON_COLON, + STATE(2688), 1, sym_text_interpolation, - [77036] = 4, + [80905] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4912), 1, - sym_name, - STATE(2620), 1, + ACTIONS(5254), 1, + anon_sym_EQ_GT, + STATE(2689), 1, sym_text_interpolation, - [77049] = 4, + [80918] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4914), 1, - anon_sym_LPAREN, - STATE(2621), 1, + ACTIONS(5256), 1, + anon_sym_EQ, + STATE(2690), 1, sym_text_interpolation, - [77062] = 4, + [80931] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4360), 1, - anon_sym_RPAREN, - STATE(2622), 1, + ACTIONS(5258), 1, + anon_sym_EQ_GT, + STATE(2691), 1, sym_text_interpolation, - [77075] = 4, + [80944] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4916), 1, - anon_sym_RBRACK, - STATE(2623), 1, + ACTIONS(5260), 1, + anon_sym_EQ_GT, + STATE(2692), 1, sym_text_interpolation, - [77088] = 4, + [80957] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4918), 1, - anon_sym_EQ_GT, - STATE(2624), 1, + ACTIONS(5262), 1, + aux_sym_namespace_use_declaration_token3, + STATE(2693), 1, sym_text_interpolation, - [77101] = 4, + [80970] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4920), 1, - anon_sym_LPAREN, - STATE(2625), 1, + ACTIONS(5264), 1, + aux_sym__arrow_function_header_token1, + STATE(2694), 1, sym_text_interpolation, - [77114] = 4, + [80983] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LPAREN, - STATE(2626), 1, + ACTIONS(1758), 1, + aux_sym_class_declaration_token1, + STATE(2695), 1, sym_text_interpolation, - [77127] = 4, + [80996] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4924), 1, - anon_sym_COLON_COLON, - STATE(2627), 1, + ACTIONS(5266), 1, + sym_name, + STATE(2696), 1, sym_text_interpolation, - [77140] = 4, + [81009] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, + sym_comment, + ACTIONS(5268), 1, + anon_sym_BSLASH, + STATE(2697), 1, + sym_text_interpolation, + [81022] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4926), 1, + ACTIONS(5270), 1, sym_name, - STATE(2628), 1, + STATE(2698), 1, sym_text_interpolation, - [77153] = 4, + [81035] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_EQ_GT, - STATE(2629), 1, + ACTIONS(5272), 1, + anon_sym_COLON_COLON, + STATE(2699), 1, sym_text_interpolation, - [77166] = 4, + [81048] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(4522), 1, anon_sym_RPAREN, - STATE(2630), 1, + STATE(2700), 1, sym_text_interpolation, - [77179] = 4, + [81061] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4930), 1, - anon_sym_LPAREN, - STATE(2631), 1, + ACTIONS(5274), 1, + anon_sym_SEMI, + STATE(2701), 1, sym_text_interpolation, - [77192] = 4, + [81074] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(923), 1, + ACTIONS(965), 1, anon_sym_SEMI, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2632), 1, + STATE(2702), 1, sym_text_interpolation, - [77205] = 4, + [81087] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(939), 1, + anon_sym_RPAREN, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4932), 1, - anon_sym_LPAREN, - STATE(2633), 1, + STATE(2703), 1, sym_text_interpolation, - [77218] = 4, + [81100] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4390), 1, - anon_sym_RPAREN, - STATE(2634), 1, + ACTIONS(5276), 1, + anon_sym_LPAREN, + STATE(2704), 1, sym_text_interpolation, - [77231] = 4, + [81113] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4934), 1, - anon_sym_LPAREN, - STATE(2635), 1, + ACTIONS(5278), 1, + anon_sym_COLON_COLON, + STATE(2705), 1, sym_text_interpolation, - [77244] = 4, + [81126] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5280), 1, anon_sym_SEMI, - STATE(2636), 1, + STATE(2706), 1, sym_text_interpolation, - [77257] = 4, + [81139] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4938), 1, - anon_sym_COLON_COLON, - STATE(2637), 1, + ACTIONS(5282), 1, + anon_sym_RPAREN, + STATE(2707), 1, sym_text_interpolation, - [77270] = 4, + [81152] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4940), 1, - anon_sym_COLON_COLON, - STATE(2638), 1, + ACTIONS(5284), 1, + anon_sym_RPAREN, + STATE(2708), 1, sym_text_interpolation, - [77283] = 4, + [81165] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4942), 1, - anon_sym_RPAREN, - STATE(2639), 1, + ACTIONS(5286), 1, + anon_sym_LPAREN, + STATE(2709), 1, sym_text_interpolation, - [77296] = 4, + [81178] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_EQ_GT, - STATE(2640), 1, + ACTIONS(5288), 1, + anon_sym_LPAREN, + STATE(2710), 1, sym_text_interpolation, - [77309] = 4, + [81191] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4354), 1, - anon_sym_LBRACE, - STATE(2641), 1, + ACTIONS(4639), 1, + anon_sym_RPAREN, + STATE(2711), 1, sym_text_interpolation, - [77322] = 4, + [81204] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4946), 1, + ACTIONS(5290), 1, sym_name, - STATE(2642), 1, + STATE(2712), 1, sym_text_interpolation, - [77335] = 4, + [81217] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4948), 1, - sym_name, - STATE(2643), 1, + ACTIONS(4633), 1, + anon_sym_RPAREN, + STATE(2713), 1, sym_text_interpolation, - [77348] = 4, + [81230] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4950), 1, - sym_name, - STATE(2644), 1, + ACTIONS(5292), 1, + anon_sym_LPAREN, + STATE(2714), 1, sym_text_interpolation, - [77361] = 4, + [81243] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4952), 1, - sym_name, - STATE(2645), 1, + ACTIONS(5294), 1, + anon_sym_LPAREN, + STATE(2715), 1, sym_text_interpolation, - [77374] = 4, + [81256] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4417), 1, - anon_sym_RPAREN, - STATE(2646), 1, + ACTIONS(5296), 1, + anon_sym_RBRACK, + STATE(2716), 1, sym_text_interpolation, - [77387] = 4, + [81269] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4429), 1, - anon_sym_RPAREN, - STATE(2647), 1, + ACTIONS(5298), 1, + anon_sym_LPAREN, + STATE(2717), 1, sym_text_interpolation, - [77400] = 4, + [81282] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4954), 1, + ACTIONS(5300), 1, anon_sym_LPAREN, - STATE(2648), 1, + STATE(2718), 1, sym_text_interpolation, - [77413] = 4, + [81295] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4956), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - STATE(2649), 1, + STATE(2719), 1, sym_text_interpolation, - [77426] = 4, + [81308] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4073), 1, + ACTIONS(5304), 1, anon_sym_RPAREN, - STATE(2650), 1, + STATE(2720), 1, sym_text_interpolation, - [77439] = 4, + [81321] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4958), 1, - anon_sym_SQUOTE2, - STATE(2651), 1, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + STATE(2721), 1, sym_text_interpolation, - [77452] = 4, + [81334] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4960), 1, - anon_sym_COLON_COLON, - STATE(2652), 1, + ACTIONS(4465), 1, + anon_sym_LBRACE, + STATE(2722), 1, sym_text_interpolation, - [77465] = 4, + [81347] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(5308), 1, anon_sym_COLON_COLON, - STATE(2653), 1, + STATE(2723), 1, sym_text_interpolation, - [77478] = 4, + [81360] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4964), 1, - sym_name, - STATE(2654), 1, + ACTIONS(4683), 1, + anon_sym_RPAREN, + STATE(2724), 1, sym_text_interpolation, - [77491] = 4, + [81373] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4966), 1, + ACTIONS(5310), 1, anon_sym_RPAREN, - STATE(2655), 1, + STATE(2725), 1, sym_text_interpolation, - [77504] = 4, + [81386] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(5312), 1, anon_sym_LPAREN, - STATE(2656), 1, + STATE(2726), 1, sym_text_interpolation, - [77517] = 4, + [81399] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4970), 1, - sym_name, - STATE(2657), 1, + ACTIONS(5314), 1, + anon_sym_RBRACK, + STATE(2727), 1, sym_text_interpolation, - [77530] = 4, + [81412] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4972), 1, + ACTIONS(5316), 1, anon_sym_SEMI, - STATE(2658), 1, + STATE(2728), 1, sym_text_interpolation, - [77543] = 4, + [81425] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4974), 1, - anon_sym_EQ_GT, - STATE(2659), 1, + ACTIONS(5318), 1, + sym_integer, + STATE(2729), 1, sym_text_interpolation, - [77556] = 4, + [81438] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(901), 1, + ACTIONS(943), 1, anon_sym_SEMI, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - STATE(2660), 1, + STATE(2730), 1, sym_text_interpolation, - [77569] = 4, + [81451] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4976), 1, - anon_sym_DQUOTE2, - STATE(2661), 1, + ACTIONS(5320), 1, + anon_sym_RBRACK, + STATE(2731), 1, sym_text_interpolation, - [77582] = 4, + [81464] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4447), 1, - anon_sym_RPAREN, - STATE(2662), 1, + ACTIONS(5322), 1, + anon_sym_COLON_COLON, + STATE(2732), 1, sym_text_interpolation, - [77595] = 4, + [81477] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4978), 1, + ACTIONS(5324), 1, anon_sym_SEMI, - STATE(2663), 1, + STATE(2733), 1, sym_text_interpolation, - [77608] = 4, + [81490] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4980), 1, + ACTIONS(5326), 1, anon_sym_LPAREN, - STATE(2664), 1, + STATE(2734), 1, sym_text_interpolation, - [77621] = 4, + [81503] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4982), 1, - anon_sym_LPAREN, - STATE(2665), 1, + ACTIONS(5328), 1, + sym_heredoc_end, + STATE(2735), 1, sym_text_interpolation, - [77634] = 4, + [81516] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4984), 1, + ACTIONS(5330), 1, anon_sym_SEMI, - STATE(2666), 1, + STATE(2736), 1, sym_text_interpolation, - [77647] = 4, + [81529] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4986), 1, - anon_sym_EQ_GT, - STATE(2667), 1, + ACTIONS(4711), 1, + anon_sym_RPAREN, + STATE(2737), 1, sym_text_interpolation, - [77660] = 4, + [81542] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4988), 1, + ACTIONS(5332), 1, anon_sym_LPAREN, - STATE(2668), 1, + STATE(2738), 1, sym_text_interpolation, - [77673] = 4, + [81555] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4990), 1, + ACTIONS(5334), 1, anon_sym_LPAREN, - STATE(2669), 1, + STATE(2739), 1, sym_text_interpolation, - [77686] = 4, + [81568] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4992), 1, + ACTIONS(5336), 1, anon_sym_EQ_GT, - STATE(2670), 1, + STATE(2740), 1, sym_text_interpolation, - [77699] = 4, + [81581] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_RPAREN, - STATE(2671), 1, + ACTIONS(5338), 1, + anon_sym_LPAREN, + STATE(2741), 1, sym_text_interpolation, - [77712] = 4, + [81594] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4443), 1, - anon_sym_RBRACE, - STATE(2672), 1, + ACTIONS(5340), 1, + anon_sym_EQ_GT, + STATE(2742), 1, sym_text_interpolation, - [77725] = 4, + [81607] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5342), 1, anon_sym_SEMI, - STATE(2673), 1, + STATE(2743), 1, sym_text_interpolation, - [77738] = 4, + [81620] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(2750), 1, + ACTIONS(4725), 1, anon_sym_RPAREN, - STATE(2674), 1, + STATE(2744), 1, sym_text_interpolation, - [77751] = 4, + [81633] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(4998), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - STATE(2675), 1, + STATE(2745), 1, sym_text_interpolation, - [77764] = 4, + [81646] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(5000), 1, + ACTIONS(5346), 1, ts_builtin_sym_end, - STATE(2676), 1, + STATE(2746), 1, sym_text_interpolation, - [77777] = 4, + [81659] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5348), 1, anon_sym_LPAREN, - STATE(2677), 1, + STATE(2747), 1, sym_text_interpolation, - [77790] = 4, + [81672] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5350), 1, anon_sym_LPAREN, - STATE(2678), 1, + STATE(2748), 1, sym_text_interpolation, - [77803] = 4, + [81685] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(1596), 1, + ACTIONS(1656), 1, sym_comment, - ACTIONS(5006), 1, - sym_name, - STATE(2679), 1, + ACTIONS(5352), 1, + anon_sym_COLON_COLON, + STATE(2749), 1, sym_text_interpolation, - [77816] = 1, - ACTIONS(5008), 1, + [81698] = 1, + ACTIONS(5354), 1, ts_builtin_sym_end, - [77820] = 1, - ACTIONS(5010), 1, + [81702] = 1, + ACTIONS(5356), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(581)] = 0, - [SMALL_STATE(582)] = 87, - [SMALL_STATE(583)] = 166, - [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)] = 1919, - [SMALL_STATE(607)] = 2002, - [SMALL_STATE(608)] = 2077, - [SMALL_STATE(609)] = 2160, - [SMALL_STATE(610)] = 2243, - [SMALL_STATE(611)] = 2318, - [SMALL_STATE(612)] = 2397, - [SMALL_STATE(613)] = 2486, - [SMALL_STATE(614)] = 2556, - [SMALL_STATE(615)] = 2626, - [SMALL_STATE(616)] = 2696, - [SMALL_STATE(617)] = 2766, - [SMALL_STATE(618)] = 2836, - [SMALL_STATE(619)] = 2920, - [SMALL_STATE(620)] = 2990, - [SMALL_STATE(621)] = 3060, - [SMALL_STATE(622)] = 3130, - [SMALL_STATE(623)] = 3200, - [SMALL_STATE(624)] = 3284, - [SMALL_STATE(625)] = 3354, - [SMALL_STATE(626)] = 3424, - [SMALL_STATE(627)] = 3494, - [SMALL_STATE(628)] = 3564, - [SMALL_STATE(629)] = 3648, - [SMALL_STATE(630)] = 3718, - [SMALL_STATE(631)] = 3800, - [SMALL_STATE(632)] = 3870, - [SMALL_STATE(633)] = 3940, - [SMALL_STATE(634)] = 4018, - [SMALL_STATE(635)] = 4088, - [SMALL_STATE(636)] = 4171, - [SMALL_STATE(637)] = 4248, - [SMALL_STATE(638)] = 4331, - [SMALL_STATE(639)] = 4408, - [SMALL_STATE(640)] = 4485, - [SMALL_STATE(641)] = 4561, - [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)] = 5231, - [SMALL_STATE(650)] = 5298, - [SMALL_STATE(651)] = 5369, - [SMALL_STATE(652)] = 5434, - [SMALL_STATE(653)] = 5499, - [SMALL_STATE(654)] = 5564, - [SMALL_STATE(655)] = 5629, - [SMALL_STATE(656)] = 5690, - [SMALL_STATE(657)] = 5755, - [SMALL_STATE(658)] = 5824, - [SMALL_STATE(659)] = 5895, - [SMALL_STATE(660)] = 5966, - [SMALL_STATE(661)] = 6026, - [SMALL_STATE(662)] = 6086, - [SMALL_STATE(663)] = 6146, - [SMALL_STATE(664)] = 6256, - [SMALL_STATE(665)] = 6316, - [SMALL_STATE(666)] = 6380, - [SMALL_STATE(667)] = 6440, - [SMALL_STATE(668)] = 6504, - [SMALL_STATE(669)] = 6564, - [SMALL_STATE(670)] = 6674, - [SMALL_STATE(671)] = 6734, - [SMALL_STATE(672)] = 6794, - [SMALL_STATE(673)] = 6854, - [SMALL_STATE(674)] = 6914, - [SMALL_STATE(675)] = 6974, - [SMALL_STATE(676)] = 7084, - [SMALL_STATE(677)] = 7144, - [SMALL_STATE(678)] = 7254, - [SMALL_STATE(679)] = 7314, - [SMALL_STATE(680)] = 7374, - [SMALL_STATE(681)] = 7434, - [SMALL_STATE(682)] = 7494, - [SMALL_STATE(683)] = 7554, - [SMALL_STATE(684)] = 7619, - [SMALL_STATE(685)] = 7680, - [SMALL_STATE(686)] = 7741, - [SMALL_STATE(687)] = 7806, - [SMALL_STATE(688)] = 7871, - [SMALL_STATE(689)] = 7936, - [SMALL_STATE(690)] = 8039, - [SMALL_STATE(691)] = 8104, - [SMALL_STATE(692)] = 8211, - [SMALL_STATE(693)] = 8312, - [SMALL_STATE(694)] = 8375, - [SMALL_STATE(695)] = 8438, - [SMALL_STATE(696)] = 8503, - [SMALL_STATE(697)] = 8610, - [SMALL_STATE(698)] = 8671, - [SMALL_STATE(699)] = 8734, - [SMALL_STATE(700)] = 8797, - [SMALL_STATE(701)] = 8904, - [SMALL_STATE(702)] = 8965, - [SMALL_STATE(703)] = 9030, - [SMALL_STATE(704)] = 9091, - [SMALL_STATE(705)] = 9156, - [SMALL_STATE(706)] = 9219, - [SMALL_STATE(707)] = 9282, - [SMALL_STATE(708)] = 9345, - [SMALL_STATE(709)] = 9408, - [SMALL_STATE(710)] = 9471, - [SMALL_STATE(711)] = 9574, - [SMALL_STATE(712)] = 9637, - [SMALL_STATE(713)] = 9702, - [SMALL_STATE(714)] = 9765, - [SMALL_STATE(715)] = 9872, - [SMALL_STATE(716)] = 9935, - [SMALL_STATE(717)] = 10000, - [SMALL_STATE(718)] = 10065, - [SMALL_STATE(719)] = 10172, - [SMALL_STATE(720)] = 10235, - [SMALL_STATE(721)] = 10300, - [SMALL_STATE(722)] = 10361, - [SMALL_STATE(723)] = 10424, - [SMALL_STATE(724)] = 10531, - [SMALL_STATE(725)] = 10589, - [SMALL_STATE(726)] = 10647, - [SMALL_STATE(727)] = 10705, - [SMALL_STATE(728)] = 10763, - [SMALL_STATE(729)] = 10821, - [SMALL_STATE(730)] = 10879, - [SMALL_STATE(731)] = 10937, - [SMALL_STATE(732)] = 10995, - [SMALL_STATE(733)] = 11053, - [SMALL_STATE(734)] = 11111, - [SMALL_STATE(735)] = 11169, - [SMALL_STATE(736)] = 11227, - [SMALL_STATE(737)] = 11285, - [SMALL_STATE(738)] = 11343, - [SMALL_STATE(739)] = 11401, - [SMALL_STATE(740)] = 11459, - [SMALL_STATE(741)] = 11519, - [SMALL_STATE(742)] = 11577, - [SMALL_STATE(743)] = 11635, - [SMALL_STATE(744)] = 11693, - [SMALL_STATE(745)] = 11751, - [SMALL_STATE(746)] = 11809, - [SMALL_STATE(747)] = 11867, - [SMALL_STATE(748)] = 11925, - [SMALL_STATE(749)] = 11983, - [SMALL_STATE(750)] = 12087, - [SMALL_STATE(751)] = 12145, - [SMALL_STATE(752)] = 12203, - [SMALL_STATE(753)] = 12261, - [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)] = 12715, - [SMALL_STATE(761)] = 12773, - [SMALL_STATE(762)] = 12831, - [SMALL_STATE(763)] = 12889, - [SMALL_STATE(764)] = 12947, - [SMALL_STATE(765)] = 13005, - [SMALL_STATE(766)] = 13063, - [SMALL_STATE(767)] = 13121, - [SMALL_STATE(768)] = 13179, - [SMALL_STATE(769)] = 13242, - [SMALL_STATE(770)] = 13303, - [SMALL_STATE(771)] = 13360, - [SMALL_STATE(772)] = 13419, - [SMALL_STATE(773)] = 13486, - [SMALL_STATE(774)] = 13545, - [SMALL_STATE(775)] = 13606, - [SMALL_STATE(776)] = 13663, - [SMALL_STATE(777)] = 13724, - [SMALL_STATE(778)] = 13785, - [SMALL_STATE(779)] = 13846, - [SMALL_STATE(780)] = 13913, - [SMALL_STATE(781)] = 13972, - [SMALL_STATE(782)] = 14037, - [SMALL_STATE(783)] = 14096, - [SMALL_STATE(784)] = 14163, - [SMALL_STATE(785)] = 14230, - [SMALL_STATE(786)] = 14287, - [SMALL_STATE(787)] = 14346, - [SMALL_STATE(788)] = 14407, - [SMALL_STATE(789)] = 14463, - [SMALL_STATE(790)] = 14519, - [SMALL_STATE(791)] = 14587, - [SMALL_STATE(792)] = 14643, - [SMALL_STATE(793)] = 14699, - [SMALL_STATE(794)] = 14755, - [SMALL_STATE(795)] = 14811, - [SMALL_STATE(796)] = 14867, - [SMALL_STATE(797)] = 14923, - [SMALL_STATE(798)] = 14979, - [SMALL_STATE(799)] = 15047, - [SMALL_STATE(800)] = 15103, - [SMALL_STATE(801)] = 15159, - [SMALL_STATE(802)] = 15215, - [SMALL_STATE(803)] = 15271, - [SMALL_STATE(804)] = 15327, - [SMALL_STATE(805)] = 15395, - [SMALL_STATE(806)] = 15451, - [SMALL_STATE(807)] = 15507, - [SMALL_STATE(808)] = 15563, - [SMALL_STATE(809)] = 15658, - [SMALL_STATE(810)] = 15715, - [SMALL_STATE(811)] = 15810, - [SMALL_STATE(812)] = 15869, - [SMALL_STATE(813)] = 15928, - [SMALL_STATE(814)] = 16023, - [SMALL_STATE(815)] = 16084, - [SMALL_STATE(816)] = 16145, - [SMALL_STATE(817)] = 16204, - [SMALL_STATE(818)] = 16263, - [SMALL_STATE(819)] = 16358, - [SMALL_STATE(820)] = 16453, - [SMALL_STATE(821)] = 16514, - [SMALL_STATE(822)] = 16609, - [SMALL_STATE(823)] = 16670, - [SMALL_STATE(824)] = 16729, - [SMALL_STATE(825)] = 16790, - [SMALL_STATE(826)] = 16849, - [SMALL_STATE(827)] = 16910, - [SMALL_STATE(828)] = 16969, - [SMALL_STATE(829)] = 17030, - [SMALL_STATE(830)] = 17089, - [SMALL_STATE(831)] = 17184, - [SMALL_STATE(832)] = 17245, - [SMALL_STATE(833)] = 17306, - [SMALL_STATE(834)] = 17401, - [SMALL_STATE(835)] = 17458, - [SMALL_STATE(836)] = 17517, - [SMALL_STATE(837)] = 17612, - [SMALL_STATE(838)] = 17671, - [SMALL_STATE(839)] = 17730, - [SMALL_STATE(840)] = 17789, - [SMALL_STATE(841)] = 17884, - [SMALL_STATE(842)] = 17979, - [SMALL_STATE(843)] = 18034, - [SMALL_STATE(844)] = 18095, - [SMALL_STATE(845)] = 18150, - [SMALL_STATE(846)] = 18209, - [SMALL_STATE(847)] = 18304, - [SMALL_STATE(848)] = 18361, - [SMALL_STATE(849)] = 18418, - [SMALL_STATE(850)] = 18479, - [SMALL_STATE(851)] = 18534, - [SMALL_STATE(852)] = 18595, - [SMALL_STATE(853)] = 18652, - [SMALL_STATE(854)] = 18711, - [SMALL_STATE(855)] = 18768, - [SMALL_STATE(856)] = 18827, - [SMALL_STATE(857)] = 18884, - [SMALL_STATE(858)] = 18979, - [SMALL_STATE(859)] = 19074, - [SMALL_STATE(860)] = 19129, - [SMALL_STATE(861)] = 19224, - [SMALL_STATE(862)] = 19278, - [SMALL_STATE(863)] = 19334, - [SMALL_STATE(864)] = 19388, - [SMALL_STATE(865)] = 19442, - [SMALL_STATE(866)] = 19496, - [SMALL_STATE(867)] = 19550, - [SMALL_STATE(868)] = 19604, - [SMALL_STATE(869)] = 19658, - [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)] = 20362, - [SMALL_STATE(883)] = 20416, - [SMALL_STATE(884)] = 20470, - [SMALL_STATE(885)] = 20524, - [SMALL_STATE(886)] = 20578, - [SMALL_STATE(887)] = 20632, - [SMALL_STATE(888)] = 20686, - [SMALL_STATE(889)] = 20740, - [SMALL_STATE(890)] = 20794, - [SMALL_STATE(891)] = 20848, - [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)] = 21230, - [SMALL_STATE(899)] = 21284, - [SMALL_STATE(900)] = 21340, - [SMALL_STATE(901)] = 21394, - [SMALL_STATE(902)] = 21448, - [SMALL_STATE(903)] = 21502, - [SMALL_STATE(904)] = 21556, - [SMALL_STATE(905)] = 21611, - [SMALL_STATE(906)] = 21666, - [SMALL_STATE(907)] = 21721, - [SMALL_STATE(908)] = 21776, - [SMALL_STATE(909)] = 21831, - [SMALL_STATE(910)] = 21883, - [SMALL_STATE(911)] = 21935, - [SMALL_STATE(912)] = 21989, - [SMALL_STATE(913)] = 22041, - [SMALL_STATE(914)] = 22093, - [SMALL_STATE(915)] = 22145, - [SMALL_STATE(916)] = 22197, - [SMALL_STATE(917)] = 22249, - [SMALL_STATE(918)] = 22301, - [SMALL_STATE(919)] = 22353, - [SMALL_STATE(920)] = 22405, - [SMALL_STATE(921)] = 22457, - [SMALL_STATE(922)] = 22509, - [SMALL_STATE(923)] = 22561, - [SMALL_STATE(924)] = 22613, - [SMALL_STATE(925)] = 22665, - [SMALL_STATE(926)] = 22717, - [SMALL_STATE(927)] = 22769, - [SMALL_STATE(928)] = 22821, - [SMALL_STATE(929)] = 22873, - [SMALL_STATE(930)] = 22925, - [SMALL_STATE(931)] = 22977, - [SMALL_STATE(932)] = 23029, - [SMALL_STATE(933)] = 23081, - [SMALL_STATE(934)] = 23133, - [SMALL_STATE(935)] = 23185, - [SMALL_STATE(936)] = 23237, - [SMALL_STATE(937)] = 23289, - [SMALL_STATE(938)] = 23341, - [SMALL_STATE(939)] = 23393, - [SMALL_STATE(940)] = 23445, - [SMALL_STATE(941)] = 23497, - [SMALL_STATE(942)] = 23549, - [SMALL_STATE(943)] = 23601, - [SMALL_STATE(944)] = 23653, - [SMALL_STATE(945)] = 23705, - [SMALL_STATE(946)] = 23757, - [SMALL_STATE(947)] = 23809, - [SMALL_STATE(948)] = 23861, - [SMALL_STATE(949)] = 23913, - [SMALL_STATE(950)] = 23965, - [SMALL_STATE(951)] = 24017, - [SMALL_STATE(952)] = 24069, - [SMALL_STATE(953)] = 24121, - [SMALL_STATE(954)] = 24173, - [SMALL_STATE(955)] = 24225, - [SMALL_STATE(956)] = 24277, - [SMALL_STATE(957)] = 24329, - [SMALL_STATE(958)] = 24381, - [SMALL_STATE(959)] = 24433, - [SMALL_STATE(960)] = 24485, - [SMALL_STATE(961)] = 24537, - [SMALL_STATE(962)] = 24589, - [SMALL_STATE(963)] = 24641, - [SMALL_STATE(964)] = 24693, - [SMALL_STATE(965)] = 24745, - [SMALL_STATE(966)] = 24797, - [SMALL_STATE(967)] = 24849, - [SMALL_STATE(968)] = 24901, - [SMALL_STATE(969)] = 24953, - [SMALL_STATE(970)] = 25005, - [SMALL_STATE(971)] = 25057, - [SMALL_STATE(972)] = 25109, - [SMALL_STATE(973)] = 25161, - [SMALL_STATE(974)] = 25213, - [SMALL_STATE(975)] = 25300, - [SMALL_STATE(976)] = 25351, - [SMALL_STATE(977)] = 25402, - [SMALL_STATE(978)] = 25457, - [SMALL_STATE(979)] = 25514, - [SMALL_STATE(980)] = 25598, - [SMALL_STATE(981)] = 25674, - [SMALL_STATE(982)] = 25756, - [SMALL_STATE(983)] = 25838, - [SMALL_STATE(984)] = 25920, - [SMALL_STATE(985)] = 26008, - [SMALL_STATE(986)] = 26078, - [SMALL_STATE(987)] = 26152, - [SMALL_STATE(988)] = 26208, - [SMALL_STATE(989)] = 26290, - [SMALL_STATE(990)] = 26342, - [SMALL_STATE(991)] = 26424, - [SMALL_STATE(992)] = 26510, - [SMALL_STATE(993)] = 26592, - [SMALL_STATE(994)] = 26670, - [SMALL_STATE(995)] = 26758, - [SMALL_STATE(996)] = 26830, - [SMALL_STATE(997)] = 26896, - [SMALL_STATE(998)] = 26984, - [SMALL_STATE(999)] = 27072, - [SMALL_STATE(1000)] = 27134, - [SMALL_STATE(1001)] = 27222, - [SMALL_STATE(1002)] = 27280, - [SMALL_STATE(1003)] = 27368, - [SMALL_STATE(1004)] = 27456, - [SMALL_STATE(1005)] = 27544, - [SMALL_STATE(1006)] = 27632, - [SMALL_STATE(1007)] = 27692, - [SMALL_STATE(1008)] = 27782, - [SMALL_STATE(1009)] = 27834, - [SMALL_STATE(1010)] = 27922, - [SMALL_STATE(1011)] = 28004, - [SMALL_STATE(1012)] = 28085, - [SMALL_STATE(1013)] = 28134, - [SMALL_STATE(1014)] = 28221, - [SMALL_STATE(1015)] = 28280, - [SMALL_STATE(1016)] = 28341, - [SMALL_STATE(1017)] = 28418, - [SMALL_STATE(1018)] = 28483, - [SMALL_STATE(1019)] = 28564, - [SMALL_STATE(1020)] = 28621, - [SMALL_STATE(1021)] = 28692, - [SMALL_STATE(1022)] = 28775, - [SMALL_STATE(1023)] = 28860, - [SMALL_STATE(1024)] = 28941, - [SMALL_STATE(1025)] = 29022, - [SMALL_STATE(1026)] = 29073, - [SMALL_STATE(1027)] = 29154, - [SMALL_STATE(1028)] = 29209, - [SMALL_STATE(1029)] = 29284, - [SMALL_STATE(1030)] = 29365, - [SMALL_STATE(1031)] = 29416, - [SMALL_STATE(1032)] = 29503, - [SMALL_STATE(1033)] = 29552, - [SMALL_STATE(1034)] = 29633, - [SMALL_STATE(1035)] = 29682, - [SMALL_STATE(1036)] = 29755, - [SMALL_STATE(1037)] = 29824, - [SMALL_STATE(1038)] = 29911, - [SMALL_STATE(1039)] = 29998, - [SMALL_STATE(1040)] = 30085, - [SMALL_STATE(1041)] = 30172, - [SMALL_STATE(1042)] = 30259, - [SMALL_STATE(1043)] = 30348, - [SMALL_STATE(1044)] = 30435, - [SMALL_STATE(1045)] = 30484, - [SMALL_STATE(1046)] = 30571, - [SMALL_STATE(1047)] = 30658, - [SMALL_STATE(1048)] = 30722, - [SMALL_STATE(1049)] = 30808, - [SMALL_STATE(1050)] = 30866, - [SMALL_STATE(1051)] = 30940, - [SMALL_STATE(1052)] = 31016, - [SMALL_STATE(1053)] = 31098, - [SMALL_STATE(1054)] = 31182, - [SMALL_STATE(1055)] = 31262, - [SMALL_STATE(1056)] = 31312, - [SMALL_STATE(1057)] = 31392, - [SMALL_STATE(1058)] = 31464, - [SMALL_STATE(1059)] = 31532, - [SMALL_STATE(1060)] = 31618, - [SMALL_STATE(1061)] = 31688, - [SMALL_STATE(1062)] = 31774, - [SMALL_STATE(1063)] = 31822, - [SMALL_STATE(1064)] = 31870, - [SMALL_STATE(1065)] = 31918, - [SMALL_STATE(1066)] = 31966, - [SMALL_STATE(1067)] = 32014, - [SMALL_STATE(1068)] = 32070, - [SMALL_STATE(1069)] = 32150, - [SMALL_STATE(1070)] = 32198, - [SMALL_STATE(1071)] = 32246, - [SMALL_STATE(1072)] = 32294, - [SMALL_STATE(1073)] = 32342, - [SMALL_STATE(1074)] = 32390, - [SMALL_STATE(1075)] = 32440, - [SMALL_STATE(1076)] = 32488, - [SMALL_STATE(1077)] = 32536, - [SMALL_STATE(1078)] = 32584, - [SMALL_STATE(1079)] = 32664, - [SMALL_STATE(1080)] = 32718, - [SMALL_STATE(1081)] = 32766, - [SMALL_STATE(1082)] = 32814, - [SMALL_STATE(1083)] = 32862, - [SMALL_STATE(1084)] = 32910, - [SMALL_STATE(1085)] = 32958, - [SMALL_STATE(1086)] = 33006, - [SMALL_STATE(1087)] = 33054, - [SMALL_STATE(1088)] = 33102, - [SMALL_STATE(1089)] = 33150, - [SMALL_STATE(1090)] = 33198, - [SMALL_STATE(1091)] = 33246, - [SMALL_STATE(1092)] = 33294, - [SMALL_STATE(1093)] = 33342, - [SMALL_STATE(1094)] = 33390, - [SMALL_STATE(1095)] = 33470, - [SMALL_STATE(1096)] = 33550, - [SMALL_STATE(1097)] = 33598, - [SMALL_STATE(1098)] = 33646, - [SMALL_STATE(1099)] = 33694, - [SMALL_STATE(1100)] = 33742, - [SMALL_STATE(1101)] = 33790, - [SMALL_STATE(1102)] = 33838, - [SMALL_STATE(1103)] = 33886, - [SMALL_STATE(1104)] = 33934, - [SMALL_STATE(1105)] = 33982, - [SMALL_STATE(1106)] = 34030, - [SMALL_STATE(1107)] = 34078, - [SMALL_STATE(1108)] = 34126, - [SMALL_STATE(1109)] = 34174, - [SMALL_STATE(1110)] = 34222, - [SMALL_STATE(1111)] = 34270, - [SMALL_STATE(1112)] = 34318, - [SMALL_STATE(1113)] = 34404, - [SMALL_STATE(1114)] = 34452, - [SMALL_STATE(1115)] = 34500, - [SMALL_STATE(1116)] = 34586, - [SMALL_STATE(1117)] = 34646, - [SMALL_STATE(1118)] = 34732, - [SMALL_STATE(1119)] = 34780, - [SMALL_STATE(1120)] = 34868, - [SMALL_STATE(1121)] = 34916, - [SMALL_STATE(1122)] = 34964, - [SMALL_STATE(1123)] = 35012, - [SMALL_STATE(1124)] = 35098, - [SMALL_STATE(1125)] = 35146, - [SMALL_STATE(1126)] = 35194, - [SMALL_STATE(1127)] = 35242, - [SMALL_STATE(1128)] = 35290, - [SMALL_STATE(1129)] = 35376, - [SMALL_STATE(1130)] = 35424, - [SMALL_STATE(1131)] = 35472, - [SMALL_STATE(1132)] = 35558, - [SMALL_STATE(1133)] = 35606, - [SMALL_STATE(1134)] = 35670, - [SMALL_STATE(1135)] = 35750, - [SMALL_STATE(1136)] = 35798, - [SMALL_STATE(1137)] = 35884, - [SMALL_STATE(1138)] = 35932, - [SMALL_STATE(1139)] = 35980, - [SMALL_STATE(1140)] = 36028, - [SMALL_STATE(1141)] = 36076, - [SMALL_STATE(1142)] = 36124, - [SMALL_STATE(1143)] = 36172, - [SMALL_STATE(1144)] = 36222, - [SMALL_STATE(1145)] = 36270, - [SMALL_STATE(1146)] = 36318, - [SMALL_STATE(1147)] = 36366, - [SMALL_STATE(1148)] = 36415, - [SMALL_STATE(1149)] = 36494, - [SMALL_STATE(1150)] = 36573, - [SMALL_STATE(1151)] = 36652, - [SMALL_STATE(1152)] = 36731, - [SMALL_STATE(1153)] = 36810, - [SMALL_STATE(1154)] = 36867, - [SMALL_STATE(1155)] = 36922, - [SMALL_STATE(1156)] = 36981, - [SMALL_STATE(1157)] = 37044, - [SMALL_STATE(1158)] = 37113, - [SMALL_STATE(1159)] = 37186, - [SMALL_STATE(1160)] = 37261, - [SMALL_STATE(1161)] = 37342, - [SMALL_STATE(1162)] = 37425, - [SMALL_STATE(1163)] = 37504, - [SMALL_STATE(1164)] = 37553, - [SMALL_STATE(1165)] = 37628, - [SMALL_STATE(1166)] = 37681, - [SMALL_STATE(1167)] = 37752, - [SMALL_STATE(1168)] = 37819, - [SMALL_STATE(1169)] = 37904, - [SMALL_STATE(1170)] = 37989, - [SMALL_STATE(1171)] = 38064, - [SMALL_STATE(1172)] = 38143, - [SMALL_STATE(1173)] = 38228, - [SMALL_STATE(1174)] = 38313, - [SMALL_STATE(1175)] = 38398, - [SMALL_STATE(1176)] = 38483, - [SMALL_STATE(1177)] = 38558, - [SMALL_STATE(1178)] = 38607, - [SMALL_STATE(1179)] = 38656, - [SMALL_STATE(1180)] = 38731, - [SMALL_STATE(1181)] = 38818, - [SMALL_STATE(1182)] = 38903, - [SMALL_STATE(1183)] = 38988, - [SMALL_STATE(1184)] = 39073, - [SMALL_STATE(1185)] = 39158, - [SMALL_STATE(1186)] = 39246, - [SMALL_STATE(1187)] = 39330, - [SMALL_STATE(1188)] = 39416, - [SMALL_STATE(1189)] = 39492, - [SMALL_STATE(1190)] = 39578, - [SMALL_STATE(1191)] = 39662, - [SMALL_STATE(1192)] = 39748, - [SMALL_STATE(1193)] = 39834, - [SMALL_STATE(1194)] = 39918, - [SMALL_STATE(1195)] = 39994, - [SMALL_STATE(1196)] = 40080, - [SMALL_STATE(1197)] = 40163, - [SMALL_STATE(1198)] = 40254, - [SMALL_STATE(1199)] = 40337, - [SMALL_STATE(1200)] = 40422, - [SMALL_STATE(1201)] = 40505, - [SMALL_STATE(1202)] = 40588, - [SMALL_STATE(1203)] = 40677, - [SMALL_STATE(1204)] = 40760, - [SMALL_STATE(1205)] = 40845, - [SMALL_STATE(1206)] = 40936, - [SMALL_STATE(1207)] = 41019, - [SMALL_STATE(1208)] = 41104, - [SMALL_STATE(1209)] = 41189, - [SMALL_STATE(1210)] = 41274, - [SMALL_STATE(1211)] = 41357, - [SMALL_STATE(1212)] = 41442, - [SMALL_STATE(1213)] = 41525, - [SMALL_STATE(1214)] = 41608, - [SMALL_STATE(1215)] = 41691, - [SMALL_STATE(1216)] = 41774, - [SMALL_STATE(1217)] = 41857, - [SMALL_STATE(1218)] = 41948, - [SMALL_STATE(1219)] = 42031, - [SMALL_STATE(1220)] = 42114, - [SMALL_STATE(1221)] = 42197, - [SMALL_STATE(1222)] = 42280, - [SMALL_STATE(1223)] = 42363, - [SMALL_STATE(1224)] = 42446, - [SMALL_STATE(1225)] = 42529, - [SMALL_STATE(1226)] = 42612, - [SMALL_STATE(1227)] = 42695, - [SMALL_STATE(1228)] = 42778, - [SMALL_STATE(1229)] = 42863, - [SMALL_STATE(1230)] = 42954, - [SMALL_STATE(1231)] = 43045, - [SMALL_STATE(1232)] = 43136, - [SMALL_STATE(1233)] = 43219, - [SMALL_STATE(1234)] = 43302, - [SMALL_STATE(1235)] = 43393, - [SMALL_STATE(1236)] = 43478, - [SMALL_STATE(1237)] = 43561, - [SMALL_STATE(1238)] = 43644, - [SMALL_STATE(1239)] = 43727, - [SMALL_STATE(1240)] = 43810, - [SMALL_STATE(1241)] = 43901, - [SMALL_STATE(1242)] = 43984, - [SMALL_STATE(1243)] = 44067, - [SMALL_STATE(1244)] = 44150, - [SMALL_STATE(1245)] = 44233, - [SMALL_STATE(1246)] = 44315, - [SMALL_STATE(1247)] = 44397, - [SMALL_STATE(1248)] = 44449, - [SMALL_STATE(1249)] = 44531, - [SMALL_STATE(1250)] = 44613, - [SMALL_STATE(1251)] = 44695, - [SMALL_STATE(1252)] = 44777, - [SMALL_STATE(1253)] = 44859, - [SMALL_STATE(1254)] = 44941, - [SMALL_STATE(1255)] = 45023, - [SMALL_STATE(1256)] = 45105, - [SMALL_STATE(1257)] = 45187, - [SMALL_STATE(1258)] = 45269, - [SMALL_STATE(1259)] = 45351, - [SMALL_STATE(1260)] = 45433, - [SMALL_STATE(1261)] = 45515, - [SMALL_STATE(1262)] = 45597, - [SMALL_STATE(1263)] = 45667, - [SMALL_STATE(1264)] = 45749, - [SMALL_STATE(1265)] = 45831, - [SMALL_STATE(1266)] = 45913, - [SMALL_STATE(1267)] = 45995, - [SMALL_STATE(1268)] = 46077, - [SMALL_STATE(1269)] = 46159, - [SMALL_STATE(1270)] = 46241, - [SMALL_STATE(1271)] = 46323, - [SMALL_STATE(1272)] = 46405, - [SMALL_STATE(1273)] = 46487, - [SMALL_STATE(1274)] = 46569, - [SMALL_STATE(1275)] = 46651, - [SMALL_STATE(1276)] = 46733, - [SMALL_STATE(1277)] = 46815, - [SMALL_STATE(1278)] = 46897, - [SMALL_STATE(1279)] = 46979, - [SMALL_STATE(1280)] = 47061, - [SMALL_STATE(1281)] = 47143, - [SMALL_STATE(1282)] = 47225, - [SMALL_STATE(1283)] = 47307, - [SMALL_STATE(1284)] = 47389, - [SMALL_STATE(1285)] = 47471, - [SMALL_STATE(1286)] = 47553, - [SMALL_STATE(1287)] = 47635, - [SMALL_STATE(1288)] = 47717, - [SMALL_STATE(1289)] = 47787, - [SMALL_STATE(1290)] = 47869, - [SMALL_STATE(1291)] = 47951, - [SMALL_STATE(1292)] = 48033, - [SMALL_STATE(1293)] = 48115, - [SMALL_STATE(1294)] = 48197, - [SMALL_STATE(1295)] = 48279, - [SMALL_STATE(1296)] = 48361, - [SMALL_STATE(1297)] = 48443, - [SMALL_STATE(1298)] = 48525, - [SMALL_STATE(1299)] = 48607, - [SMALL_STATE(1300)] = 48659, - [SMALL_STATE(1301)] = 48741, - [SMALL_STATE(1302)] = 48823, - [SMALL_STATE(1303)] = 48905, - [SMALL_STATE(1304)] = 48987, - [SMALL_STATE(1305)] = 49069, - [SMALL_STATE(1306)] = 49151, - [SMALL_STATE(1307)] = 49233, - [SMALL_STATE(1308)] = 49315, - [SMALL_STATE(1309)] = 49397, - [SMALL_STATE(1310)] = 49479, - [SMALL_STATE(1311)] = 49561, - [SMALL_STATE(1312)] = 49643, - [SMALL_STATE(1313)] = 49725, - [SMALL_STATE(1314)] = 49807, - [SMALL_STATE(1315)] = 49889, - [SMALL_STATE(1316)] = 49971, - [SMALL_STATE(1317)] = 50053, - [SMALL_STATE(1318)] = 50134, - [SMALL_STATE(1319)] = 50215, - [SMALL_STATE(1320)] = 50282, - [SMALL_STATE(1321)] = 50363, - [SMALL_STATE(1322)] = 50444, - [SMALL_STATE(1323)] = 50511, - [SMALL_STATE(1324)] = 50554, - [SMALL_STATE(1325)] = 50633, - [SMALL_STATE(1326)] = 50677, - [SMALL_STATE(1327)] = 50719, - [SMALL_STATE(1328)] = 50761, - [SMALL_STATE(1329)] = 50803, - [SMALL_STATE(1330)] = 50844, - [SMALL_STATE(1331)] = 50885, - [SMALL_STATE(1332)] = 50926, - [SMALL_STATE(1333)] = 50982, - [SMALL_STATE(1334)] = 51038, - [SMALL_STATE(1335)] = 51094, - [SMALL_STATE(1336)] = 51150, - [SMALL_STATE(1337)] = 51206, - [SMALL_STATE(1338)] = 51262, - [SMALL_STATE(1339)] = 51318, - [SMALL_STATE(1340)] = 51374, - [SMALL_STATE(1341)] = 51430, - [SMALL_STATE(1342)] = 51486, - [SMALL_STATE(1343)] = 51542, - [SMALL_STATE(1344)] = 51595, - [SMALL_STATE(1345)] = 51648, - [SMALL_STATE(1346)] = 51701, - [SMALL_STATE(1347)] = 51754, - [SMALL_STATE(1348)] = 51807, - [SMALL_STATE(1349)] = 51860, - [SMALL_STATE(1350)] = 51906, - [SMALL_STATE(1351)] = 51952, - [SMALL_STATE(1352)] = 51998, - [SMALL_STATE(1353)] = 52057, - [SMALL_STATE(1354)] = 52109, - [SMALL_STATE(1355)] = 52158, - [SMALL_STATE(1356)] = 52207, - [SMALL_STATE(1357)] = 52252, - [SMALL_STATE(1358)] = 52282, - [SMALL_STATE(1359)] = 52329, - [SMALL_STATE(1360)] = 52378, - [SMALL_STATE(1361)] = 52422, - [SMALL_STATE(1362)] = 52464, - [SMALL_STATE(1363)] = 52490, - [SMALL_STATE(1364)] = 52516, - [SMALL_STATE(1365)] = 52542, - [SMALL_STATE(1366)] = 52568, - [SMALL_STATE(1367)] = 52594, - [SMALL_STATE(1368)] = 52640, - [SMALL_STATE(1369)] = 52666, - [SMALL_STATE(1370)] = 52692, - [SMALL_STATE(1371)] = 52718, - [SMALL_STATE(1372)] = 52744, - [SMALL_STATE(1373)] = 52770, - [SMALL_STATE(1374)] = 52796, - [SMALL_STATE(1375)] = 52822, - [SMALL_STATE(1376)] = 52848, - [SMALL_STATE(1377)] = 52874, - [SMALL_STATE(1378)] = 52900, - [SMALL_STATE(1379)] = 52926, - [SMALL_STATE(1380)] = 52970, - [SMALL_STATE(1381)] = 52995, - [SMALL_STATE(1382)] = 53036, - [SMALL_STATE(1383)] = 53061, - [SMALL_STATE(1384)] = 53092, - [SMALL_STATE(1385)] = 53135, - [SMALL_STATE(1386)] = 53178, - [SMALL_STATE(1387)] = 53221, - [SMALL_STATE(1388)] = 53246, - [SMALL_STATE(1389)] = 53289, - [SMALL_STATE(1390)] = 53314, - [SMALL_STATE(1391)] = 53339, - [SMALL_STATE(1392)] = 53364, - [SMALL_STATE(1393)] = 53389, - [SMALL_STATE(1394)] = 53436, - [SMALL_STATE(1395)] = 53479, - [SMALL_STATE(1396)] = 53526, - [SMALL_STATE(1397)] = 53569, - [SMALL_STATE(1398)] = 53594, - [SMALL_STATE(1399)] = 53619, - [SMALL_STATE(1400)] = 53662, - [SMALL_STATE(1401)] = 53687, - [SMALL_STATE(1402)] = 53712, - [SMALL_STATE(1403)] = 53737, - [SMALL_STATE(1404)] = 53762, - [SMALL_STATE(1405)] = 53787, - [SMALL_STATE(1406)] = 53812, - [SMALL_STATE(1407)] = 53837, - [SMALL_STATE(1408)] = 53862, - [SMALL_STATE(1409)] = 53903, - [SMALL_STATE(1410)] = 53946, - [SMALL_STATE(1411)] = 53987, - [SMALL_STATE(1412)] = 54012, - [SMALL_STATE(1413)] = 54037, - [SMALL_STATE(1414)] = 54078, - [SMALL_STATE(1415)] = 54103, - [SMALL_STATE(1416)] = 54128, - [SMALL_STATE(1417)] = 54168, - [SMALL_STATE(1418)] = 54208, - [SMALL_STATE(1419)] = 54248, - [SMALL_STATE(1420)] = 54284, - [SMALL_STATE(1421)] = 54321, - [SMALL_STATE(1422)] = 54346, - [SMALL_STATE(1423)] = 54381, - [SMALL_STATE(1424)] = 54416, - [SMALL_STATE(1425)] = 54447, - [SMALL_STATE(1426)] = 54472, - [SMALL_STATE(1427)] = 54505, - [SMALL_STATE(1428)] = 54538, - [SMALL_STATE(1429)] = 54573, - [SMALL_STATE(1430)] = 54610, - [SMALL_STATE(1431)] = 54647, - [SMALL_STATE(1432)] = 54672, - [SMALL_STATE(1433)] = 54709, - [SMALL_STATE(1434)] = 54734, - [SMALL_STATE(1435)] = 54771, - [SMALL_STATE(1436)] = 54805, - [SMALL_STATE(1437)] = 54833, - [SMALL_STATE(1438)] = 54865, - [SMALL_STATE(1439)] = 54899, - [SMALL_STATE(1440)] = 54923, - [SMALL_STATE(1441)] = 54957, - [SMALL_STATE(1442)] = 54985, - [SMALL_STATE(1443)] = 55019, - [SMALL_STATE(1444)] = 55045, - [SMALL_STATE(1445)] = 55077, - [SMALL_STATE(1446)] = 55101, - [SMALL_STATE(1447)] = 55135, - [SMALL_STATE(1448)] = 55159, - [SMALL_STATE(1449)] = 55183, - [SMALL_STATE(1450)] = 55207, - [SMALL_STATE(1451)] = 55237, - [SMALL_STATE(1452)] = 55269, - [SMALL_STATE(1453)] = 55297, - [SMALL_STATE(1454)] = 55325, - [SMALL_STATE(1455)] = 55349, - [SMALL_STATE(1456)] = 55376, - [SMALL_STATE(1457)] = 55405, - [SMALL_STATE(1458)] = 55432, - [SMALL_STATE(1459)] = 55461, - [SMALL_STATE(1460)] = 55492, - [SMALL_STATE(1461)] = 55521, - [SMALL_STATE(1462)] = 55552, - [SMALL_STATE(1463)] = 55581, - [SMALL_STATE(1464)] = 55608, - [SMALL_STATE(1465)] = 55637, - [SMALL_STATE(1466)] = 55668, - [SMALL_STATE(1467)] = 55697, - [SMALL_STATE(1468)] = 55726, - [SMALL_STATE(1469)] = 55755, - [SMALL_STATE(1470)] = 55778, - [SMALL_STATE(1471)] = 55807, - [SMALL_STATE(1472)] = 55836, - [SMALL_STATE(1473)] = 55863, - [SMALL_STATE(1474)] = 55896, - [SMALL_STATE(1475)] = 55927, - [SMALL_STATE(1476)] = 55958, - [SMALL_STATE(1477)] = 55983, - [SMALL_STATE(1478)] = 56012, - [SMALL_STATE(1479)] = 56041, - [SMALL_STATE(1480)] = 56070, - [SMALL_STATE(1481)] = 56099, - [SMALL_STATE(1482)] = 56128, - [SMALL_STATE(1483)] = 56159, - [SMALL_STATE(1484)] = 56190, - [SMALL_STATE(1485)] = 56221, - [SMALL_STATE(1486)] = 56248, - [SMALL_STATE(1487)] = 56277, - [SMALL_STATE(1488)] = 56306, - [SMALL_STATE(1489)] = 56335, - [SMALL_STATE(1490)] = 56366, - [SMALL_STATE(1491)] = 56399, - [SMALL_STATE(1492)] = 56426, - [SMALL_STATE(1493)] = 56449, - [SMALL_STATE(1494)] = 56478, - [SMALL_STATE(1495)] = 56507, - [SMALL_STATE(1496)] = 56536, - [SMALL_STATE(1497)] = 56565, - [SMALL_STATE(1498)] = 56592, - [SMALL_STATE(1499)] = 56621, - [SMALL_STATE(1500)] = 56648, - [SMALL_STATE(1501)] = 56677, - [SMALL_STATE(1502)] = 56708, - [SMALL_STATE(1503)] = 56739, - [SMALL_STATE(1504)] = 56768, - [SMALL_STATE(1505)] = 56795, - [SMALL_STATE(1506)] = 56824, - [SMALL_STATE(1507)] = 56853, - [SMALL_STATE(1508)] = 56882, - [SMALL_STATE(1509)] = 56905, - [SMALL_STATE(1510)] = 56934, - [SMALL_STATE(1511)] = 56959, - [SMALL_STATE(1512)] = 56986, - [SMALL_STATE(1513)] = 57015, - [SMALL_STATE(1514)] = 57040, - [SMALL_STATE(1515)] = 57071, - [SMALL_STATE(1516)] = 57102, - [SMALL_STATE(1517)] = 57129, - [SMALL_STATE(1518)] = 57163, - [SMALL_STATE(1519)] = 57197, - [SMALL_STATE(1520)] = 57225, - [SMALL_STATE(1521)] = 57259, - [SMALL_STATE(1522)] = 57293, - [SMALL_STATE(1523)] = 57319, - [SMALL_STATE(1524)] = 57353, - [SMALL_STATE(1525)] = 57387, - [SMALL_STATE(1526)] = 57417, - [SMALL_STATE(1527)] = 57443, - [SMALL_STATE(1528)] = 57469, - [SMALL_STATE(1529)] = 57495, - [SMALL_STATE(1530)] = 57527, - [SMALL_STATE(1531)] = 57557, - [SMALL_STATE(1532)] = 57580, - [SMALL_STATE(1533)] = 57601, - [SMALL_STATE(1534)] = 57624, - [SMALL_STATE(1535)] = 57647, - [SMALL_STATE(1536)] = 57670, - [SMALL_STATE(1537)] = 57693, - [SMALL_STATE(1538)] = 57720, - [SMALL_STATE(1539)] = 57741, - [SMALL_STATE(1540)] = 57768, - [SMALL_STATE(1541)] = 57789, - [SMALL_STATE(1542)] = 57810, - [SMALL_STATE(1543)] = 57831, - [SMALL_STATE(1544)] = 57860, - [SMALL_STATE(1545)] = 57881, - [SMALL_STATE(1546)] = 57904, - [SMALL_STATE(1547)] = 57925, - [SMALL_STATE(1548)] = 57952, - [SMALL_STATE(1549)] = 57975, - [SMALL_STATE(1550)] = 57998, - [SMALL_STATE(1551)] = 58025, - [SMALL_STATE(1552)] = 58048, - [SMALL_STATE(1553)] = 58069, - [SMALL_STATE(1554)] = 58096, - [SMALL_STATE(1555)] = 58119, - [SMALL_STATE(1556)] = 58140, - [SMALL_STATE(1557)] = 58161, - [SMALL_STATE(1558)] = 58184, - [SMALL_STATE(1559)] = 58207, - [SMALL_STATE(1560)] = 58230, - [SMALL_STATE(1561)] = 58253, - [SMALL_STATE(1562)] = 58276, - [SMALL_STATE(1563)] = 58303, - [SMALL_STATE(1564)] = 58324, - [SMALL_STATE(1565)] = 58351, - [SMALL_STATE(1566)] = 58376, - [SMALL_STATE(1567)] = 58399, - [SMALL_STATE(1568)] = 58420, - [SMALL_STATE(1569)] = 58441, - [SMALL_STATE(1570)] = 58464, - [SMALL_STATE(1571)] = 58495, - [SMALL_STATE(1572)] = 58518, - [SMALL_STATE(1573)] = 58541, - [SMALL_STATE(1574)] = 58562, - [SMALL_STATE(1575)] = 58585, - [SMALL_STATE(1576)] = 58608, - [SMALL_STATE(1577)] = 58636, - [SMALL_STATE(1578)] = 58664, - [SMALL_STATE(1579)] = 58692, - [SMALL_STATE(1580)] = 58718, - [SMALL_STATE(1581)] = 58746, - [SMALL_STATE(1582)] = 58774, - [SMALL_STATE(1583)] = 58802, - [SMALL_STATE(1584)] = 58830, - [SMALL_STATE(1585)] = 58856, - [SMALL_STATE(1586)] = 58884, - [SMALL_STATE(1587)] = 58912, - [SMALL_STATE(1588)] = 58940, - [SMALL_STATE(1589)] = 58968, - [SMALL_STATE(1590)] = 58996, - [SMALL_STATE(1591)] = 59024, - [SMALL_STATE(1592)] = 59052, - [SMALL_STATE(1593)] = 59080, - [SMALL_STATE(1594)] = 59108, - [SMALL_STATE(1595)] = 59136, - [SMALL_STATE(1596)] = 59158, - [SMALL_STATE(1597)] = 59178, - [SMALL_STATE(1598)] = 59198, - [SMALL_STATE(1599)] = 59226, - [SMALL_STATE(1600)] = 59246, - [SMALL_STATE(1601)] = 59266, - [SMALL_STATE(1602)] = 59286, - [SMALL_STATE(1603)] = 59314, - [SMALL_STATE(1604)] = 59342, - [SMALL_STATE(1605)] = 59366, - [SMALL_STATE(1606)] = 59394, - [SMALL_STATE(1607)] = 59420, - [SMALL_STATE(1608)] = 59448, - [SMALL_STATE(1609)] = 59468, - [SMALL_STATE(1610)] = 59488, - [SMALL_STATE(1611)] = 59508, - [SMALL_STATE(1612)] = 59536, - [SMALL_STATE(1613)] = 59564, - [SMALL_STATE(1614)] = 59592, - [SMALL_STATE(1615)] = 59612, - [SMALL_STATE(1616)] = 59638, - [SMALL_STATE(1617)] = 59658, - [SMALL_STATE(1618)] = 59686, - [SMALL_STATE(1619)] = 59706, - [SMALL_STATE(1620)] = 59732, - [SMALL_STATE(1621)] = 59760, - [SMALL_STATE(1622)] = 59788, - [SMALL_STATE(1623)] = 59814, - [SMALL_STATE(1624)] = 59834, - [SMALL_STATE(1625)] = 59862, - [SMALL_STATE(1626)] = 59890, - [SMALL_STATE(1627)] = 59910, - [SMALL_STATE(1628)] = 59934, - [SMALL_STATE(1629)] = 59954, - [SMALL_STATE(1630)] = 59974, - [SMALL_STATE(1631)] = 60002, - [SMALL_STATE(1632)] = 60026, - [SMALL_STATE(1633)] = 60054, - [SMALL_STATE(1634)] = 60082, - [SMALL_STATE(1635)] = 60108, - [SMALL_STATE(1636)] = 60136, - [SMALL_STATE(1637)] = 60160, - [SMALL_STATE(1638)] = 60186, - [SMALL_STATE(1639)] = 60212, - [SMALL_STATE(1640)] = 60240, - [SMALL_STATE(1641)] = 60268, - [SMALL_STATE(1642)] = 60292, - [SMALL_STATE(1643)] = 60318, - [SMALL_STATE(1644)] = 60346, - [SMALL_STATE(1645)] = 60366, - [SMALL_STATE(1646)] = 60394, - [SMALL_STATE(1647)] = 60414, - [SMALL_STATE(1648)] = 60434, - [SMALL_STATE(1649)] = 60460, - [SMALL_STATE(1650)] = 60480, - [SMALL_STATE(1651)] = 60500, - [SMALL_STATE(1652)] = 60526, - [SMALL_STATE(1653)] = 60554, - [SMALL_STATE(1654)] = 60582, - [SMALL_STATE(1655)] = 60610, - [SMALL_STATE(1656)] = 60633, - [SMALL_STATE(1657)] = 60654, - [SMALL_STATE(1658)] = 60679, - [SMALL_STATE(1659)] = 60704, - [SMALL_STATE(1660)] = 60729, - [SMALL_STATE(1661)] = 60748, - [SMALL_STATE(1662)] = 60769, - [SMALL_STATE(1663)] = 60794, - [SMALL_STATE(1664)] = 60813, - [SMALL_STATE(1665)] = 60838, - [SMALL_STATE(1666)] = 60857, - [SMALL_STATE(1667)] = 60878, - [SMALL_STATE(1668)] = 60901, - [SMALL_STATE(1669)] = 60922, - [SMALL_STATE(1670)] = 60943, - [SMALL_STATE(1671)] = 60964, - [SMALL_STATE(1672)] = 60985, - [SMALL_STATE(1673)] = 61004, - [SMALL_STATE(1674)] = 61029, - [SMALL_STATE(1675)] = 61052, - [SMALL_STATE(1676)] = 61075, - [SMALL_STATE(1677)] = 61096, - [SMALL_STATE(1678)] = 61121, - [SMALL_STATE(1679)] = 61142, - [SMALL_STATE(1680)] = 61163, - [SMALL_STATE(1681)] = 61188, - [SMALL_STATE(1682)] = 61209, - [SMALL_STATE(1683)] = 61232, - [SMALL_STATE(1684)] = 61257, - [SMALL_STATE(1685)] = 61280, - [SMALL_STATE(1686)] = 61301, - [SMALL_STATE(1687)] = 61320, - [SMALL_STATE(1688)] = 61343, - [SMALL_STATE(1689)] = 61366, - [SMALL_STATE(1690)] = 61387, - [SMALL_STATE(1691)] = 61408, - [SMALL_STATE(1692)] = 61427, - [SMALL_STATE(1693)] = 61448, - [SMALL_STATE(1694)] = 61473, - [SMALL_STATE(1695)] = 61494, - [SMALL_STATE(1696)] = 61511, - [SMALL_STATE(1697)] = 61532, - [SMALL_STATE(1698)] = 61551, - [SMALL_STATE(1699)] = 61568, - [SMALL_STATE(1700)] = 61589, - [SMALL_STATE(1701)] = 61610, - [SMALL_STATE(1702)] = 61631, - [SMALL_STATE(1703)] = 61656, - [SMALL_STATE(1704)] = 61675, - [SMALL_STATE(1705)] = 61698, - [SMALL_STATE(1706)] = 61715, - [SMALL_STATE(1707)] = 61736, - [SMALL_STATE(1708)] = 61761, - [SMALL_STATE(1709)] = 61784, - [SMALL_STATE(1710)] = 61809, - [SMALL_STATE(1711)] = 61832, - [SMALL_STATE(1712)] = 61853, - [SMALL_STATE(1713)] = 61872, - [SMALL_STATE(1714)] = 61897, - [SMALL_STATE(1715)] = 61916, - [SMALL_STATE(1716)] = 61941, - [SMALL_STATE(1717)] = 61960, - [SMALL_STATE(1718)] = 61983, - [SMALL_STATE(1719)] = 62004, - [SMALL_STATE(1720)] = 62025, - [SMALL_STATE(1721)] = 62046, - [SMALL_STATE(1722)] = 62071, - [SMALL_STATE(1723)] = 62096, - [SMALL_STATE(1724)] = 62121, - [SMALL_STATE(1725)] = 62146, - [SMALL_STATE(1726)] = 62167, - [SMALL_STATE(1727)] = 62190, - [SMALL_STATE(1728)] = 62213, - [SMALL_STATE(1729)] = 62234, - [SMALL_STATE(1730)] = 62255, - [SMALL_STATE(1731)] = 62276, - [SMALL_STATE(1732)] = 62301, - [SMALL_STATE(1733)] = 62324, - [SMALL_STATE(1734)] = 62341, - [SMALL_STATE(1735)] = 62366, - [SMALL_STATE(1736)] = 62389, - [SMALL_STATE(1737)] = 62412, - [SMALL_STATE(1738)] = 62433, - [SMALL_STATE(1739)] = 62452, - [SMALL_STATE(1740)] = 62475, - [SMALL_STATE(1741)] = 62492, - [SMALL_STATE(1742)] = 62513, - [SMALL_STATE(1743)] = 62534, - [SMALL_STATE(1744)] = 62559, - [SMALL_STATE(1745)] = 62580, - [SMALL_STATE(1746)] = 62601, - [SMALL_STATE(1747)] = 62624, - [SMALL_STATE(1748)] = 62647, - [SMALL_STATE(1749)] = 62668, - [SMALL_STATE(1750)] = 62693, - [SMALL_STATE(1751)] = 62716, - [SMALL_STATE(1752)] = 62739, - [SMALL_STATE(1753)] = 62760, - [SMALL_STATE(1754)] = 62783, - [SMALL_STATE(1755)] = 62804, - [SMALL_STATE(1756)] = 62827, - [SMALL_STATE(1757)] = 62852, - [SMALL_STATE(1758)] = 62873, - [SMALL_STATE(1759)] = 62895, - [SMALL_STATE(1760)] = 62917, - [SMALL_STATE(1761)] = 62937, - [SMALL_STATE(1762)] = 62953, - [SMALL_STATE(1763)] = 62975, - [SMALL_STATE(1764)] = 62995, - [SMALL_STATE(1765)] = 63011, - [SMALL_STATE(1766)] = 63027, - [SMALL_STATE(1767)] = 63043, - [SMALL_STATE(1768)] = 63065, - [SMALL_STATE(1769)] = 63087, - [SMALL_STATE(1770)] = 63107, - [SMALL_STATE(1771)] = 63123, - [SMALL_STATE(1772)] = 63139, - [SMALL_STATE(1773)] = 63159, - [SMALL_STATE(1774)] = 63179, - [SMALL_STATE(1775)] = 63199, - [SMALL_STATE(1776)] = 63219, - [SMALL_STATE(1777)] = 63237, - [SMALL_STATE(1778)] = 63259, - [SMALL_STATE(1779)] = 63279, - [SMALL_STATE(1780)] = 63295, - [SMALL_STATE(1781)] = 63315, - [SMALL_STATE(1782)] = 63331, - [SMALL_STATE(1783)] = 63353, - [SMALL_STATE(1784)] = 63369, - [SMALL_STATE(1785)] = 63389, - [SMALL_STATE(1786)] = 63407, - [SMALL_STATE(1787)] = 63429, - [SMALL_STATE(1788)] = 63449, - [SMALL_STATE(1789)] = 63469, - [SMALL_STATE(1790)] = 63491, - [SMALL_STATE(1791)] = 63509, - [SMALL_STATE(1792)] = 63529, - [SMALL_STATE(1793)] = 63551, - [SMALL_STATE(1794)] = 63571, - [SMALL_STATE(1795)] = 63593, - [SMALL_STATE(1796)] = 63615, - [SMALL_STATE(1797)] = 63631, - [SMALL_STATE(1798)] = 63653, - [SMALL_STATE(1799)] = 63675, - [SMALL_STATE(1800)] = 63695, - [SMALL_STATE(1801)] = 63717, - [SMALL_STATE(1802)] = 63739, - [SMALL_STATE(1803)] = 63755, - [SMALL_STATE(1804)] = 63777, - [SMALL_STATE(1805)] = 63799, - [SMALL_STATE(1806)] = 63821, - [SMALL_STATE(1807)] = 63843, - [SMALL_STATE(1808)] = 63865, - [SMALL_STATE(1809)] = 63887, - [SMALL_STATE(1810)] = 63905, - [SMALL_STATE(1811)] = 63925, - [SMALL_STATE(1812)] = 63947, - [SMALL_STATE(1813)] = 63969, - [SMALL_STATE(1814)] = 63991, - [SMALL_STATE(1815)] = 64013, - [SMALL_STATE(1816)] = 64031, - [SMALL_STATE(1817)] = 64053, - [SMALL_STATE(1818)] = 64075, - [SMALL_STATE(1819)] = 64095, - [SMALL_STATE(1820)] = 64117, - [SMALL_STATE(1821)] = 64135, - [SMALL_STATE(1822)] = 64155, - [SMALL_STATE(1823)] = 64175, - [SMALL_STATE(1824)] = 64193, - [SMALL_STATE(1825)] = 64215, - [SMALL_STATE(1826)] = 64233, - [SMALL_STATE(1827)] = 64251, - [SMALL_STATE(1828)] = 64273, - [SMALL_STATE(1829)] = 64295, - [SMALL_STATE(1830)] = 64317, - [SMALL_STATE(1831)] = 64333, - [SMALL_STATE(1832)] = 64349, - [SMALL_STATE(1833)] = 64365, - [SMALL_STATE(1834)] = 64385, - [SMALL_STATE(1835)] = 64407, - [SMALL_STATE(1836)] = 64427, - [SMALL_STATE(1837)] = 64449, - [SMALL_STATE(1838)] = 64471, - [SMALL_STATE(1839)] = 64493, - [SMALL_STATE(1840)] = 64509, - [SMALL_STATE(1841)] = 64531, - [SMALL_STATE(1842)] = 64551, - [SMALL_STATE(1843)] = 64573, - [SMALL_STATE(1844)] = 64595, - [SMALL_STATE(1845)] = 64615, - [SMALL_STATE(1846)] = 64637, - [SMALL_STATE(1847)] = 64657, - [SMALL_STATE(1848)] = 64679, - [SMALL_STATE(1849)] = 64695, - [SMALL_STATE(1850)] = 64717, - [SMALL_STATE(1851)] = 64739, - [SMALL_STATE(1852)] = 64761, - [SMALL_STATE(1853)] = 64783, - [SMALL_STATE(1854)] = 64805, - [SMALL_STATE(1855)] = 64825, - [SMALL_STATE(1856)] = 64845, - [SMALL_STATE(1857)] = 64865, - [SMALL_STATE(1858)] = 64885, - [SMALL_STATE(1859)] = 64905, - [SMALL_STATE(1860)] = 64925, - [SMALL_STATE(1861)] = 64945, - [SMALL_STATE(1862)] = 64963, - [SMALL_STATE(1863)] = 64983, - [SMALL_STATE(1864)] = 65003, - [SMALL_STATE(1865)] = 65023, - [SMALL_STATE(1866)] = 65045, - [SMALL_STATE(1867)] = 65067, - [SMALL_STATE(1868)] = 65089, - [SMALL_STATE(1869)] = 65111, - [SMALL_STATE(1870)] = 65133, - [SMALL_STATE(1871)] = 65151, - [SMALL_STATE(1872)] = 65171, - [SMALL_STATE(1873)] = 65193, - [SMALL_STATE(1874)] = 65215, - [SMALL_STATE(1875)] = 65231, - [SMALL_STATE(1876)] = 65251, - [SMALL_STATE(1877)] = 65271, - [SMALL_STATE(1878)] = 65287, - [SMALL_STATE(1879)] = 65309, - [SMALL_STATE(1880)] = 65331, - [SMALL_STATE(1881)] = 65351, - [SMALL_STATE(1882)] = 65371, - [SMALL_STATE(1883)] = 65393, - [SMALL_STATE(1884)] = 65415, - [SMALL_STATE(1885)] = 65437, - [SMALL_STATE(1886)] = 65455, - [SMALL_STATE(1887)] = 65475, - [SMALL_STATE(1888)] = 65495, - [SMALL_STATE(1889)] = 65513, - [SMALL_STATE(1890)] = 65533, - [SMALL_STATE(1891)] = 65549, - [SMALL_STATE(1892)] = 65569, - [SMALL_STATE(1893)] = 65591, - [SMALL_STATE(1894)] = 65611, - [SMALL_STATE(1895)] = 65633, - [SMALL_STATE(1896)] = 65653, - [SMALL_STATE(1897)] = 65673, - [SMALL_STATE(1898)] = 65695, - [SMALL_STATE(1899)] = 65717, - [SMALL_STATE(1900)] = 65739, - [SMALL_STATE(1901)] = 65761, - [SMALL_STATE(1902)] = 65777, - [SMALL_STATE(1903)] = 65795, - [SMALL_STATE(1904)] = 65813, - [SMALL_STATE(1905)] = 65833, - [SMALL_STATE(1906)] = 65853, - [SMALL_STATE(1907)] = 65873, - [SMALL_STATE(1908)] = 65895, - [SMALL_STATE(1909)] = 65915, - [SMALL_STATE(1910)] = 65933, - [SMALL_STATE(1911)] = 65953, - [SMALL_STATE(1912)] = 65973, - [SMALL_STATE(1913)] = 65992, - [SMALL_STATE(1914)] = 66009, - [SMALL_STATE(1915)] = 66026, - [SMALL_STATE(1916)] = 66043, - [SMALL_STATE(1917)] = 66060, - [SMALL_STATE(1918)] = 66077, - [SMALL_STATE(1919)] = 66094, - [SMALL_STATE(1920)] = 66113, - [SMALL_STATE(1921)] = 66132, - [SMALL_STATE(1922)] = 66151, - [SMALL_STATE(1923)] = 66168, - [SMALL_STATE(1924)] = 66187, - [SMALL_STATE(1925)] = 66202, - [SMALL_STATE(1926)] = 66221, - [SMALL_STATE(1927)] = 66238, - [SMALL_STATE(1928)] = 66255, - [SMALL_STATE(1929)] = 66270, - [SMALL_STATE(1930)] = 66285, - [SMALL_STATE(1931)] = 66304, - [SMALL_STATE(1932)] = 66321, - [SMALL_STATE(1933)] = 66338, - [SMALL_STATE(1934)] = 66355, - [SMALL_STATE(1935)] = 66372, - [SMALL_STATE(1936)] = 66389, - [SMALL_STATE(1937)] = 66408, - [SMALL_STATE(1938)] = 66425, - [SMALL_STATE(1939)] = 66440, - [SMALL_STATE(1940)] = 66459, - [SMALL_STATE(1941)] = 66478, - [SMALL_STATE(1942)] = 66495, - [SMALL_STATE(1943)] = 66512, - [SMALL_STATE(1944)] = 66529, - [SMALL_STATE(1945)] = 66546, - [SMALL_STATE(1946)] = 66563, - [SMALL_STATE(1947)] = 66582, - [SMALL_STATE(1948)] = 66599, - [SMALL_STATE(1949)] = 66618, - [SMALL_STATE(1950)] = 66637, - [SMALL_STATE(1951)] = 66656, - [SMALL_STATE(1952)] = 66673, - [SMALL_STATE(1953)] = 66688, - [SMALL_STATE(1954)] = 66705, - [SMALL_STATE(1955)] = 66724, - [SMALL_STATE(1956)] = 66743, - [SMALL_STATE(1957)] = 66758, - [SMALL_STATE(1958)] = 66775, - [SMALL_STATE(1959)] = 66792, - [SMALL_STATE(1960)] = 66811, - [SMALL_STATE(1961)] = 66830, - [SMALL_STATE(1962)] = 66847, - [SMALL_STATE(1963)] = 66864, - [SMALL_STATE(1964)] = 66881, - [SMALL_STATE(1965)] = 66900, - [SMALL_STATE(1966)] = 66917, - [SMALL_STATE(1967)] = 66934, - [SMALL_STATE(1968)] = 66951, - [SMALL_STATE(1969)] = 66968, - [SMALL_STATE(1970)] = 66985, - [SMALL_STATE(1971)] = 67004, - [SMALL_STATE(1972)] = 67021, - [SMALL_STATE(1973)] = 67038, - [SMALL_STATE(1974)] = 67055, - [SMALL_STATE(1975)] = 67074, - [SMALL_STATE(1976)] = 67091, - [SMALL_STATE(1977)] = 67108, - [SMALL_STATE(1978)] = 67125, - [SMALL_STATE(1979)] = 67142, - [SMALL_STATE(1980)] = 67161, - [SMALL_STATE(1981)] = 67178, - [SMALL_STATE(1982)] = 67195, - [SMALL_STATE(1983)] = 67212, - [SMALL_STATE(1984)] = 67231, - [SMALL_STATE(1985)] = 67248, - [SMALL_STATE(1986)] = 67265, - [SMALL_STATE(1987)] = 67284, - [SMALL_STATE(1988)] = 67301, - [SMALL_STATE(1989)] = 67318, - [SMALL_STATE(1990)] = 67335, - [SMALL_STATE(1991)] = 67352, - [SMALL_STATE(1992)] = 67371, - [SMALL_STATE(1993)] = 67390, - [SMALL_STATE(1994)] = 67405, - [SMALL_STATE(1995)] = 67424, - [SMALL_STATE(1996)] = 67441, - [SMALL_STATE(1997)] = 67458, - [SMALL_STATE(1998)] = 67475, - [SMALL_STATE(1999)] = 67494, - [SMALL_STATE(2000)] = 67513, - [SMALL_STATE(2001)] = 67530, - [SMALL_STATE(2002)] = 67547, - [SMALL_STATE(2003)] = 67564, - [SMALL_STATE(2004)] = 67581, - [SMALL_STATE(2005)] = 67600, - [SMALL_STATE(2006)] = 67617, - [SMALL_STATE(2007)] = 67636, - [SMALL_STATE(2008)] = 67655, - [SMALL_STATE(2009)] = 67674, - [SMALL_STATE(2010)] = 67691, - [SMALL_STATE(2011)] = 67708, - [SMALL_STATE(2012)] = 67727, - [SMALL_STATE(2013)] = 67746, - [SMALL_STATE(2014)] = 67763, - [SMALL_STATE(2015)] = 67780, - [SMALL_STATE(2016)] = 67795, - [SMALL_STATE(2017)] = 67814, - [SMALL_STATE(2018)] = 67831, - [SMALL_STATE(2019)] = 67850, - [SMALL_STATE(2020)] = 67869, - [SMALL_STATE(2021)] = 67886, - [SMALL_STATE(2022)] = 67905, - [SMALL_STATE(2023)] = 67922, - [SMALL_STATE(2024)] = 67937, - [SMALL_STATE(2025)] = 67956, - [SMALL_STATE(2026)] = 67975, - [SMALL_STATE(2027)] = 67992, - [SMALL_STATE(2028)] = 68011, - [SMALL_STATE(2029)] = 68028, - [SMALL_STATE(2030)] = 68047, - [SMALL_STATE(2031)] = 68064, - [SMALL_STATE(2032)] = 68081, - [SMALL_STATE(2033)] = 68098, - [SMALL_STATE(2034)] = 68115, - [SMALL_STATE(2035)] = 68132, - [SMALL_STATE(2036)] = 68147, - [SMALL_STATE(2037)] = 68164, - [SMALL_STATE(2038)] = 68183, - [SMALL_STATE(2039)] = 68200, - [SMALL_STATE(2040)] = 68217, - [SMALL_STATE(2041)] = 68236, - [SMALL_STATE(2042)] = 68255, - [SMALL_STATE(2043)] = 68272, - [SMALL_STATE(2044)] = 68289, - [SMALL_STATE(2045)] = 68306, - [SMALL_STATE(2046)] = 68323, - [SMALL_STATE(2047)] = 68340, - [SMALL_STATE(2048)] = 68357, - [SMALL_STATE(2049)] = 68374, - [SMALL_STATE(2050)] = 68393, - [SMALL_STATE(2051)] = 68410, - [SMALL_STATE(2052)] = 68425, - [SMALL_STATE(2053)] = 68444, - [SMALL_STATE(2054)] = 68461, - [SMALL_STATE(2055)] = 68476, - [SMALL_STATE(2056)] = 68491, - [SMALL_STATE(2057)] = 68508, - [SMALL_STATE(2058)] = 68527, - [SMALL_STATE(2059)] = 68544, - [SMALL_STATE(2060)] = 68561, - [SMALL_STATE(2061)] = 68576, - [SMALL_STATE(2062)] = 68595, - [SMALL_STATE(2063)] = 68612, - [SMALL_STATE(2064)] = 68629, - [SMALL_STATE(2065)] = 68648, - [SMALL_STATE(2066)] = 68665, - [SMALL_STATE(2067)] = 68684, - [SMALL_STATE(2068)] = 68701, - [SMALL_STATE(2069)] = 68720, - [SMALL_STATE(2070)] = 68739, - [SMALL_STATE(2071)] = 68756, - [SMALL_STATE(2072)] = 68775, - [SMALL_STATE(2073)] = 68792, - [SMALL_STATE(2074)] = 68809, - [SMALL_STATE(2075)] = 68826, - [SMALL_STATE(2076)] = 68843, - [SMALL_STATE(2077)] = 68858, - [SMALL_STATE(2078)] = 68873, - [SMALL_STATE(2079)] = 68892, - [SMALL_STATE(2080)] = 68911, - [SMALL_STATE(2081)] = 68928, - [SMALL_STATE(2082)] = 68945, - [SMALL_STATE(2083)] = 68964, - [SMALL_STATE(2084)] = 68981, - [SMALL_STATE(2085)] = 68998, - [SMALL_STATE(2086)] = 69015, - [SMALL_STATE(2087)] = 69032, - [SMALL_STATE(2088)] = 69051, - [SMALL_STATE(2089)] = 69068, - [SMALL_STATE(2090)] = 69085, - [SMALL_STATE(2091)] = 69104, - [SMALL_STATE(2092)] = 69123, - [SMALL_STATE(2093)] = 69142, - [SMALL_STATE(2094)] = 69157, - [SMALL_STATE(2095)] = 69176, - [SMALL_STATE(2096)] = 69195, - [SMALL_STATE(2097)] = 69210, - [SMALL_STATE(2098)] = 69227, - [SMALL_STATE(2099)] = 69242, - [SMALL_STATE(2100)] = 69261, - [SMALL_STATE(2101)] = 69276, - [SMALL_STATE(2102)] = 69295, - [SMALL_STATE(2103)] = 69312, - [SMALL_STATE(2104)] = 69331, - [SMALL_STATE(2105)] = 69348, - [SMALL_STATE(2106)] = 69365, - [SMALL_STATE(2107)] = 69384, - [SMALL_STATE(2108)] = 69401, - [SMALL_STATE(2109)] = 69418, - [SMALL_STATE(2110)] = 69437, - [SMALL_STATE(2111)] = 69454, - [SMALL_STATE(2112)] = 69473, - [SMALL_STATE(2113)] = 69490, - [SMALL_STATE(2114)] = 69507, - [SMALL_STATE(2115)] = 69524, - [SMALL_STATE(2116)] = 69539, - [SMALL_STATE(2117)] = 69558, - [SMALL_STATE(2118)] = 69575, - [SMALL_STATE(2119)] = 69592, - [SMALL_STATE(2120)] = 69607, - [SMALL_STATE(2121)] = 69624, - [SMALL_STATE(2122)] = 69641, - [SMALL_STATE(2123)] = 69658, - [SMALL_STATE(2124)] = 69673, - [SMALL_STATE(2125)] = 69690, - [SMALL_STATE(2126)] = 69709, - [SMALL_STATE(2127)] = 69726, - [SMALL_STATE(2128)] = 69745, - [SMALL_STATE(2129)] = 69762, - [SMALL_STATE(2130)] = 69777, - [SMALL_STATE(2131)] = 69796, - [SMALL_STATE(2132)] = 69815, - [SMALL_STATE(2133)] = 69834, - [SMALL_STATE(2134)] = 69849, - [SMALL_STATE(2135)] = 69868, - [SMALL_STATE(2136)] = 69887, - [SMALL_STATE(2137)] = 69904, - [SMALL_STATE(2138)] = 69923, - [SMALL_STATE(2139)] = 69940, - [SMALL_STATE(2140)] = 69959, - [SMALL_STATE(2141)] = 69978, - [SMALL_STATE(2142)] = 69997, - [SMALL_STATE(2143)] = 70012, - [SMALL_STATE(2144)] = 70031, - [SMALL_STATE(2145)] = 70050, - [SMALL_STATE(2146)] = 70067, - [SMALL_STATE(2147)] = 70086, - [SMALL_STATE(2148)] = 70105, - [SMALL_STATE(2149)] = 70124, - [SMALL_STATE(2150)] = 70143, - [SMALL_STATE(2151)] = 70160, - [SMALL_STATE(2152)] = 70177, - [SMALL_STATE(2153)] = 70194, - [SMALL_STATE(2154)] = 70211, - [SMALL_STATE(2155)] = 70228, - [SMALL_STATE(2156)] = 70247, - [SMALL_STATE(2157)] = 70266, - [SMALL_STATE(2158)] = 70283, - [SMALL_STATE(2159)] = 70300, - [SMALL_STATE(2160)] = 70317, - [SMALL_STATE(2161)] = 70336, - [SMALL_STATE(2162)] = 70355, - [SMALL_STATE(2163)] = 70372, - [SMALL_STATE(2164)] = 70389, - [SMALL_STATE(2165)] = 70406, - [SMALL_STATE(2166)] = 70423, - [SMALL_STATE(2167)] = 70442, - [SMALL_STATE(2168)] = 70461, - [SMALL_STATE(2169)] = 70478, - [SMALL_STATE(2170)] = 70497, - [SMALL_STATE(2171)] = 70514, - [SMALL_STATE(2172)] = 70533, - [SMALL_STATE(2173)] = 70552, - [SMALL_STATE(2174)] = 70569, - [SMALL_STATE(2175)] = 70586, - [SMALL_STATE(2176)] = 70603, - [SMALL_STATE(2177)] = 70620, - [SMALL_STATE(2178)] = 70637, - [SMALL_STATE(2179)] = 70656, - [SMALL_STATE(2180)] = 70675, - [SMALL_STATE(2181)] = 70692, - [SMALL_STATE(2182)] = 70711, - [SMALL_STATE(2183)] = 70728, - [SMALL_STATE(2184)] = 70745, - [SMALL_STATE(2185)] = 70762, - [SMALL_STATE(2186)] = 70779, - [SMALL_STATE(2187)] = 70793, - [SMALL_STATE(2188)] = 70807, - [SMALL_STATE(2189)] = 70823, - [SMALL_STATE(2190)] = 70839, - [SMALL_STATE(2191)] = 70853, - [SMALL_STATE(2192)] = 70869, - [SMALL_STATE(2193)] = 70883, - [SMALL_STATE(2194)] = 70897, - [SMALL_STATE(2195)] = 70911, - [SMALL_STATE(2196)] = 70927, - [SMALL_STATE(2197)] = 70943, - [SMALL_STATE(2198)] = 70957, - [SMALL_STATE(2199)] = 70971, - [SMALL_STATE(2200)] = 70987, - [SMALL_STATE(2201)] = 71003, - [SMALL_STATE(2202)] = 71017, - [SMALL_STATE(2203)] = 71033, - [SMALL_STATE(2204)] = 71047, - [SMALL_STATE(2205)] = 71063, - [SMALL_STATE(2206)] = 71077, - [SMALL_STATE(2207)] = 71093, - [SMALL_STATE(2208)] = 71109, - [SMALL_STATE(2209)] = 71125, - [SMALL_STATE(2210)] = 71141, - [SMALL_STATE(2211)] = 71157, - [SMALL_STATE(2212)] = 71171, - [SMALL_STATE(2213)] = 71187, - [SMALL_STATE(2214)] = 71201, - [SMALL_STATE(2215)] = 71217, - [SMALL_STATE(2216)] = 71231, - [SMALL_STATE(2217)] = 71247, - [SMALL_STATE(2218)] = 71261, - [SMALL_STATE(2219)] = 71277, - [SMALL_STATE(2220)] = 71291, - [SMALL_STATE(2221)] = 71305, - [SMALL_STATE(2222)] = 71321, - [SMALL_STATE(2223)] = 71337, - [SMALL_STATE(2224)] = 71351, - [SMALL_STATE(2225)] = 71365, - [SMALL_STATE(2226)] = 71381, - [SMALL_STATE(2227)] = 71397, - [SMALL_STATE(2228)] = 71411, - [SMALL_STATE(2229)] = 71425, - [SMALL_STATE(2230)] = 71441, - [SMALL_STATE(2231)] = 71455, - [SMALL_STATE(2232)] = 71471, - [SMALL_STATE(2233)] = 71487, - [SMALL_STATE(2234)] = 71503, - [SMALL_STATE(2235)] = 71519, - [SMALL_STATE(2236)] = 71535, - [SMALL_STATE(2237)] = 71551, - [SMALL_STATE(2238)] = 71567, - [SMALL_STATE(2239)] = 71581, - [SMALL_STATE(2240)] = 71597, - [SMALL_STATE(2241)] = 71613, - [SMALL_STATE(2242)] = 71629, - [SMALL_STATE(2243)] = 71645, - [SMALL_STATE(2244)] = 71661, - [SMALL_STATE(2245)] = 71677, - [SMALL_STATE(2246)] = 71693, - [SMALL_STATE(2247)] = 71707, - [SMALL_STATE(2248)] = 71721, - [SMALL_STATE(2249)] = 71737, - [SMALL_STATE(2250)] = 71751, - [SMALL_STATE(2251)] = 71767, - [SMALL_STATE(2252)] = 71781, - [SMALL_STATE(2253)] = 71797, - [SMALL_STATE(2254)] = 71813, - [SMALL_STATE(2255)] = 71829, - [SMALL_STATE(2256)] = 71843, - [SMALL_STATE(2257)] = 71859, - [SMALL_STATE(2258)] = 71873, - [SMALL_STATE(2259)] = 71887, - [SMALL_STATE(2260)] = 71903, - [SMALL_STATE(2261)] = 71919, - [SMALL_STATE(2262)] = 71933, - [SMALL_STATE(2263)] = 71949, - [SMALL_STATE(2264)] = 71963, - [SMALL_STATE(2265)] = 71979, - [SMALL_STATE(2266)] = 71995, - [SMALL_STATE(2267)] = 72011, - [SMALL_STATE(2268)] = 72027, - [SMALL_STATE(2269)] = 72043, - [SMALL_STATE(2270)] = 72059, - [SMALL_STATE(2271)] = 72075, - [SMALL_STATE(2272)] = 72089, - [SMALL_STATE(2273)] = 72103, - [SMALL_STATE(2274)] = 72117, - [SMALL_STATE(2275)] = 72133, - [SMALL_STATE(2276)] = 72149, - [SMALL_STATE(2277)] = 72165, - [SMALL_STATE(2278)] = 72181, - [SMALL_STATE(2279)] = 72197, - [SMALL_STATE(2280)] = 72213, - [SMALL_STATE(2281)] = 72229, - [SMALL_STATE(2282)] = 72245, - [SMALL_STATE(2283)] = 72261, - [SMALL_STATE(2284)] = 72275, - [SMALL_STATE(2285)] = 72291, - [SMALL_STATE(2286)] = 72307, - [SMALL_STATE(2287)] = 72323, - [SMALL_STATE(2288)] = 72337, - [SMALL_STATE(2289)] = 72353, - [SMALL_STATE(2290)] = 72369, - [SMALL_STATE(2291)] = 72385, - [SMALL_STATE(2292)] = 72399, - [SMALL_STATE(2293)] = 72415, - [SMALL_STATE(2294)] = 72431, - [SMALL_STATE(2295)] = 72447, - [SMALL_STATE(2296)] = 72461, - [SMALL_STATE(2297)] = 72477, - [SMALL_STATE(2298)] = 72493, - [SMALL_STATE(2299)] = 72507, - [SMALL_STATE(2300)] = 72523, - [SMALL_STATE(2301)] = 72537, - [SMALL_STATE(2302)] = 72551, - [SMALL_STATE(2303)] = 72567, - [SMALL_STATE(2304)] = 72581, - [SMALL_STATE(2305)] = 72597, - [SMALL_STATE(2306)] = 72613, - [SMALL_STATE(2307)] = 72629, - [SMALL_STATE(2308)] = 72643, - [SMALL_STATE(2309)] = 72657, - [SMALL_STATE(2310)] = 72673, - [SMALL_STATE(2311)] = 72689, - [SMALL_STATE(2312)] = 72705, - [SMALL_STATE(2313)] = 72719, - [SMALL_STATE(2314)] = 72733, - [SMALL_STATE(2315)] = 72749, - [SMALL_STATE(2316)] = 72765, - [SMALL_STATE(2317)] = 72781, - [SMALL_STATE(2318)] = 72795, - [SMALL_STATE(2319)] = 72809, - [SMALL_STATE(2320)] = 72825, - [SMALL_STATE(2321)] = 72839, - [SMALL_STATE(2322)] = 72853, - [SMALL_STATE(2323)] = 72867, - [SMALL_STATE(2324)] = 72883, - [SMALL_STATE(2325)] = 72899, - [SMALL_STATE(2326)] = 72915, - [SMALL_STATE(2327)] = 72929, - [SMALL_STATE(2328)] = 72943, - [SMALL_STATE(2329)] = 72959, - [SMALL_STATE(2330)] = 72973, - [SMALL_STATE(2331)] = 72987, - [SMALL_STATE(2332)] = 73001, - [SMALL_STATE(2333)] = 73015, - [SMALL_STATE(2334)] = 73029, - [SMALL_STATE(2335)] = 73043, - [SMALL_STATE(2336)] = 73057, - [SMALL_STATE(2337)] = 73073, - [SMALL_STATE(2338)] = 73089, - [SMALL_STATE(2339)] = 73105, - [SMALL_STATE(2340)] = 73121, - [SMALL_STATE(2341)] = 73137, - [SMALL_STATE(2342)] = 73151, - [SMALL_STATE(2343)] = 73167, - [SMALL_STATE(2344)] = 73181, - [SMALL_STATE(2345)] = 73197, - [SMALL_STATE(2346)] = 73211, - [SMALL_STATE(2347)] = 73227, - [SMALL_STATE(2348)] = 73241, - [SMALL_STATE(2349)] = 73257, - [SMALL_STATE(2350)] = 73271, - [SMALL_STATE(2351)] = 73285, - [SMALL_STATE(2352)] = 73301, - [SMALL_STATE(2353)] = 73317, - [SMALL_STATE(2354)] = 73333, - [SMALL_STATE(2355)] = 73347, - [SMALL_STATE(2356)] = 73361, - [SMALL_STATE(2357)] = 73377, - [SMALL_STATE(2358)] = 73393, - [SMALL_STATE(2359)] = 73407, - [SMALL_STATE(2360)] = 73423, - [SMALL_STATE(2361)] = 73439, - [SMALL_STATE(2362)] = 73453, - [SMALL_STATE(2363)] = 73469, - [SMALL_STATE(2364)] = 73485, - [SMALL_STATE(2365)] = 73501, - [SMALL_STATE(2366)] = 73517, - [SMALL_STATE(2367)] = 73533, - [SMALL_STATE(2368)] = 73547, - [SMALL_STATE(2369)] = 73561, - [SMALL_STATE(2370)] = 73577, - [SMALL_STATE(2371)] = 73591, - [SMALL_STATE(2372)] = 73607, - [SMALL_STATE(2373)] = 73623, - [SMALL_STATE(2374)] = 73639, - [SMALL_STATE(2375)] = 73653, - [SMALL_STATE(2376)] = 73667, - [SMALL_STATE(2377)] = 73683, - [SMALL_STATE(2378)] = 73699, - [SMALL_STATE(2379)] = 73713, - [SMALL_STATE(2380)] = 73729, - [SMALL_STATE(2381)] = 73745, - [SMALL_STATE(2382)] = 73759, - [SMALL_STATE(2383)] = 73773, - [SMALL_STATE(2384)] = 73789, - [SMALL_STATE(2385)] = 73803, - [SMALL_STATE(2386)] = 73819, - [SMALL_STATE(2387)] = 73835, - [SMALL_STATE(2388)] = 73849, - [SMALL_STATE(2389)] = 73865, - [SMALL_STATE(2390)] = 73881, - [SMALL_STATE(2391)] = 73895, - [SMALL_STATE(2392)] = 73911, - [SMALL_STATE(2393)] = 73925, - [SMALL_STATE(2394)] = 73941, - [SMALL_STATE(2395)] = 73955, - [SMALL_STATE(2396)] = 73969, - [SMALL_STATE(2397)] = 73985, - [SMALL_STATE(2398)] = 73999, - [SMALL_STATE(2399)] = 74015, - [SMALL_STATE(2400)] = 74031, - [SMALL_STATE(2401)] = 74045, - [SMALL_STATE(2402)] = 74059, - [SMALL_STATE(2403)] = 74075, - [SMALL_STATE(2404)] = 74091, - [SMALL_STATE(2405)] = 74107, - [SMALL_STATE(2406)] = 74123, - [SMALL_STATE(2407)] = 74139, - [SMALL_STATE(2408)] = 74155, - [SMALL_STATE(2409)] = 74171, - [SMALL_STATE(2410)] = 74187, - [SMALL_STATE(2411)] = 74203, - [SMALL_STATE(2412)] = 74219, - [SMALL_STATE(2413)] = 74235, - [SMALL_STATE(2414)] = 74251, - [SMALL_STATE(2415)] = 74267, - [SMALL_STATE(2416)] = 74283, - [SMALL_STATE(2417)] = 74297, - [SMALL_STATE(2418)] = 74311, - [SMALL_STATE(2419)] = 74325, - [SMALL_STATE(2420)] = 74341, - [SMALL_STATE(2421)] = 74357, - [SMALL_STATE(2422)] = 74371, - [SMALL_STATE(2423)] = 74387, - [SMALL_STATE(2424)] = 74403, - [SMALL_STATE(2425)] = 74417, - [SMALL_STATE(2426)] = 74431, - [SMALL_STATE(2427)] = 74447, - [SMALL_STATE(2428)] = 74463, - [SMALL_STATE(2429)] = 74479, - [SMALL_STATE(2430)] = 74495, - [SMALL_STATE(2431)] = 74511, - [SMALL_STATE(2432)] = 74527, - [SMALL_STATE(2433)] = 74543, - [SMALL_STATE(2434)] = 74559, - [SMALL_STATE(2435)] = 74573, - [SMALL_STATE(2436)] = 74589, - [SMALL_STATE(2437)] = 74605, - [SMALL_STATE(2438)] = 74621, - [SMALL_STATE(2439)] = 74635, - [SMALL_STATE(2440)] = 74651, - [SMALL_STATE(2441)] = 74667, - [SMALL_STATE(2442)] = 74683, - [SMALL_STATE(2443)] = 74699, - [SMALL_STATE(2444)] = 74713, - [SMALL_STATE(2445)] = 74729, - [SMALL_STATE(2446)] = 74745, - [SMALL_STATE(2447)] = 74759, - [SMALL_STATE(2448)] = 74773, - [SMALL_STATE(2449)] = 74789, - [SMALL_STATE(2450)] = 74803, - [SMALL_STATE(2451)] = 74819, - [SMALL_STATE(2452)] = 74835, - [SMALL_STATE(2453)] = 74849, - [SMALL_STATE(2454)] = 74865, - [SMALL_STATE(2455)] = 74881, - [SMALL_STATE(2456)] = 74895, - [SMALL_STATE(2457)] = 74911, - [SMALL_STATE(2458)] = 74927, - [SMALL_STATE(2459)] = 74943, - [SMALL_STATE(2460)] = 74956, - [SMALL_STATE(2461)] = 74969, - [SMALL_STATE(2462)] = 74982, - [SMALL_STATE(2463)] = 74995, - [SMALL_STATE(2464)] = 75008, - [SMALL_STATE(2465)] = 75021, - [SMALL_STATE(2466)] = 75034, - [SMALL_STATE(2467)] = 75047, - [SMALL_STATE(2468)] = 75060, - [SMALL_STATE(2469)] = 75073, - [SMALL_STATE(2470)] = 75086, - [SMALL_STATE(2471)] = 75099, - [SMALL_STATE(2472)] = 75112, - [SMALL_STATE(2473)] = 75125, - [SMALL_STATE(2474)] = 75138, - [SMALL_STATE(2475)] = 75151, - [SMALL_STATE(2476)] = 75164, - [SMALL_STATE(2477)] = 75177, - [SMALL_STATE(2478)] = 75190, - [SMALL_STATE(2479)] = 75203, - [SMALL_STATE(2480)] = 75216, - [SMALL_STATE(2481)] = 75229, - [SMALL_STATE(2482)] = 75242, - [SMALL_STATE(2483)] = 75255, - [SMALL_STATE(2484)] = 75268, - [SMALL_STATE(2485)] = 75281, - [SMALL_STATE(2486)] = 75294, - [SMALL_STATE(2487)] = 75307, - [SMALL_STATE(2488)] = 75320, - [SMALL_STATE(2489)] = 75333, - [SMALL_STATE(2490)] = 75346, - [SMALL_STATE(2491)] = 75359, - [SMALL_STATE(2492)] = 75372, - [SMALL_STATE(2493)] = 75385, - [SMALL_STATE(2494)] = 75398, - [SMALL_STATE(2495)] = 75411, - [SMALL_STATE(2496)] = 75424, - [SMALL_STATE(2497)] = 75437, - [SMALL_STATE(2498)] = 75450, - [SMALL_STATE(2499)] = 75463, - [SMALL_STATE(2500)] = 75476, - [SMALL_STATE(2501)] = 75489, - [SMALL_STATE(2502)] = 75502, - [SMALL_STATE(2503)] = 75515, - [SMALL_STATE(2504)] = 75528, - [SMALL_STATE(2505)] = 75541, - [SMALL_STATE(2506)] = 75554, - [SMALL_STATE(2507)] = 75567, - [SMALL_STATE(2508)] = 75580, - [SMALL_STATE(2509)] = 75593, - [SMALL_STATE(2510)] = 75606, - [SMALL_STATE(2511)] = 75619, - [SMALL_STATE(2512)] = 75632, - [SMALL_STATE(2513)] = 75645, - [SMALL_STATE(2514)] = 75658, - [SMALL_STATE(2515)] = 75671, - [SMALL_STATE(2516)] = 75684, - [SMALL_STATE(2517)] = 75697, - [SMALL_STATE(2518)] = 75710, - [SMALL_STATE(2519)] = 75723, - [SMALL_STATE(2520)] = 75736, - [SMALL_STATE(2521)] = 75749, - [SMALL_STATE(2522)] = 75762, - [SMALL_STATE(2523)] = 75775, - [SMALL_STATE(2524)] = 75788, - [SMALL_STATE(2525)] = 75801, - [SMALL_STATE(2526)] = 75814, - [SMALL_STATE(2527)] = 75827, - [SMALL_STATE(2528)] = 75840, - [SMALL_STATE(2529)] = 75853, - [SMALL_STATE(2530)] = 75866, - [SMALL_STATE(2531)] = 75879, - [SMALL_STATE(2532)] = 75892, - [SMALL_STATE(2533)] = 75905, - [SMALL_STATE(2534)] = 75918, - [SMALL_STATE(2535)] = 75931, - [SMALL_STATE(2536)] = 75944, - [SMALL_STATE(2537)] = 75957, - [SMALL_STATE(2538)] = 75970, - [SMALL_STATE(2539)] = 75983, - [SMALL_STATE(2540)] = 75996, - [SMALL_STATE(2541)] = 76009, - [SMALL_STATE(2542)] = 76022, - [SMALL_STATE(2543)] = 76035, - [SMALL_STATE(2544)] = 76048, - [SMALL_STATE(2545)] = 76061, - [SMALL_STATE(2546)] = 76074, - [SMALL_STATE(2547)] = 76087, - [SMALL_STATE(2548)] = 76100, - [SMALL_STATE(2549)] = 76113, - [SMALL_STATE(2550)] = 76126, - [SMALL_STATE(2551)] = 76139, - [SMALL_STATE(2552)] = 76152, - [SMALL_STATE(2553)] = 76165, - [SMALL_STATE(2554)] = 76178, - [SMALL_STATE(2555)] = 76191, - [SMALL_STATE(2556)] = 76204, - [SMALL_STATE(2557)] = 76217, - [SMALL_STATE(2558)] = 76230, - [SMALL_STATE(2559)] = 76243, - [SMALL_STATE(2560)] = 76256, - [SMALL_STATE(2561)] = 76269, - [SMALL_STATE(2562)] = 76282, - [SMALL_STATE(2563)] = 76295, - [SMALL_STATE(2564)] = 76308, - [SMALL_STATE(2565)] = 76321, - [SMALL_STATE(2566)] = 76334, - [SMALL_STATE(2567)] = 76347, - [SMALL_STATE(2568)] = 76360, - [SMALL_STATE(2569)] = 76373, - [SMALL_STATE(2570)] = 76386, - [SMALL_STATE(2571)] = 76399, - [SMALL_STATE(2572)] = 76412, - [SMALL_STATE(2573)] = 76425, - [SMALL_STATE(2574)] = 76438, - [SMALL_STATE(2575)] = 76451, - [SMALL_STATE(2576)] = 76464, - [SMALL_STATE(2577)] = 76477, - [SMALL_STATE(2578)] = 76490, - [SMALL_STATE(2579)] = 76503, - [SMALL_STATE(2580)] = 76516, - [SMALL_STATE(2581)] = 76529, - [SMALL_STATE(2582)] = 76542, - [SMALL_STATE(2583)] = 76555, - [SMALL_STATE(2584)] = 76568, - [SMALL_STATE(2585)] = 76581, - [SMALL_STATE(2586)] = 76594, - [SMALL_STATE(2587)] = 76607, - [SMALL_STATE(2588)] = 76620, - [SMALL_STATE(2589)] = 76633, - [SMALL_STATE(2590)] = 76646, - [SMALL_STATE(2591)] = 76659, - [SMALL_STATE(2592)] = 76672, - [SMALL_STATE(2593)] = 76685, - [SMALL_STATE(2594)] = 76698, - [SMALL_STATE(2595)] = 76711, - [SMALL_STATE(2596)] = 76724, - [SMALL_STATE(2597)] = 76737, - [SMALL_STATE(2598)] = 76750, - [SMALL_STATE(2599)] = 76763, - [SMALL_STATE(2600)] = 76776, - [SMALL_STATE(2601)] = 76789, - [SMALL_STATE(2602)] = 76802, - [SMALL_STATE(2603)] = 76815, - [SMALL_STATE(2604)] = 76828, - [SMALL_STATE(2605)] = 76841, - [SMALL_STATE(2606)] = 76854, - [SMALL_STATE(2607)] = 76867, - [SMALL_STATE(2608)] = 76880, - [SMALL_STATE(2609)] = 76893, - [SMALL_STATE(2610)] = 76906, - [SMALL_STATE(2611)] = 76919, - [SMALL_STATE(2612)] = 76932, - [SMALL_STATE(2613)] = 76945, - [SMALL_STATE(2614)] = 76958, - [SMALL_STATE(2615)] = 76971, - [SMALL_STATE(2616)] = 76984, - [SMALL_STATE(2617)] = 76997, - [SMALL_STATE(2618)] = 77010, - [SMALL_STATE(2619)] = 77023, - [SMALL_STATE(2620)] = 77036, - [SMALL_STATE(2621)] = 77049, - [SMALL_STATE(2622)] = 77062, - [SMALL_STATE(2623)] = 77075, - [SMALL_STATE(2624)] = 77088, - [SMALL_STATE(2625)] = 77101, - [SMALL_STATE(2626)] = 77114, - [SMALL_STATE(2627)] = 77127, - [SMALL_STATE(2628)] = 77140, - [SMALL_STATE(2629)] = 77153, - [SMALL_STATE(2630)] = 77166, - [SMALL_STATE(2631)] = 77179, - [SMALL_STATE(2632)] = 77192, - [SMALL_STATE(2633)] = 77205, - [SMALL_STATE(2634)] = 77218, - [SMALL_STATE(2635)] = 77231, - [SMALL_STATE(2636)] = 77244, - [SMALL_STATE(2637)] = 77257, - [SMALL_STATE(2638)] = 77270, - [SMALL_STATE(2639)] = 77283, - [SMALL_STATE(2640)] = 77296, - [SMALL_STATE(2641)] = 77309, - [SMALL_STATE(2642)] = 77322, - [SMALL_STATE(2643)] = 77335, - [SMALL_STATE(2644)] = 77348, - [SMALL_STATE(2645)] = 77361, - [SMALL_STATE(2646)] = 77374, - [SMALL_STATE(2647)] = 77387, - [SMALL_STATE(2648)] = 77400, - [SMALL_STATE(2649)] = 77413, - [SMALL_STATE(2650)] = 77426, - [SMALL_STATE(2651)] = 77439, - [SMALL_STATE(2652)] = 77452, - [SMALL_STATE(2653)] = 77465, - [SMALL_STATE(2654)] = 77478, - [SMALL_STATE(2655)] = 77491, - [SMALL_STATE(2656)] = 77504, - [SMALL_STATE(2657)] = 77517, - [SMALL_STATE(2658)] = 77530, - [SMALL_STATE(2659)] = 77543, - [SMALL_STATE(2660)] = 77556, - [SMALL_STATE(2661)] = 77569, - [SMALL_STATE(2662)] = 77582, - [SMALL_STATE(2663)] = 77595, - [SMALL_STATE(2664)] = 77608, - [SMALL_STATE(2665)] = 77621, - [SMALL_STATE(2666)] = 77634, - [SMALL_STATE(2667)] = 77647, - [SMALL_STATE(2668)] = 77660, - [SMALL_STATE(2669)] = 77673, - [SMALL_STATE(2670)] = 77686, - [SMALL_STATE(2671)] = 77699, - [SMALL_STATE(2672)] = 77712, - [SMALL_STATE(2673)] = 77725, - [SMALL_STATE(2674)] = 77738, - [SMALL_STATE(2675)] = 77751, - [SMALL_STATE(2676)] = 77764, - [SMALL_STATE(2677)] = 77777, - [SMALL_STATE(2678)] = 77790, - [SMALL_STATE(2679)] = 77803, - [SMALL_STATE(2680)] = 77816, - [SMALL_STATE(2681)] = 77820, + [SMALL_STATE(584)] = 0, + [SMALL_STATE(585)] = 79, + [SMALL_STATE(586)] = 166, + [SMALL_STATE(587)] = 245, + [SMALL_STATE(588)] = 324, + [SMALL_STATE(589)] = 411, + [SMALL_STATE(590)] = 490, + [SMALL_STATE(591)] = 569, + [SMALL_STATE(592)] = 643, + [SMALL_STATE(593)] = 717, + [SMALL_STATE(594)] = 791, + [SMALL_STATE(595)] = 865, + [SMALL_STATE(596)] = 939, + [SMALL_STATE(597)] = 1013, + [SMALL_STATE(598)] = 1087, + [SMALL_STATE(599)] = 1161, + [SMALL_STATE(600)] = 1235, + [SMALL_STATE(601)] = 1309, + [SMALL_STATE(602)] = 1383, + [SMALL_STATE(603)] = 1457, + [SMALL_STATE(604)] = 1531, + [SMALL_STATE(605)] = 1624, + [SMALL_STATE(606)] = 1717, + [SMALL_STATE(607)] = 1802, + [SMALL_STATE(608)] = 1887, + [SMALL_STATE(609)] = 1968, + [SMALL_STATE(610)] = 2061, + [SMALL_STATE(611)] = 2154, + [SMALL_STATE(612)] = 2244, + [SMALL_STATE(613)] = 2328, + [SMALL_STATE(614)] = 2412, + [SMALL_STATE(615)] = 2502, + [SMALL_STATE(616)] = 2577, + [SMALL_STATE(617)] = 2660, + [SMALL_STATE(618)] = 2735, + [SMALL_STATE(619)] = 2818, + [SMALL_STATE(620)] = 2907, + [SMALL_STATE(621)] = 2982, + [SMALL_STATE(622)] = 3071, + [SMALL_STATE(623)] = 3146, + [SMALL_STATE(624)] = 3225, + [SMALL_STATE(625)] = 3300, + [SMALL_STATE(626)] = 3383, + [SMALL_STATE(627)] = 3466, + [SMALL_STATE(628)] = 3549, + [SMALL_STATE(629)] = 3632, + [SMALL_STATE(630)] = 3716, + [SMALL_STATE(631)] = 3786, + [SMALL_STATE(632)] = 3856, + [SMALL_STATE(633)] = 3926, + [SMALL_STATE(634)] = 3996, + [SMALL_STATE(635)] = 4066, + [SMALL_STATE(636)] = 4150, + [SMALL_STATE(637)] = 4220, + [SMALL_STATE(638)] = 4290, + [SMALL_STATE(639)] = 4360, + [SMALL_STATE(640)] = 4444, + [SMALL_STATE(641)] = 4528, + [SMALL_STATE(642)] = 4610, + [SMALL_STATE(643)] = 4680, + [SMALL_STATE(644)] = 4750, + [SMALL_STATE(645)] = 4834, + [SMALL_STATE(646)] = 4904, + [SMALL_STATE(647)] = 4988, + [SMALL_STATE(648)] = 5058, + [SMALL_STATE(649)] = 5128, + [SMALL_STATE(650)] = 5198, + [SMALL_STATE(651)] = 5276, + [SMALL_STATE(652)] = 5346, + [SMALL_STATE(653)] = 5416, + [SMALL_STATE(654)] = 5498, + [SMALL_STATE(655)] = 5568, + [SMALL_STATE(656)] = 5645, + [SMALL_STATE(657)] = 5728, + [SMALL_STATE(658)] = 5805, + [SMALL_STATE(659)] = 5882, + [SMALL_STATE(660)] = 5965, + [SMALL_STATE(661)] = 6048, + [SMALL_STATE(662)] = 6126, + [SMALL_STATE(663)] = 6202, + [SMALL_STATE(664)] = 6280, + [SMALL_STATE(665)] = 6358, + [SMALL_STATE(666)] = 6435, + [SMALL_STATE(667)] = 6499, + [SMALL_STATE(668)] = 6614, + [SMALL_STATE(669)] = 6729, + [SMALL_STATE(670)] = 6794, + [SMALL_STATE(671)] = 6861, + [SMALL_STATE(672)] = 6974, + [SMALL_STATE(673)] = 7087, + [SMALL_STATE(674)] = 7148, + [SMALL_STATE(675)] = 7213, + [SMALL_STATE(676)] = 7326, + [SMALL_STATE(677)] = 7393, + [SMALL_STATE(678)] = 7462, + [SMALL_STATE(679)] = 7575, + [SMALL_STATE(680)] = 7644, + [SMALL_STATE(681)] = 7709, + [SMALL_STATE(682)] = 7780, + [SMALL_STATE(683)] = 7851, + [SMALL_STATE(684)] = 7922, + [SMALL_STATE(685)] = 7993, + [SMALL_STATE(686)] = 8058, + [SMALL_STATE(687)] = 8123, + [SMALL_STATE(688)] = 8233, + [SMALL_STATE(689)] = 8339, + [SMALL_STATE(690)] = 8399, + [SMALL_STATE(691)] = 8459, + [SMALL_STATE(692)] = 8569, + [SMALL_STATE(693)] = 8675, + [SMALL_STATE(694)] = 8735, + [SMALL_STATE(695)] = 8799, + [SMALL_STATE(696)] = 8859, + [SMALL_STATE(697)] = 8923, + [SMALL_STATE(698)] = 8983, + [SMALL_STATE(699)] = 9093, + [SMALL_STATE(700)] = 9153, + [SMALL_STATE(701)] = 9213, + [SMALL_STATE(702)] = 9273, + [SMALL_STATE(703)] = 9333, + [SMALL_STATE(704)] = 9393, + [SMALL_STATE(705)] = 9503, + [SMALL_STATE(706)] = 9563, + [SMALL_STATE(707)] = 9623, + [SMALL_STATE(708)] = 9683, + [SMALL_STATE(709)] = 9793, + [SMALL_STATE(710)] = 9853, + [SMALL_STATE(711)] = 9913, + [SMALL_STATE(712)] = 10017, + [SMALL_STATE(713)] = 10077, + [SMALL_STATE(714)] = 10187, + [SMALL_STATE(715)] = 10247, + [SMALL_STATE(716)] = 10310, + [SMALL_STATE(717)] = 10375, + [SMALL_STATE(718)] = 10438, + [SMALL_STATE(719)] = 10503, + [SMALL_STATE(720)] = 10568, + [SMALL_STATE(721)] = 10633, + [SMALL_STATE(722)] = 10696, + [SMALL_STATE(723)] = 10803, + [SMALL_STATE(724)] = 10868, + [SMALL_STATE(725)] = 10975, + [SMALL_STATE(726)] = 11040, + [SMALL_STATE(727)] = 11105, + [SMALL_STATE(728)] = 11168, + [SMALL_STATE(729)] = 11233, + [SMALL_STATE(730)] = 11294, + [SMALL_STATE(731)] = 11359, + [SMALL_STATE(732)] = 11420, + [SMALL_STATE(733)] = 11483, + [SMALL_STATE(734)] = 11546, + [SMALL_STATE(735)] = 11607, + [SMALL_STATE(736)] = 11668, + [SMALL_STATE(737)] = 11731, + [SMALL_STATE(738)] = 11794, + [SMALL_STATE(739)] = 11859, + [SMALL_STATE(740)] = 11920, + [SMALL_STATE(741)] = 11985, + [SMALL_STATE(742)] = 12050, + [SMALL_STATE(743)] = 12113, + [SMALL_STATE(744)] = 12176, + [SMALL_STATE(745)] = 12239, + [SMALL_STATE(746)] = 12304, + [SMALL_STATE(747)] = 12369, + [SMALL_STATE(748)] = 12432, + [SMALL_STATE(749)] = 12495, + [SMALL_STATE(750)] = 12558, + [SMALL_STATE(751)] = 12619, + [SMALL_STATE(752)] = 12684, + [SMALL_STATE(753)] = 12742, + [SMALL_STATE(754)] = 12802, + [SMALL_STATE(755)] = 12860, + [SMALL_STATE(756)] = 12918, + [SMALL_STATE(757)] = 12976, + [SMALL_STATE(758)] = 13034, + [SMALL_STATE(759)] = 13092, + [SMALL_STATE(760)] = 13150, + [SMALL_STATE(761)] = 13208, + [SMALL_STATE(762)] = 13266, + [SMALL_STATE(763)] = 13324, + [SMALL_STATE(764)] = 13382, + [SMALL_STATE(765)] = 13440, + [SMALL_STATE(766)] = 13498, + [SMALL_STATE(767)] = 13556, + [SMALL_STATE(768)] = 13614, + [SMALL_STATE(769)] = 13672, + [SMALL_STATE(770)] = 13730, + [SMALL_STATE(771)] = 13788, + [SMALL_STATE(772)] = 13846, + [SMALL_STATE(773)] = 13906, + [SMALL_STATE(774)] = 13964, + [SMALL_STATE(775)] = 14022, + [SMALL_STATE(776)] = 14080, + [SMALL_STATE(777)] = 14138, + [SMALL_STATE(778)] = 14196, + [SMALL_STATE(779)] = 14254, + [SMALL_STATE(780)] = 14312, + [SMALL_STATE(781)] = 14370, + [SMALL_STATE(782)] = 14428, + [SMALL_STATE(783)] = 14486, + [SMALL_STATE(784)] = 14544, + [SMALL_STATE(785)] = 14602, + [SMALL_STATE(786)] = 14660, + [SMALL_STATE(787)] = 14718, + [SMALL_STATE(788)] = 14776, + [SMALL_STATE(789)] = 14834, + [SMALL_STATE(790)] = 14892, + [SMALL_STATE(791)] = 14950, + [SMALL_STATE(792)] = 15008, + [SMALL_STATE(793)] = 15066, + [SMALL_STATE(794)] = 15124, + [SMALL_STATE(795)] = 15182, + [SMALL_STATE(796)] = 15240, + [SMALL_STATE(797)] = 15298, + [SMALL_STATE(798)] = 15356, + [SMALL_STATE(799)] = 15421, + [SMALL_STATE(800)] = 15478, + [SMALL_STATE(801)] = 15543, + [SMALL_STATE(802)] = 15602, + [SMALL_STATE(803)] = 15663, + [SMALL_STATE(804)] = 15730, + [SMALL_STATE(805)] = 15789, + [SMALL_STATE(806)] = 15850, + [SMALL_STATE(807)] = 15909, + [SMALL_STATE(808)] = 15970, + [SMALL_STATE(809)] = 16031, + [SMALL_STATE(810)] = 16088, + [SMALL_STATE(811)] = 16149, + [SMALL_STATE(812)] = 16216, + [SMALL_STATE(813)] = 16283, + [SMALL_STATE(814)] = 16342, + [SMALL_STATE(815)] = 16405, + [SMALL_STATE(816)] = 16466, + [SMALL_STATE(817)] = 16533, + [SMALL_STATE(818)] = 16596, + [SMALL_STATE(819)] = 16655, + [SMALL_STATE(820)] = 16712, + [SMALL_STATE(821)] = 16810, + [SMALL_STATE(822)] = 16866, + [SMALL_STATE(823)] = 16922, + [SMALL_STATE(824)] = 17020, + [SMALL_STATE(825)] = 17118, + [SMALL_STATE(826)] = 17186, + [SMALL_STATE(827)] = 17242, + [SMALL_STATE(828)] = 17340, + [SMALL_STATE(829)] = 17396, + [SMALL_STATE(830)] = 17494, + [SMALL_STATE(831)] = 17592, + [SMALL_STATE(832)] = 17660, + [SMALL_STATE(833)] = 17758, + [SMALL_STATE(834)] = 17856, + [SMALL_STATE(835)] = 17954, + [SMALL_STATE(836)] = 18010, + [SMALL_STATE(837)] = 18066, + [SMALL_STATE(838)] = 18122, + [SMALL_STATE(839)] = 18178, + [SMALL_STATE(840)] = 18234, + [SMALL_STATE(841)] = 18332, + [SMALL_STATE(842)] = 18430, + [SMALL_STATE(843)] = 18528, + [SMALL_STATE(844)] = 18584, + [SMALL_STATE(845)] = 18640, + [SMALL_STATE(846)] = 18696, + [SMALL_STATE(847)] = 18794, + [SMALL_STATE(848)] = 18850, + [SMALL_STATE(849)] = 18906, + [SMALL_STATE(850)] = 19004, + [SMALL_STATE(851)] = 19072, + [SMALL_STATE(852)] = 19128, + [SMALL_STATE(853)] = 19184, + [SMALL_STATE(854)] = 19282, + [SMALL_STATE(855)] = 19338, + [SMALL_STATE(856)] = 19397, + [SMALL_STATE(857)] = 19458, + [SMALL_STATE(858)] = 19519, + [SMALL_STATE(859)] = 19580, + [SMALL_STATE(860)] = 19637, + [SMALL_STATE(861)] = 19694, + [SMALL_STATE(862)] = 19755, + [SMALL_STATE(863)] = 19810, + [SMALL_STATE(864)] = 19871, + [SMALL_STATE(865)] = 19930, + [SMALL_STATE(866)] = 19991, + [SMALL_STATE(867)] = 20052, + [SMALL_STATE(868)] = 20113, + [SMALL_STATE(869)] = 20174, + [SMALL_STATE(870)] = 20231, + [SMALL_STATE(871)] = 20292, + [SMALL_STATE(872)] = 20351, + [SMALL_STATE(873)] = 20412, + [SMALL_STATE(874)] = 20473, + [SMALL_STATE(875)] = 20532, + [SMALL_STATE(876)] = 20591, + [SMALL_STATE(877)] = 20650, + [SMALL_STATE(878)] = 20709, + [SMALL_STATE(879)] = 20768, + [SMALL_STATE(880)] = 20827, + [SMALL_STATE(881)] = 20884, + [SMALL_STATE(882)] = 20939, + [SMALL_STATE(883)] = 20996, + [SMALL_STATE(884)] = 21053, + [SMALL_STATE(885)] = 21110, + [SMALL_STATE(886)] = 21169, + [SMALL_STATE(887)] = 21228, + [SMALL_STATE(888)] = 21283, + [SMALL_STATE(889)] = 21342, + [SMALL_STATE(890)] = 21403, + [SMALL_STATE(891)] = 21464, + [SMALL_STATE(892)] = 21519, + [SMALL_STATE(893)] = 21580, + [SMALL_STATE(894)] = 21639, + [SMALL_STATE(895)] = 21698, + [SMALL_STATE(896)] = 21757, + [SMALL_STATE(897)] = 21811, + [SMALL_STATE(898)] = 21865, + [SMALL_STATE(899)] = 21919, + [SMALL_STATE(900)] = 21973, + [SMALL_STATE(901)] = 22027, + [SMALL_STATE(902)] = 22081, + [SMALL_STATE(903)] = 22135, + [SMALL_STATE(904)] = 22191, + [SMALL_STATE(905)] = 22245, + [SMALL_STATE(906)] = 22299, + [SMALL_STATE(907)] = 22353, + [SMALL_STATE(908)] = 22407, + [SMALL_STATE(909)] = 22461, + [SMALL_STATE(910)] = 22515, + [SMALL_STATE(911)] = 22569, + [SMALL_STATE(912)] = 22623, + [SMALL_STATE(913)] = 22677, + [SMALL_STATE(914)] = 22731, + [SMALL_STATE(915)] = 22785, + [SMALL_STATE(916)] = 22839, + [SMALL_STATE(917)] = 22893, + [SMALL_STATE(918)] = 22947, + [SMALL_STATE(919)] = 23001, + [SMALL_STATE(920)] = 23055, + [SMALL_STATE(921)] = 23109, + [SMALL_STATE(922)] = 23163, + [SMALL_STATE(923)] = 23219, + [SMALL_STATE(924)] = 23273, + [SMALL_STATE(925)] = 23327, + [SMALL_STATE(926)] = 23381, + [SMALL_STATE(927)] = 23437, + [SMALL_STATE(928)] = 23491, + [SMALL_STATE(929)] = 23545, + [SMALL_STATE(930)] = 23599, + [SMALL_STATE(931)] = 23653, + [SMALL_STATE(932)] = 23707, + [SMALL_STATE(933)] = 23761, + [SMALL_STATE(934)] = 23815, + [SMALL_STATE(935)] = 23869, + [SMALL_STATE(936)] = 23923, + [SMALL_STATE(937)] = 23977, + [SMALL_STATE(938)] = 24031, + [SMALL_STATE(939)] = 24085, + [SMALL_STATE(940)] = 24139, + [SMALL_STATE(941)] = 24193, + [SMALL_STATE(942)] = 24251, + [SMALL_STATE(943)] = 24305, + [SMALL_STATE(944)] = 24360, + [SMALL_STATE(945)] = 24415, + [SMALL_STATE(946)] = 24470, + [SMALL_STATE(947)] = 24525, + [SMALL_STATE(948)] = 24580, + [SMALL_STATE(949)] = 24632, + [SMALL_STATE(950)] = 24688, + [SMALL_STATE(951)] = 24740, + [SMALL_STATE(952)] = 24792, + [SMALL_STATE(953)] = 24844, + [SMALL_STATE(954)] = 24896, + [SMALL_STATE(955)] = 24948, + [SMALL_STATE(956)] = 25000, + [SMALL_STATE(957)] = 25052, + [SMALL_STATE(958)] = 25104, + [SMALL_STATE(959)] = 25156, + [SMALL_STATE(960)] = 25210, + [SMALL_STATE(961)] = 25262, + [SMALL_STATE(962)] = 25314, + [SMALL_STATE(963)] = 25366, + [SMALL_STATE(964)] = 25418, + [SMALL_STATE(965)] = 25470, + [SMALL_STATE(966)] = 25522, + [SMALL_STATE(967)] = 25574, + [SMALL_STATE(968)] = 25626, + [SMALL_STATE(969)] = 25678, + [SMALL_STATE(970)] = 25730, + [SMALL_STATE(971)] = 25782, + [SMALL_STATE(972)] = 25834, + [SMALL_STATE(973)] = 25886, + [SMALL_STATE(974)] = 25938, + [SMALL_STATE(975)] = 26028, + [SMALL_STATE(976)] = 26080, + [SMALL_STATE(977)] = 26132, + [SMALL_STATE(978)] = 26184, + [SMALL_STATE(979)] = 26236, + [SMALL_STATE(980)] = 26288, + [SMALL_STATE(981)] = 26340, + [SMALL_STATE(982)] = 26392, + [SMALL_STATE(983)] = 26444, + [SMALL_STATE(984)] = 26496, + [SMALL_STATE(985)] = 26548, + [SMALL_STATE(986)] = 26600, + [SMALL_STATE(987)] = 26652, + [SMALL_STATE(988)] = 26704, + [SMALL_STATE(989)] = 26756, + [SMALL_STATE(990)] = 26814, + [SMALL_STATE(991)] = 26866, + [SMALL_STATE(992)] = 26918, + [SMALL_STATE(993)] = 26970, + [SMALL_STATE(994)] = 27022, + [SMALL_STATE(995)] = 27074, + [SMALL_STATE(996)] = 27126, + [SMALL_STATE(997)] = 27178, + [SMALL_STATE(998)] = 27230, + [SMALL_STATE(999)] = 27282, + [SMALL_STATE(1000)] = 27334, + [SMALL_STATE(1001)] = 27386, + [SMALL_STATE(1002)] = 27438, + [SMALL_STATE(1003)] = 27490, + [SMALL_STATE(1004)] = 27542, + [SMALL_STATE(1005)] = 27594, + [SMALL_STATE(1006)] = 27646, + [SMALL_STATE(1007)] = 27698, + [SMALL_STATE(1008)] = 27750, + [SMALL_STATE(1009)] = 27802, + [SMALL_STATE(1010)] = 27854, + [SMALL_STATE(1011)] = 27906, + [SMALL_STATE(1012)] = 27958, + [SMALL_STATE(1013)] = 28010, + [SMALL_STATE(1014)] = 28062, + [SMALL_STATE(1015)] = 28114, + [SMALL_STATE(1016)] = 28166, + [SMALL_STATE(1017)] = 28217, + [SMALL_STATE(1018)] = 28268, + [SMALL_STATE(1019)] = 28354, + [SMALL_STATE(1020)] = 28428, + [SMALL_STATE(1021)] = 28506, + [SMALL_STATE(1022)] = 28594, + [SMALL_STATE(1023)] = 28644, + [SMALL_STATE(1024)] = 28726, + [SMALL_STATE(1025)] = 28808, + [SMALL_STATE(1026)] = 28878, + [SMALL_STATE(1027)] = 28966, + [SMALL_STATE(1028)] = 29048, + [SMALL_STATE(1029)] = 29130, + [SMALL_STATE(1030)] = 29182, + [SMALL_STATE(1031)] = 29266, + [SMALL_STATE(1032)] = 29356, + [SMALL_STATE(1033)] = 29438, + [SMALL_STATE(1034)] = 29526, + [SMALL_STATE(1035)] = 29614, + [SMALL_STATE(1036)] = 29696, + [SMALL_STATE(1037)] = 29746, + [SMALL_STATE(1038)] = 29834, + [SMALL_STATE(1039)] = 29922, + [SMALL_STATE(1040)] = 30010, + [SMALL_STATE(1041)] = 30060, + [SMALL_STATE(1042)] = 30148, + [SMALL_STATE(1043)] = 30224, + [SMALL_STATE(1044)] = 30306, + [SMALL_STATE(1045)] = 30394, + [SMALL_STATE(1046)] = 30446, + [SMALL_STATE(1047)] = 30506, + [SMALL_STATE(1048)] = 30564, + [SMALL_STATE(1049)] = 30626, + [SMALL_STATE(1050)] = 30692, + [SMALL_STATE(1051)] = 30764, + [SMALL_STATE(1052)] = 30814, + [SMALL_STATE(1053)] = 30870, + [SMALL_STATE(1054)] = 30958, + [SMALL_STATE(1055)] = 31009, + [SMALL_STATE(1056)] = 31082, + [SMALL_STATE(1057)] = 31169, + [SMALL_STATE(1058)] = 31256, + [SMALL_STATE(1059)] = 31343, + [SMALL_STATE(1060)] = 31430, + [SMALL_STATE(1061)] = 31517, + [SMALL_STATE(1062)] = 31606, + [SMALL_STATE(1063)] = 31693, + [SMALL_STATE(1064)] = 31774, + [SMALL_STATE(1065)] = 31861, + [SMALL_STATE(1066)] = 31928, + [SMALL_STATE(1067)] = 31983, + [SMALL_STATE(1068)] = 32064, + [SMALL_STATE(1069)] = 32145, + [SMALL_STATE(1070)] = 32196, + [SMALL_STATE(1071)] = 32277, + [SMALL_STATE(1072)] = 32362, + [SMALL_STATE(1073)] = 32445, + [SMALL_STATE(1074)] = 32522, + [SMALL_STATE(1075)] = 32597, + [SMALL_STATE(1076)] = 32668, + [SMALL_STATE(1077)] = 32733, + [SMALL_STATE(1078)] = 32794, + [SMALL_STATE(1079)] = 32881, + [SMALL_STATE(1080)] = 32938, + [SMALL_STATE(1081)] = 32997, + [SMALL_STATE(1082)] = 33066, + [SMALL_STATE(1083)] = 33153, + [SMALL_STATE(1084)] = 33240, + [SMALL_STATE(1085)] = 33321, + [SMALL_STATE(1086)] = 33402, + [SMALL_STATE(1087)] = 33483, + [SMALL_STATE(1088)] = 33531, + [SMALL_STATE(1089)] = 33617, + [SMALL_STATE(1090)] = 33665, + [SMALL_STATE(1091)] = 33713, + [SMALL_STATE(1092)] = 33761, + [SMALL_STATE(1093)] = 33811, + [SMALL_STATE(1094)] = 33869, + [SMALL_STATE(1095)] = 33925, + [SMALL_STATE(1096)] = 34005, + [SMALL_STATE(1097)] = 34065, + [SMALL_STATE(1098)] = 34129, + [SMALL_STATE(1099)] = 34199, + [SMALL_STATE(1100)] = 34273, + [SMALL_STATE(1101)] = 34349, + [SMALL_STATE(1102)] = 34431, + [SMALL_STATE(1103)] = 34511, + [SMALL_STATE(1104)] = 34595, + [SMALL_STATE(1105)] = 34643, + [SMALL_STATE(1106)] = 34691, + [SMALL_STATE(1107)] = 34771, + [SMALL_STATE(1108)] = 34821, + [SMALL_STATE(1109)] = 34901, + [SMALL_STATE(1110)] = 34949, + [SMALL_STATE(1111)] = 35003, + [SMALL_STATE(1112)] = 35075, + [SMALL_STATE(1113)] = 35123, + [SMALL_STATE(1114)] = 35191, + [SMALL_STATE(1115)] = 35277, + [SMALL_STATE(1116)] = 35357, + [SMALL_STATE(1117)] = 35437, + [SMALL_STATE(1118)] = 35485, + [SMALL_STATE(1119)] = 35533, + [SMALL_STATE(1120)] = 35581, + [SMALL_STATE(1121)] = 35667, + [SMALL_STATE(1122)] = 35753, + [SMALL_STATE(1123)] = 35801, + [SMALL_STATE(1124)] = 35849, + [SMALL_STATE(1125)] = 35897, + [SMALL_STATE(1126)] = 35945, + [SMALL_STATE(1127)] = 35993, + [SMALL_STATE(1128)] = 36041, + [SMALL_STATE(1129)] = 36089, + [SMALL_STATE(1130)] = 36137, + [SMALL_STATE(1131)] = 36185, + [SMALL_STATE(1132)] = 36233, + [SMALL_STATE(1133)] = 36311, + [SMALL_STATE(1134)] = 36397, + [SMALL_STATE(1135)] = 36447, + [SMALL_STATE(1136)] = 36495, + [SMALL_STATE(1137)] = 36573, + [SMALL_STATE(1138)] = 36621, + [SMALL_STATE(1139)] = 36669, + [SMALL_STATE(1140)] = 36717, + [SMALL_STATE(1141)] = 36765, + [SMALL_STATE(1142)] = 36813, + [SMALL_STATE(1143)] = 36861, + [SMALL_STATE(1144)] = 36939, + [SMALL_STATE(1145)] = 36987, + [SMALL_STATE(1146)] = 37035, + [SMALL_STATE(1147)] = 37083, + [SMALL_STATE(1148)] = 37131, + [SMALL_STATE(1149)] = 37209, + [SMALL_STATE(1150)] = 37257, + [SMALL_STATE(1151)] = 37305, + [SMALL_STATE(1152)] = 37391, + [SMALL_STATE(1153)] = 37439, + [SMALL_STATE(1154)] = 37487, + [SMALL_STATE(1155)] = 37535, + [SMALL_STATE(1156)] = 37583, + [SMALL_STATE(1157)] = 37631, + [SMALL_STATE(1158)] = 37679, + [SMALL_STATE(1159)] = 37727, + [SMALL_STATE(1160)] = 37775, + [SMALL_STATE(1161)] = 37823, + [SMALL_STATE(1162)] = 37871, + [SMALL_STATE(1163)] = 37919, + [SMALL_STATE(1164)] = 37967, + [SMALL_STATE(1165)] = 38015, + [SMALL_STATE(1166)] = 38063, + [SMALL_STATE(1167)] = 38149, + [SMALL_STATE(1168)] = 38197, + [SMALL_STATE(1169)] = 38245, + [SMALL_STATE(1170)] = 38293, + [SMALL_STATE(1171)] = 38341, + [SMALL_STATE(1172)] = 38389, + [SMALL_STATE(1173)] = 38475, + [SMALL_STATE(1174)] = 38561, + [SMALL_STATE(1175)] = 38609, + [SMALL_STATE(1176)] = 38657, + [SMALL_STATE(1177)] = 38745, + [SMALL_STATE(1178)] = 38793, + [SMALL_STATE(1179)] = 38841, + [SMALL_STATE(1180)] = 38889, + [SMALL_STATE(1181)] = 38975, + [SMALL_STATE(1182)] = 39023, + [SMALL_STATE(1183)] = 39103, + [SMALL_STATE(1184)] = 39151, + [SMALL_STATE(1185)] = 39199, + [SMALL_STATE(1186)] = 39247, + [SMALL_STATE(1187)] = 39295, + [SMALL_STATE(1188)] = 39343, + [SMALL_STATE(1189)] = 39391, + [SMALL_STATE(1190)] = 39439, + [SMALL_STATE(1191)] = 39524, + [SMALL_STATE(1192)] = 39573, + [SMALL_STATE(1193)] = 39652, + [SMALL_STATE(1194)] = 39731, + [SMALL_STATE(1195)] = 39816, + [SMALL_STATE(1196)] = 39865, + [SMALL_STATE(1197)] = 39944, + [SMALL_STATE(1198)] = 40023, + [SMALL_STATE(1199)] = 40076, + [SMALL_STATE(1200)] = 40161, + [SMALL_STATE(1201)] = 40210, + [SMALL_STATE(1202)] = 40289, + [SMALL_STATE(1203)] = 40364, + [SMALL_STATE(1204)] = 40437, + [SMALL_STATE(1205)] = 40522, + [SMALL_STATE(1206)] = 40601, + [SMALL_STATE(1207)] = 40670, + [SMALL_STATE(1208)] = 40719, + [SMALL_STATE(1209)] = 40782, + [SMALL_STATE(1210)] = 40841, + [SMALL_STATE(1211)] = 40926, + [SMALL_STATE(1212)] = 40981, + [SMALL_STATE(1213)] = 41038, + [SMALL_STATE(1214)] = 41123, + [SMALL_STATE(1215)] = 41194, + [SMALL_STATE(1216)] = 41261, + [SMALL_STATE(1217)] = 41342, + [SMALL_STATE(1218)] = 41425, + [SMALL_STATE(1219)] = 41510, + [SMALL_STATE(1220)] = 41589, + [SMALL_STATE(1221)] = 41668, + [SMALL_STATE(1222)] = 41753, + [SMALL_STATE(1223)] = 41838, + [SMALL_STATE(1224)] = 41917, + [SMALL_STATE(1225)] = 42002, + [SMALL_STATE(1226)] = 42089, + [SMALL_STATE(1227)] = 42175, + [SMALL_STATE(1228)] = 42261, + [SMALL_STATE(1229)] = 42353, + [SMALL_STATE(1230)] = 42445, + [SMALL_STATE(1231)] = 42535, + [SMALL_STATE(1232)] = 42619, + [SMALL_STATE(1233)] = 42707, + [SMALL_STATE(1234)] = 42799, + [SMALL_STATE(1235)] = 42885, + [SMALL_STATE(1236)] = 42977, + [SMALL_STATE(1237)] = 43069, + [SMALL_STATE(1238)] = 43161, + [SMALL_STATE(1239)] = 43247, + [SMALL_STATE(1240)] = 43333, + [SMALL_STATE(1241)] = 43417, + [SMALL_STATE(1242)] = 43509, + [SMALL_STATE(1243)] = 43601, + [SMALL_STATE(1244)] = 43685, + [SMALL_STATE(1245)] = 43768, + [SMALL_STATE(1246)] = 43841, + [SMALL_STATE(1247)] = 43924, + [SMALL_STATE(1248)] = 44007, + [SMALL_STATE(1249)] = 44090, + [SMALL_STATE(1250)] = 44175, + [SMALL_STATE(1251)] = 44258, + [SMALL_STATE(1252)] = 44341, + [SMALL_STATE(1253)] = 44424, + [SMALL_STATE(1254)] = 44507, + [SMALL_STATE(1255)] = 44590, + [SMALL_STATE(1256)] = 44675, + [SMALL_STATE(1257)] = 44758, + [SMALL_STATE(1258)] = 44841, + [SMALL_STATE(1259)] = 44924, + [SMALL_STATE(1260)] = 45007, + [SMALL_STATE(1261)] = 45090, + [SMALL_STATE(1262)] = 45173, + [SMALL_STATE(1263)] = 45256, + [SMALL_STATE(1264)] = 45341, + [SMALL_STATE(1265)] = 45424, + [SMALL_STATE(1266)] = 45507, + [SMALL_STATE(1267)] = 45590, + [SMALL_STATE(1268)] = 45675, + [SMALL_STATE(1269)] = 45760, + [SMALL_STATE(1270)] = 45843, + [SMALL_STATE(1271)] = 45928, + [SMALL_STATE(1272)] = 46011, + [SMALL_STATE(1273)] = 46084, + [SMALL_STATE(1274)] = 46167, + [SMALL_STATE(1275)] = 46252, + [SMALL_STATE(1276)] = 46335, + [SMALL_STATE(1277)] = 46388, + [SMALL_STATE(1278)] = 46471, + [SMALL_STATE(1279)] = 46554, + [SMALL_STATE(1280)] = 46639, + [SMALL_STATE(1281)] = 46722, + [SMALL_STATE(1282)] = 46775, + [SMALL_STATE(1283)] = 46858, + [SMALL_STATE(1284)] = 46941, + [SMALL_STATE(1285)] = 47024, + [SMALL_STATE(1286)] = 47107, + [SMALL_STATE(1287)] = 47190, + [SMALL_STATE(1288)] = 47273, + [SMALL_STATE(1289)] = 47355, + [SMALL_STATE(1290)] = 47437, + [SMALL_STATE(1291)] = 47519, + [SMALL_STATE(1292)] = 47601, + [SMALL_STATE(1293)] = 47683, + [SMALL_STATE(1294)] = 47765, + [SMALL_STATE(1295)] = 47847, + [SMALL_STATE(1296)] = 47929, + [SMALL_STATE(1297)] = 48011, + [SMALL_STATE(1298)] = 48093, + [SMALL_STATE(1299)] = 48163, + [SMALL_STATE(1300)] = 48245, + [SMALL_STATE(1301)] = 48327, + [SMALL_STATE(1302)] = 48409, + [SMALL_STATE(1303)] = 48491, + [SMALL_STATE(1304)] = 48573, + [SMALL_STATE(1305)] = 48655, + [SMALL_STATE(1306)] = 48737, + [SMALL_STATE(1307)] = 48819, + [SMALL_STATE(1308)] = 48901, + [SMALL_STATE(1309)] = 48983, + [SMALL_STATE(1310)] = 49065, + [SMALL_STATE(1311)] = 49147, + [SMALL_STATE(1312)] = 49229, + [SMALL_STATE(1313)] = 49311, + [SMALL_STATE(1314)] = 49393, + [SMALL_STATE(1315)] = 49475, + [SMALL_STATE(1316)] = 49557, + [SMALL_STATE(1317)] = 49639, + [SMALL_STATE(1318)] = 49719, + [SMALL_STATE(1319)] = 49801, + [SMALL_STATE(1320)] = 49883, + [SMALL_STATE(1321)] = 49965, + [SMALL_STATE(1322)] = 50047, + [SMALL_STATE(1323)] = 50129, + [SMALL_STATE(1324)] = 50211, + [SMALL_STATE(1325)] = 50293, + [SMALL_STATE(1326)] = 50341, + [SMALL_STATE(1327)] = 50423, + [SMALL_STATE(1328)] = 50505, + [SMALL_STATE(1329)] = 50587, + [SMALL_STATE(1330)] = 50669, + [SMALL_STATE(1331)] = 50751, + [SMALL_STATE(1332)] = 50833, + [SMALL_STATE(1333)] = 50915, + [SMALL_STATE(1334)] = 50997, + [SMALL_STATE(1335)] = 51079, + [SMALL_STATE(1336)] = 51161, + [SMALL_STATE(1337)] = 51243, + [SMALL_STATE(1338)] = 51325, + [SMALL_STATE(1339)] = 51407, + [SMALL_STATE(1340)] = 51489, + [SMALL_STATE(1341)] = 51571, + [SMALL_STATE(1342)] = 51653, + [SMALL_STATE(1343)] = 51735, + [SMALL_STATE(1344)] = 51817, + [SMALL_STATE(1345)] = 51899, + [SMALL_STATE(1346)] = 51981, + [SMALL_STATE(1347)] = 52063, + [SMALL_STATE(1348)] = 52145, + [SMALL_STATE(1349)] = 52227, + [SMALL_STATE(1350)] = 52309, + [SMALL_STATE(1351)] = 52353, + [SMALL_STATE(1352)] = 52435, + [SMALL_STATE(1353)] = 52517, + [SMALL_STATE(1354)] = 52599, + [SMALL_STATE(1355)] = 52681, + [SMALL_STATE(1356)] = 52763, + [SMALL_STATE(1357)] = 52845, + [SMALL_STATE(1358)] = 52927, + [SMALL_STATE(1359)] = 53009, + [SMALL_STATE(1360)] = 53091, + [SMALL_STATE(1361)] = 53173, + [SMALL_STATE(1362)] = 53255, + [SMALL_STATE(1363)] = 53337, + [SMALL_STATE(1364)] = 53407, + [SMALL_STATE(1365)] = 53489, + [SMALL_STATE(1366)] = 53532, + [SMALL_STATE(1367)] = 53575, + [SMALL_STATE(1368)] = 53620, + [SMALL_STATE(1369)] = 53663, + [SMALL_STATE(1370)] = 53705, + [SMALL_STATE(1371)] = 53747, + [SMALL_STATE(1372)] = 53789, + [SMALL_STATE(1373)] = 53848, + [SMALL_STATE(1374)] = 53907, + [SMALL_STATE(1375)] = 53966, + [SMALL_STATE(1376)] = 54025, + [SMALL_STATE(1377)] = 54084, + [SMALL_STATE(1378)] = 54143, + [SMALL_STATE(1379)] = 54202, + [SMALL_STATE(1380)] = 54261, + [SMALL_STATE(1381)] = 54320, + [SMALL_STATE(1382)] = 54379, + [SMALL_STATE(1383)] = 54438, + [SMALL_STATE(1384)] = 54494, + [SMALL_STATE(1385)] = 54550, + [SMALL_STATE(1386)] = 54606, + [SMALL_STATE(1387)] = 54662, + [SMALL_STATE(1388)] = 54718, + [SMALL_STATE(1389)] = 54774, + [SMALL_STATE(1390)] = 54823, + [SMALL_STATE(1391)] = 54872, + [SMALL_STATE(1392)] = 54921, + [SMALL_STATE(1393)] = 54981, + [SMALL_STATE(1394)] = 55034, + [SMALL_STATE(1395)] = 55084, + [SMALL_STATE(1396)] = 55134, + [SMALL_STATE(1397)] = 55179, + [SMALL_STATE(1398)] = 55210, + [SMALL_STATE(1399)] = 55237, + [SMALL_STATE(1400)] = 55264, + [SMALL_STATE(1401)] = 55311, + [SMALL_STATE(1402)] = 55338, + [SMALL_STATE(1403)] = 55365, + [SMALL_STATE(1404)] = 55392, + [SMALL_STATE(1405)] = 55441, + [SMALL_STATE(1406)] = 55468, + [SMALL_STATE(1407)] = 55495, + [SMALL_STATE(1408)] = 55522, + [SMALL_STATE(1409)] = 55549, + [SMALL_STATE(1410)] = 55576, + [SMALL_STATE(1411)] = 55603, + [SMALL_STATE(1412)] = 55630, + [SMALL_STATE(1413)] = 55657, + [SMALL_STATE(1414)] = 55684, + [SMALL_STATE(1415)] = 55711, + [SMALL_STATE(1416)] = 55738, + [SMALL_STATE(1417)] = 55764, + [SMALL_STATE(1418)] = 55790, + [SMALL_STATE(1419)] = 55834, + [SMALL_STATE(1420)] = 55860, + [SMALL_STATE(1421)] = 55886, + [SMALL_STATE(1422)] = 55912, + [SMALL_STATE(1423)] = 55938, + [SMALL_STATE(1424)] = 55964, + [SMALL_STATE(1425)] = 56010, + [SMALL_STATE(1426)] = 56036, + [SMALL_STATE(1427)] = 56062, + [SMALL_STATE(1428)] = 56088, + [SMALL_STATE(1429)] = 56114, + [SMALL_STATE(1430)] = 56158, + [SMALL_STATE(1431)] = 56184, + [SMALL_STATE(1432)] = 56226, + [SMALL_STATE(1433)] = 56252, + [SMALL_STATE(1434)] = 56278, + [SMALL_STATE(1435)] = 56304, + [SMALL_STATE(1436)] = 56330, + [SMALL_STATE(1437)] = 56380, + [SMALL_STATE(1438)] = 56406, + [SMALL_STATE(1439)] = 56432, + [SMALL_STATE(1440)] = 56458, + [SMALL_STATE(1441)] = 56484, + [SMALL_STATE(1442)] = 56510, + [SMALL_STATE(1443)] = 56560, + [SMALL_STATE(1444)] = 56601, + [SMALL_STATE(1445)] = 56644, + [SMALL_STATE(1446)] = 56687, + [SMALL_STATE(1447)] = 56730, + [SMALL_STATE(1448)] = 56773, + [SMALL_STATE(1449)] = 56814, + [SMALL_STATE(1450)] = 56857, + [SMALL_STATE(1451)] = 56900, + [SMALL_STATE(1452)] = 56943, + [SMALL_STATE(1453)] = 56986, + [SMALL_STATE(1454)] = 57029, + [SMALL_STATE(1455)] = 57070, + [SMALL_STATE(1456)] = 57101, + [SMALL_STATE(1457)] = 57142, + [SMALL_STATE(1458)] = 57185, + [SMALL_STATE(1459)] = 57225, + [SMALL_STATE(1460)] = 57265, + [SMALL_STATE(1461)] = 57305, + [SMALL_STATE(1462)] = 57341, + [SMALL_STATE(1463)] = 57378, + [SMALL_STATE(1464)] = 57403, + [SMALL_STATE(1465)] = 57440, + [SMALL_STATE(1466)] = 57475, + [SMALL_STATE(1467)] = 57500, + [SMALL_STATE(1468)] = 57533, + [SMALL_STATE(1469)] = 57570, + [SMALL_STATE(1470)] = 57601, + [SMALL_STATE(1471)] = 57638, + [SMALL_STATE(1472)] = 57671, + [SMALL_STATE(1473)] = 57696, + [SMALL_STATE(1474)] = 57721, + [SMALL_STATE(1475)] = 57756, + [SMALL_STATE(1476)] = 57793, + [SMALL_STATE(1477)] = 57828, + [SMALL_STATE(1478)] = 57865, + [SMALL_STATE(1479)] = 57902, + [SMALL_STATE(1480)] = 57930, + [SMALL_STATE(1481)] = 57958, + [SMALL_STATE(1482)] = 57986, + [SMALL_STATE(1483)] = 58020, + [SMALL_STATE(1484)] = 58044, + [SMALL_STATE(1485)] = 58068, + [SMALL_STATE(1486)] = 58102, + [SMALL_STATE(1487)] = 58136, + [SMALL_STATE(1488)] = 58168, + [SMALL_STATE(1489)] = 58200, + [SMALL_STATE(1490)] = 58228, + [SMALL_STATE(1491)] = 58252, + [SMALL_STATE(1492)] = 58284, + [SMALL_STATE(1493)] = 58316, + [SMALL_STATE(1494)] = 58346, + [SMALL_STATE(1495)] = 58378, + [SMALL_STATE(1496)] = 58410, + [SMALL_STATE(1497)] = 58444, + [SMALL_STATE(1498)] = 58476, + [SMALL_STATE(1499)] = 58510, + [SMALL_STATE(1500)] = 58544, + [SMALL_STATE(1501)] = 58576, + [SMALL_STATE(1502)] = 58608, + [SMALL_STATE(1503)] = 58642, + [SMALL_STATE(1504)] = 58676, + [SMALL_STATE(1505)] = 58708, + [SMALL_STATE(1506)] = 58732, + [SMALL_STATE(1507)] = 58766, + [SMALL_STATE(1508)] = 58798, + [SMALL_STATE(1509)] = 58830, + [SMALL_STATE(1510)] = 58864, + [SMALL_STATE(1511)] = 58898, + [SMALL_STATE(1512)] = 58930, + [SMALL_STATE(1513)] = 58962, + [SMALL_STATE(1514)] = 58994, + [SMALL_STATE(1515)] = 59026, + [SMALL_STATE(1516)] = 59058, + [SMALL_STATE(1517)] = 59092, + [SMALL_STATE(1518)] = 59116, + [SMALL_STATE(1519)] = 59140, + [SMALL_STATE(1520)] = 59166, + [SMALL_STATE(1521)] = 59202, + [SMALL_STATE(1522)] = 59238, + [SMALL_STATE(1523)] = 59270, + [SMALL_STATE(1524)] = 59302, + [SMALL_STATE(1525)] = 59336, + [SMALL_STATE(1526)] = 59364, + [SMALL_STATE(1527)] = 59396, + [SMALL_STATE(1528)] = 59430, + [SMALL_STATE(1529)] = 59462, + [SMALL_STATE(1530)] = 59494, + [SMALL_STATE(1531)] = 59526, + [SMALL_STATE(1532)] = 59558, + [SMALL_STATE(1533)] = 59586, + [SMALL_STATE(1534)] = 59618, + [SMALL_STATE(1535)] = 59650, + [SMALL_STATE(1536)] = 59682, + [SMALL_STATE(1537)] = 59714, + [SMALL_STATE(1538)] = 59748, + [SMALL_STATE(1539)] = 59775, + [SMALL_STATE(1540)] = 59802, + [SMALL_STATE(1541)] = 59829, + [SMALL_STATE(1542)] = 59856, + [SMALL_STATE(1543)] = 59881, + [SMALL_STATE(1544)] = 59908, + [SMALL_STATE(1545)] = 59937, + [SMALL_STATE(1546)] = 59966, + [SMALL_STATE(1547)] = 59993, + [SMALL_STATE(1548)] = 60030, + [SMALL_STATE(1549)] = 60059, + [SMALL_STATE(1550)] = 60082, + [SMALL_STATE(1551)] = 60111, + [SMALL_STATE(1552)] = 60140, + [SMALL_STATE(1553)] = 60165, + [SMALL_STATE(1554)] = 60188, + [SMALL_STATE(1555)] = 60217, + [SMALL_STATE(1556)] = 60244, + [SMALL_STATE(1557)] = 60271, + [SMALL_STATE(1558)] = 60298, + [SMALL_STATE(1559)] = 60325, + [SMALL_STATE(1560)] = 60352, + [SMALL_STATE(1561)] = 60379, + [SMALL_STATE(1562)] = 60416, + [SMALL_STATE(1563)] = 60441, + [SMALL_STATE(1564)] = 60468, + [SMALL_STATE(1565)] = 60491, + [SMALL_STATE(1566)] = 60518, + [SMALL_STATE(1567)] = 60547, + [SMALL_STATE(1568)] = 60576, + [SMALL_STATE(1569)] = 60606, + [SMALL_STATE(1570)] = 60638, + [SMALL_STATE(1571)] = 60668, + [SMALL_STATE(1572)] = 60690, + [SMALL_STATE(1573)] = 60718, + [SMALL_STATE(1574)] = 60748, + [SMALL_STATE(1575)] = 60782, + [SMALL_STATE(1576)] = 60808, + [SMALL_STATE(1577)] = 60834, + [SMALL_STATE(1578)] = 60864, + [SMALL_STATE(1579)] = 60898, + [SMALL_STATE(1580)] = 60932, + [SMALL_STATE(1581)] = 60966, + [SMALL_STATE(1582)] = 60992, + [SMALL_STATE(1583)] = 61026, + [SMALL_STATE(1584)] = 61052, + [SMALL_STATE(1585)] = 61082, + [SMALL_STATE(1586)] = 61105, + [SMALL_STATE(1587)] = 61126, + [SMALL_STATE(1588)] = 61147, + [SMALL_STATE(1589)] = 61168, + [SMALL_STATE(1590)] = 61189, + [SMALL_STATE(1591)] = 61210, + [SMALL_STATE(1592)] = 61231, + [SMALL_STATE(1593)] = 61254, + [SMALL_STATE(1594)] = 61277, + [SMALL_STATE(1595)] = 61298, + [SMALL_STATE(1596)] = 61325, + [SMALL_STATE(1597)] = 61348, + [SMALL_STATE(1598)] = 61371, + [SMALL_STATE(1599)] = 61392, + [SMALL_STATE(1600)] = 61415, + [SMALL_STATE(1601)] = 61438, + [SMALL_STATE(1602)] = 61463, + [SMALL_STATE(1603)] = 61488, + [SMALL_STATE(1604)] = 61511, + [SMALL_STATE(1605)] = 61534, + [SMALL_STATE(1606)] = 61557, + [SMALL_STATE(1607)] = 61580, + [SMALL_STATE(1608)] = 61603, + [SMALL_STATE(1609)] = 61626, + [SMALL_STATE(1610)] = 61649, + [SMALL_STATE(1611)] = 61676, + [SMALL_STATE(1612)] = 61705, + [SMALL_STATE(1613)] = 61726, + [SMALL_STATE(1614)] = 61749, + [SMALL_STATE(1615)] = 61776, + [SMALL_STATE(1616)] = 61799, + [SMALL_STATE(1617)] = 61822, + [SMALL_STATE(1618)] = 61845, + [SMALL_STATE(1619)] = 61870, + [SMALL_STATE(1620)] = 61891, + [SMALL_STATE(1621)] = 61914, + [SMALL_STATE(1622)] = 61937, + [SMALL_STATE(1623)] = 61960, + [SMALL_STATE(1624)] = 61987, + [SMALL_STATE(1625)] = 62008, + [SMALL_STATE(1626)] = 62029, + [SMALL_STATE(1627)] = 62050, + [SMALL_STATE(1628)] = 62078, + [SMALL_STATE(1629)] = 62106, + [SMALL_STATE(1630)] = 62134, + [SMALL_STATE(1631)] = 62162, + [SMALL_STATE(1632)] = 62188, + [SMALL_STATE(1633)] = 62216, + [SMALL_STATE(1634)] = 62244, + [SMALL_STATE(1635)] = 62264, + [SMALL_STATE(1636)] = 62292, + [SMALL_STATE(1637)] = 62318, + [SMALL_STATE(1638)] = 62338, + [SMALL_STATE(1639)] = 62358, + [SMALL_STATE(1640)] = 62386, + [SMALL_STATE(1641)] = 62406, + [SMALL_STATE(1642)] = 62426, + [SMALL_STATE(1643)] = 62452, + [SMALL_STATE(1644)] = 62478, + [SMALL_STATE(1645)] = 62504, + [SMALL_STATE(1646)] = 62524, + [SMALL_STATE(1647)] = 62550, + [SMALL_STATE(1648)] = 62570, + [SMALL_STATE(1649)] = 62594, + [SMALL_STATE(1650)] = 62620, + [SMALL_STATE(1651)] = 62648, + [SMALL_STATE(1652)] = 62670, + [SMALL_STATE(1653)] = 62696, + [SMALL_STATE(1654)] = 62724, + [SMALL_STATE(1655)] = 62750, + [SMALL_STATE(1656)] = 62770, + [SMALL_STATE(1657)] = 62796, + [SMALL_STATE(1658)] = 62822, + [SMALL_STATE(1659)] = 62848, + [SMALL_STATE(1660)] = 62876, + [SMALL_STATE(1661)] = 62902, + [SMALL_STATE(1662)] = 62930, + [SMALL_STATE(1663)] = 62956, + [SMALL_STATE(1664)] = 62982, + [SMALL_STATE(1665)] = 63002, + [SMALL_STATE(1666)] = 63030, + [SMALL_STATE(1667)] = 63058, + [SMALL_STATE(1668)] = 63078, + [SMALL_STATE(1669)] = 63102, + [SMALL_STATE(1670)] = 63122, + [SMALL_STATE(1671)] = 63148, + [SMALL_STATE(1672)] = 63172, + [SMALL_STATE(1673)] = 63192, + [SMALL_STATE(1674)] = 63220, + [SMALL_STATE(1675)] = 63246, + [SMALL_STATE(1676)] = 63270, + [SMALL_STATE(1677)] = 63298, + [SMALL_STATE(1678)] = 63326, + [SMALL_STATE(1679)] = 63352, + [SMALL_STATE(1680)] = 63380, + [SMALL_STATE(1681)] = 63406, + [SMALL_STATE(1682)] = 63426, + [SMALL_STATE(1683)] = 63454, + [SMALL_STATE(1684)] = 63474, + [SMALL_STATE(1685)] = 63494, + [SMALL_STATE(1686)] = 63520, + [SMALL_STATE(1687)] = 63548, + [SMALL_STATE(1688)] = 63576, + [SMALL_STATE(1689)] = 63604, + [SMALL_STATE(1690)] = 63624, + [SMALL_STATE(1691)] = 63652, + [SMALL_STATE(1692)] = 63680, + [SMALL_STATE(1693)] = 63708, + [SMALL_STATE(1694)] = 63736, + [SMALL_STATE(1695)] = 63764, + [SMALL_STATE(1696)] = 63792, + [SMALL_STATE(1697)] = 63820, + [SMALL_STATE(1698)] = 63848, + [SMALL_STATE(1699)] = 63872, + [SMALL_STATE(1700)] = 63900, + [SMALL_STATE(1701)] = 63928, + [SMALL_STATE(1702)] = 63954, + [SMALL_STATE(1703)] = 63980, + [SMALL_STATE(1704)] = 64008, + [SMALL_STATE(1705)] = 64036, + [SMALL_STATE(1706)] = 64056, + [SMALL_STATE(1707)] = 64082, + [SMALL_STATE(1708)] = 64110, + [SMALL_STATE(1709)] = 64138, + [SMALL_STATE(1710)] = 64162, + [SMALL_STATE(1711)] = 64188, + [SMALL_STATE(1712)] = 64208, + [SMALL_STATE(1713)] = 64236, + [SMALL_STATE(1714)] = 64264, + [SMALL_STATE(1715)] = 64284, + [SMALL_STATE(1716)] = 64312, + [SMALL_STATE(1717)] = 64340, + [SMALL_STATE(1718)] = 64360, + [SMALL_STATE(1719)] = 64388, + [SMALL_STATE(1720)] = 64416, + [SMALL_STATE(1721)] = 64442, + [SMALL_STATE(1722)] = 64462, + [SMALL_STATE(1723)] = 64488, + [SMALL_STATE(1724)] = 64516, + [SMALL_STATE(1725)] = 64539, + [SMALL_STATE(1726)] = 64560, + [SMALL_STATE(1727)] = 64585, + [SMALL_STATE(1728)] = 64610, + [SMALL_STATE(1729)] = 64629, + [SMALL_STATE(1730)] = 64650, + [SMALL_STATE(1731)] = 64671, + [SMALL_STATE(1732)] = 64692, + [SMALL_STATE(1733)] = 64717, + [SMALL_STATE(1734)] = 64742, + [SMALL_STATE(1735)] = 64767, + [SMALL_STATE(1736)] = 64788, + [SMALL_STATE(1737)] = 64807, + [SMALL_STATE(1738)] = 64826, + [SMALL_STATE(1739)] = 64847, + [SMALL_STATE(1740)] = 64868, + [SMALL_STATE(1741)] = 64889, + [SMALL_STATE(1742)] = 64910, + [SMALL_STATE(1743)] = 64931, + [SMALL_STATE(1744)] = 64952, + [SMALL_STATE(1745)] = 64977, + [SMALL_STATE(1746)] = 65000, + [SMALL_STATE(1747)] = 65023, + [SMALL_STATE(1748)] = 65044, + [SMALL_STATE(1749)] = 65063, + [SMALL_STATE(1750)] = 65082, + [SMALL_STATE(1751)] = 65101, + [SMALL_STATE(1752)] = 65126, + [SMALL_STATE(1753)] = 65145, + [SMALL_STATE(1754)] = 65166, + [SMALL_STATE(1755)] = 65187, + [SMALL_STATE(1756)] = 65210, + [SMALL_STATE(1757)] = 65231, + [SMALL_STATE(1758)] = 65252, + [SMALL_STATE(1759)] = 65273, + [SMALL_STATE(1760)] = 65298, + [SMALL_STATE(1761)] = 65323, + [SMALL_STATE(1762)] = 65344, + [SMALL_STATE(1763)] = 65363, + [SMALL_STATE(1764)] = 65380, + [SMALL_STATE(1765)] = 65405, + [SMALL_STATE(1766)] = 65424, + [SMALL_STATE(1767)] = 65447, + [SMALL_STATE(1768)] = 65472, + [SMALL_STATE(1769)] = 65491, + [SMALL_STATE(1770)] = 65516, + [SMALL_STATE(1771)] = 65539, + [SMALL_STATE(1772)] = 65560, + [SMALL_STATE(1773)] = 65585, + [SMALL_STATE(1774)] = 65610, + [SMALL_STATE(1775)] = 65629, + [SMALL_STATE(1776)] = 65650, + [SMALL_STATE(1777)] = 65671, + [SMALL_STATE(1778)] = 65696, + [SMALL_STATE(1779)] = 65721, + [SMALL_STATE(1780)] = 65746, + [SMALL_STATE(1781)] = 65767, + [SMALL_STATE(1782)] = 65788, + [SMALL_STATE(1783)] = 65809, + [SMALL_STATE(1784)] = 65830, + [SMALL_STATE(1785)] = 65851, + [SMALL_STATE(1786)] = 65868, + [SMALL_STATE(1787)] = 65889, + [SMALL_STATE(1788)] = 65910, + [SMALL_STATE(1789)] = 65935, + [SMALL_STATE(1790)] = 65960, + [SMALL_STATE(1791)] = 65981, + [SMALL_STATE(1792)] = 66004, + [SMALL_STATE(1793)] = 66029, + [SMALL_STATE(1794)] = 66052, + [SMALL_STATE(1795)] = 66071, + [SMALL_STATE(1796)] = 66092, + [SMALL_STATE(1797)] = 66113, + [SMALL_STATE(1798)] = 66134, + [SMALL_STATE(1799)] = 66155, + [SMALL_STATE(1800)] = 66176, + [SMALL_STATE(1801)] = 66201, + [SMALL_STATE(1802)] = 66224, + [SMALL_STATE(1803)] = 66245, + [SMALL_STATE(1804)] = 66266, + [SMALL_STATE(1805)] = 66291, + [SMALL_STATE(1806)] = 66314, + [SMALL_STATE(1807)] = 66331, + [SMALL_STATE(1808)] = 66348, + [SMALL_STATE(1809)] = 66365, + [SMALL_STATE(1810)] = 66386, + [SMALL_STATE(1811)] = 66409, + [SMALL_STATE(1812)] = 66432, + [SMALL_STATE(1813)] = 66452, + [SMALL_STATE(1814)] = 66474, + [SMALL_STATE(1815)] = 66494, + [SMALL_STATE(1816)] = 66510, + [SMALL_STATE(1817)] = 66532, + [SMALL_STATE(1818)] = 66554, + [SMALL_STATE(1819)] = 66574, + [SMALL_STATE(1820)] = 66596, + [SMALL_STATE(1821)] = 66618, + [SMALL_STATE(1822)] = 66638, + [SMALL_STATE(1823)] = 66654, + [SMALL_STATE(1824)] = 66670, + [SMALL_STATE(1825)] = 66686, + [SMALL_STATE(1826)] = 66702, + [SMALL_STATE(1827)] = 66724, + [SMALL_STATE(1828)] = 66744, + [SMALL_STATE(1829)] = 66766, + [SMALL_STATE(1830)] = 66782, + [SMALL_STATE(1831)] = 66802, + [SMALL_STATE(1832)] = 66818, + [SMALL_STATE(1833)] = 66840, + [SMALL_STATE(1834)] = 66860, + [SMALL_STATE(1835)] = 66878, + [SMALL_STATE(1836)] = 66896, + [SMALL_STATE(1837)] = 66918, + [SMALL_STATE(1838)] = 66940, + [SMALL_STATE(1839)] = 66962, + [SMALL_STATE(1840)] = 66978, + [SMALL_STATE(1841)] = 66996, + [SMALL_STATE(1842)] = 67016, + [SMALL_STATE(1843)] = 67038, + [SMALL_STATE(1844)] = 67060, + [SMALL_STATE(1845)] = 67082, + [SMALL_STATE(1846)] = 67102, + [SMALL_STATE(1847)] = 67122, + [SMALL_STATE(1848)] = 67140, + [SMALL_STATE(1849)] = 67160, + [SMALL_STATE(1850)] = 67178, + [SMALL_STATE(1851)] = 67198, + [SMALL_STATE(1852)] = 67220, + [SMALL_STATE(1853)] = 67242, + [SMALL_STATE(1854)] = 67260, + [SMALL_STATE(1855)] = 67278, + [SMALL_STATE(1856)] = 67296, + [SMALL_STATE(1857)] = 67318, + [SMALL_STATE(1858)] = 67340, + [SMALL_STATE(1859)] = 67360, + [SMALL_STATE(1860)] = 67378, + [SMALL_STATE(1861)] = 67400, + [SMALL_STATE(1862)] = 67420, + [SMALL_STATE(1863)] = 67440, + [SMALL_STATE(1864)] = 67460, + [SMALL_STATE(1865)] = 67476, + [SMALL_STATE(1866)] = 67498, + [SMALL_STATE(1867)] = 67520, + [SMALL_STATE(1868)] = 67540, + [SMALL_STATE(1869)] = 67562, + [SMALL_STATE(1870)] = 67584, + [SMALL_STATE(1871)] = 67602, + [SMALL_STATE(1872)] = 67624, + [SMALL_STATE(1873)] = 67646, + [SMALL_STATE(1874)] = 67668, + [SMALL_STATE(1875)] = 67690, + [SMALL_STATE(1876)] = 67712, + [SMALL_STATE(1877)] = 67734, + [SMALL_STATE(1878)] = 67756, + [SMALL_STATE(1879)] = 67778, + [SMALL_STATE(1880)] = 67798, + [SMALL_STATE(1881)] = 67820, + [SMALL_STATE(1882)] = 67840, + [SMALL_STATE(1883)] = 67862, + [SMALL_STATE(1884)] = 67882, + [SMALL_STATE(1885)] = 67898, + [SMALL_STATE(1886)] = 67920, + [SMALL_STATE(1887)] = 67936, + [SMALL_STATE(1888)] = 67954, + [SMALL_STATE(1889)] = 67972, + [SMALL_STATE(1890)] = 67994, + [SMALL_STATE(1891)] = 68014, + [SMALL_STATE(1892)] = 68030, + [SMALL_STATE(1893)] = 68048, + [SMALL_STATE(1894)] = 68066, + [SMALL_STATE(1895)] = 68088, + [SMALL_STATE(1896)] = 68110, + [SMALL_STATE(1897)] = 68132, + [SMALL_STATE(1898)] = 68154, + [SMALL_STATE(1899)] = 68176, + [SMALL_STATE(1900)] = 68198, + [SMALL_STATE(1901)] = 68220, + [SMALL_STATE(1902)] = 68236, + [SMALL_STATE(1903)] = 68258, + [SMALL_STATE(1904)] = 68274, + [SMALL_STATE(1905)] = 68294, + [SMALL_STATE(1906)] = 68314, + [SMALL_STATE(1907)] = 68334, + [SMALL_STATE(1908)] = 68356, + [SMALL_STATE(1909)] = 68376, + [SMALL_STATE(1910)] = 68398, + [SMALL_STATE(1911)] = 68414, + [SMALL_STATE(1912)] = 68434, + [SMALL_STATE(1913)] = 68454, + [SMALL_STATE(1914)] = 68470, + [SMALL_STATE(1915)] = 68492, + [SMALL_STATE(1916)] = 68512, + [SMALL_STATE(1917)] = 68534, + [SMALL_STATE(1918)] = 68556, + [SMALL_STATE(1919)] = 68572, + [SMALL_STATE(1920)] = 68592, + [SMALL_STATE(1921)] = 68612, + [SMALL_STATE(1922)] = 68634, + [SMALL_STATE(1923)] = 68656, + [SMALL_STATE(1924)] = 68678, + [SMALL_STATE(1925)] = 68694, + [SMALL_STATE(1926)] = 68710, + [SMALL_STATE(1927)] = 68732, + [SMALL_STATE(1928)] = 68752, + [SMALL_STATE(1929)] = 68774, + [SMALL_STATE(1930)] = 68794, + [SMALL_STATE(1931)] = 68816, + [SMALL_STATE(1932)] = 68838, + [SMALL_STATE(1933)] = 68854, + [SMALL_STATE(1934)] = 68876, + [SMALL_STATE(1935)] = 68896, + [SMALL_STATE(1936)] = 68918, + [SMALL_STATE(1937)] = 68938, + [SMALL_STATE(1938)] = 68958, + [SMALL_STATE(1939)] = 68976, + [SMALL_STATE(1940)] = 68996, + [SMALL_STATE(1941)] = 69018, + [SMALL_STATE(1942)] = 69038, + [SMALL_STATE(1943)] = 69054, + [SMALL_STATE(1944)] = 69070, + [SMALL_STATE(1945)] = 69090, + [SMALL_STATE(1946)] = 69110, + [SMALL_STATE(1947)] = 69132, + [SMALL_STATE(1948)] = 69154, + [SMALL_STATE(1949)] = 69176, + [SMALL_STATE(1950)] = 69198, + [SMALL_STATE(1951)] = 69220, + [SMALL_STATE(1952)] = 69240, + [SMALL_STATE(1953)] = 69260, + [SMALL_STATE(1954)] = 69278, + [SMALL_STATE(1955)] = 69294, + [SMALL_STATE(1956)] = 69314, + [SMALL_STATE(1957)] = 69334, + [SMALL_STATE(1958)] = 69356, + [SMALL_STATE(1959)] = 69376, + [SMALL_STATE(1960)] = 69398, + [SMALL_STATE(1961)] = 69418, + [SMALL_STATE(1962)] = 69438, + [SMALL_STATE(1963)] = 69458, + [SMALL_STATE(1964)] = 69478, + [SMALL_STATE(1965)] = 69498, + [SMALL_STATE(1966)] = 69518, + [SMALL_STATE(1967)] = 69538, + [SMALL_STATE(1968)] = 69560, + [SMALL_STATE(1969)] = 69576, + [SMALL_STATE(1970)] = 69595, + [SMALL_STATE(1971)] = 69614, + [SMALL_STATE(1972)] = 69631, + [SMALL_STATE(1973)] = 69650, + [SMALL_STATE(1974)] = 69669, + [SMALL_STATE(1975)] = 69686, + [SMALL_STATE(1976)] = 69703, + [SMALL_STATE(1977)] = 69718, + [SMALL_STATE(1978)] = 69735, + [SMALL_STATE(1979)] = 69754, + [SMALL_STATE(1980)] = 69771, + [SMALL_STATE(1981)] = 69788, + [SMALL_STATE(1982)] = 69805, + [SMALL_STATE(1983)] = 69822, + [SMALL_STATE(1984)] = 69841, + [SMALL_STATE(1985)] = 69860, + [SMALL_STATE(1986)] = 69879, + [SMALL_STATE(1987)] = 69896, + [SMALL_STATE(1988)] = 69915, + [SMALL_STATE(1989)] = 69930, + [SMALL_STATE(1990)] = 69947, + [SMALL_STATE(1991)] = 69966, + [SMALL_STATE(1992)] = 69985, + [SMALL_STATE(1993)] = 70004, + [SMALL_STATE(1994)] = 70021, + [SMALL_STATE(1995)] = 70038, + [SMALL_STATE(1996)] = 70057, + [SMALL_STATE(1997)] = 70076, + [SMALL_STATE(1998)] = 70093, + [SMALL_STATE(1999)] = 70112, + [SMALL_STATE(2000)] = 70127, + [SMALL_STATE(2001)] = 70144, + [SMALL_STATE(2002)] = 70161, + [SMALL_STATE(2003)] = 70180, + [SMALL_STATE(2004)] = 70197, + [SMALL_STATE(2005)] = 70216, + [SMALL_STATE(2006)] = 70233, + [SMALL_STATE(2007)] = 70248, + [SMALL_STATE(2008)] = 70267, + [SMALL_STATE(2009)] = 70284, + [SMALL_STATE(2010)] = 70301, + [SMALL_STATE(2011)] = 70318, + [SMALL_STATE(2012)] = 70335, + [SMALL_STATE(2013)] = 70352, + [SMALL_STATE(2014)] = 70369, + [SMALL_STATE(2015)] = 70386, + [SMALL_STATE(2016)] = 70401, + [SMALL_STATE(2017)] = 70420, + [SMALL_STATE(2018)] = 70437, + [SMALL_STATE(2019)] = 70454, + [SMALL_STATE(2020)] = 70473, + [SMALL_STATE(2021)] = 70492, + [SMALL_STATE(2022)] = 70509, + [SMALL_STATE(2023)] = 70528, + [SMALL_STATE(2024)] = 70547, + [SMALL_STATE(2025)] = 70564, + [SMALL_STATE(2026)] = 70583, + [SMALL_STATE(2027)] = 70600, + [SMALL_STATE(2028)] = 70619, + [SMALL_STATE(2029)] = 70638, + [SMALL_STATE(2030)] = 70657, + [SMALL_STATE(2031)] = 70674, + [SMALL_STATE(2032)] = 70691, + [SMALL_STATE(2033)] = 70708, + [SMALL_STATE(2034)] = 70725, + [SMALL_STATE(2035)] = 70742, + [SMALL_STATE(2036)] = 70759, + [SMALL_STATE(2037)] = 70778, + [SMALL_STATE(2038)] = 70795, + [SMALL_STATE(2039)] = 70812, + [SMALL_STATE(2040)] = 70831, + [SMALL_STATE(2041)] = 70848, + [SMALL_STATE(2042)] = 70867, + [SMALL_STATE(2043)] = 70886, + [SMALL_STATE(2044)] = 70903, + [SMALL_STATE(2045)] = 70920, + [SMALL_STATE(2046)] = 70937, + [SMALL_STATE(2047)] = 70954, + [SMALL_STATE(2048)] = 70971, + [SMALL_STATE(2049)] = 70988, + [SMALL_STATE(2050)] = 71007, + [SMALL_STATE(2051)] = 71024, + [SMALL_STATE(2052)] = 71043, + [SMALL_STATE(2053)] = 71062, + [SMALL_STATE(2054)] = 71079, + [SMALL_STATE(2055)] = 71098, + [SMALL_STATE(2056)] = 71117, + [SMALL_STATE(2057)] = 71136, + [SMALL_STATE(2058)] = 71153, + [SMALL_STATE(2059)] = 71170, + [SMALL_STATE(2060)] = 71187, + [SMALL_STATE(2061)] = 71206, + [SMALL_STATE(2062)] = 71225, + [SMALL_STATE(2063)] = 71244, + [SMALL_STATE(2064)] = 71259, + [SMALL_STATE(2065)] = 71276, + [SMALL_STATE(2066)] = 71293, + [SMALL_STATE(2067)] = 71310, + [SMALL_STATE(2068)] = 71329, + [SMALL_STATE(2069)] = 71346, + [SMALL_STATE(2070)] = 71363, + [SMALL_STATE(2071)] = 71380, + [SMALL_STATE(2072)] = 71397, + [SMALL_STATE(2073)] = 71416, + [SMALL_STATE(2074)] = 71431, + [SMALL_STATE(2075)] = 71446, + [SMALL_STATE(2076)] = 71465, + [SMALL_STATE(2077)] = 71480, + [SMALL_STATE(2078)] = 71495, + [SMALL_STATE(2079)] = 71512, + [SMALL_STATE(2080)] = 71531, + [SMALL_STATE(2081)] = 71550, + [SMALL_STATE(2082)] = 71569, + [SMALL_STATE(2083)] = 71584, + [SMALL_STATE(2084)] = 71599, + [SMALL_STATE(2085)] = 71616, + [SMALL_STATE(2086)] = 71635, + [SMALL_STATE(2087)] = 71650, + [SMALL_STATE(2088)] = 71667, + [SMALL_STATE(2089)] = 71684, + [SMALL_STATE(2090)] = 71701, + [SMALL_STATE(2091)] = 71718, + [SMALL_STATE(2092)] = 71737, + [SMALL_STATE(2093)] = 71754, + [SMALL_STATE(2094)] = 71771, + [SMALL_STATE(2095)] = 71788, + [SMALL_STATE(2096)] = 71807, + [SMALL_STATE(2097)] = 71824, + [SMALL_STATE(2098)] = 71841, + [SMALL_STATE(2099)] = 71858, + [SMALL_STATE(2100)] = 71877, + [SMALL_STATE(2101)] = 71894, + [SMALL_STATE(2102)] = 71909, + [SMALL_STATE(2103)] = 71928, + [SMALL_STATE(2104)] = 71945, + [SMALL_STATE(2105)] = 71962, + [SMALL_STATE(2106)] = 71979, + [SMALL_STATE(2107)] = 71996, + [SMALL_STATE(2108)] = 72013, + [SMALL_STATE(2109)] = 72030, + [SMALL_STATE(2110)] = 72045, + [SMALL_STATE(2111)] = 72064, + [SMALL_STATE(2112)] = 72083, + [SMALL_STATE(2113)] = 72100, + [SMALL_STATE(2114)] = 72119, + [SMALL_STATE(2115)] = 72136, + [SMALL_STATE(2116)] = 72153, + [SMALL_STATE(2117)] = 72170, + [SMALL_STATE(2118)] = 72187, + [SMALL_STATE(2119)] = 72204, + [SMALL_STATE(2120)] = 72223, + [SMALL_STATE(2121)] = 72242, + [SMALL_STATE(2122)] = 72257, + [SMALL_STATE(2123)] = 72274, + [SMALL_STATE(2124)] = 72293, + [SMALL_STATE(2125)] = 72310, + [SMALL_STATE(2126)] = 72327, + [SMALL_STATE(2127)] = 72344, + [SMALL_STATE(2128)] = 72359, + [SMALL_STATE(2129)] = 72376, + [SMALL_STATE(2130)] = 72393, + [SMALL_STATE(2131)] = 72412, + [SMALL_STATE(2132)] = 72427, + [SMALL_STATE(2133)] = 72446, + [SMALL_STATE(2134)] = 72461, + [SMALL_STATE(2135)] = 72476, + [SMALL_STATE(2136)] = 72495, + [SMALL_STATE(2137)] = 72514, + [SMALL_STATE(2138)] = 72531, + [SMALL_STATE(2139)] = 72548, + [SMALL_STATE(2140)] = 72563, + [SMALL_STATE(2141)] = 72580, + [SMALL_STATE(2142)] = 72597, + [SMALL_STATE(2143)] = 72616, + [SMALL_STATE(2144)] = 72631, + [SMALL_STATE(2145)] = 72650, + [SMALL_STATE(2146)] = 72667, + [SMALL_STATE(2147)] = 72686, + [SMALL_STATE(2148)] = 72703, + [SMALL_STATE(2149)] = 72720, + [SMALL_STATE(2150)] = 72739, + [SMALL_STATE(2151)] = 72756, + [SMALL_STATE(2152)] = 72775, + [SMALL_STATE(2153)] = 72790, + [SMALL_STATE(2154)] = 72809, + [SMALL_STATE(2155)] = 72828, + [SMALL_STATE(2156)] = 72843, + [SMALL_STATE(2157)] = 72862, + [SMALL_STATE(2158)] = 72879, + [SMALL_STATE(2159)] = 72896, + [SMALL_STATE(2160)] = 72913, + [SMALL_STATE(2161)] = 72932, + [SMALL_STATE(2162)] = 72951, + [SMALL_STATE(2163)] = 72968, + [SMALL_STATE(2164)] = 72985, + [SMALL_STATE(2165)] = 73002, + [SMALL_STATE(2166)] = 73019, + [SMALL_STATE(2167)] = 73036, + [SMALL_STATE(2168)] = 73055, + [SMALL_STATE(2169)] = 73074, + [SMALL_STATE(2170)] = 73093, + [SMALL_STATE(2171)] = 73112, + [SMALL_STATE(2172)] = 73129, + [SMALL_STATE(2173)] = 73148, + [SMALL_STATE(2174)] = 73165, + [SMALL_STATE(2175)] = 73182, + [SMALL_STATE(2176)] = 73199, + [SMALL_STATE(2177)] = 73216, + [SMALL_STATE(2178)] = 73235, + [SMALL_STATE(2179)] = 73252, + [SMALL_STATE(2180)] = 73269, + [SMALL_STATE(2181)] = 73284, + [SMALL_STATE(2182)] = 73301, + [SMALL_STATE(2183)] = 73318, + [SMALL_STATE(2184)] = 73337, + [SMALL_STATE(2185)] = 73356, + [SMALL_STATE(2186)] = 73373, + [SMALL_STATE(2187)] = 73390, + [SMALL_STATE(2188)] = 73407, + [SMALL_STATE(2189)] = 73422, + [SMALL_STATE(2190)] = 73441, + [SMALL_STATE(2191)] = 73460, + [SMALL_STATE(2192)] = 73475, + [SMALL_STATE(2193)] = 73494, + [SMALL_STATE(2194)] = 73511, + [SMALL_STATE(2195)] = 73528, + [SMALL_STATE(2196)] = 73545, + [SMALL_STATE(2197)] = 73562, + [SMALL_STATE(2198)] = 73579, + [SMALL_STATE(2199)] = 73598, + [SMALL_STATE(2200)] = 73613, + [SMALL_STATE(2201)] = 73632, + [SMALL_STATE(2202)] = 73651, + [SMALL_STATE(2203)] = 73668, + [SMALL_STATE(2204)] = 73687, + [SMALL_STATE(2205)] = 73704, + [SMALL_STATE(2206)] = 73721, + [SMALL_STATE(2207)] = 73740, + [SMALL_STATE(2208)] = 73757, + [SMALL_STATE(2209)] = 73774, + [SMALL_STATE(2210)] = 73791, + [SMALL_STATE(2211)] = 73808, + [SMALL_STATE(2212)] = 73827, + [SMALL_STATE(2213)] = 73842, + [SMALL_STATE(2214)] = 73859, + [SMALL_STATE(2215)] = 73876, + [SMALL_STATE(2216)] = 73895, + [SMALL_STATE(2217)] = 73912, + [SMALL_STATE(2218)] = 73929, + [SMALL_STATE(2219)] = 73946, + [SMALL_STATE(2220)] = 73963, + [SMALL_STATE(2221)] = 73980, + [SMALL_STATE(2222)] = 73997, + [SMALL_STATE(2223)] = 74014, + [SMALL_STATE(2224)] = 74031, + [SMALL_STATE(2225)] = 74048, + [SMALL_STATE(2226)] = 74065, + [SMALL_STATE(2227)] = 74082, + [SMALL_STATE(2228)] = 74099, + [SMALL_STATE(2229)] = 74118, + [SMALL_STATE(2230)] = 74135, + [SMALL_STATE(2231)] = 74154, + [SMALL_STATE(2232)] = 74173, + [SMALL_STATE(2233)] = 74192, + [SMALL_STATE(2234)] = 74211, + [SMALL_STATE(2235)] = 74230, + [SMALL_STATE(2236)] = 74247, + [SMALL_STATE(2237)] = 74264, + [SMALL_STATE(2238)] = 74283, + [SMALL_STATE(2239)] = 74300, + [SMALL_STATE(2240)] = 74319, + [SMALL_STATE(2241)] = 74338, + [SMALL_STATE(2242)] = 74357, + [SMALL_STATE(2243)] = 74374, + [SMALL_STATE(2244)] = 74391, + [SMALL_STATE(2245)] = 74410, + [SMALL_STATE(2246)] = 74427, + [SMALL_STATE(2247)] = 74444, + [SMALL_STATE(2248)] = 74459, + [SMALL_STATE(2249)] = 74476, + [SMALL_STATE(2250)] = 74493, + [SMALL_STATE(2251)] = 74510, + [SMALL_STATE(2252)] = 74526, + [SMALL_STATE(2253)] = 74542, + [SMALL_STATE(2254)] = 74556, + [SMALL_STATE(2255)] = 74572, + [SMALL_STATE(2256)] = 74588, + [SMALL_STATE(2257)] = 74604, + [SMALL_STATE(2258)] = 74618, + [SMALL_STATE(2259)] = 74634, + [SMALL_STATE(2260)] = 74648, + [SMALL_STATE(2261)] = 74662, + [SMALL_STATE(2262)] = 74678, + [SMALL_STATE(2263)] = 74694, + [SMALL_STATE(2264)] = 74710, + [SMALL_STATE(2265)] = 74726, + [SMALL_STATE(2266)] = 74742, + [SMALL_STATE(2267)] = 74756, + [SMALL_STATE(2268)] = 74772, + [SMALL_STATE(2269)] = 74786, + [SMALL_STATE(2270)] = 74802, + [SMALL_STATE(2271)] = 74816, + [SMALL_STATE(2272)] = 74830, + [SMALL_STATE(2273)] = 74846, + [SMALL_STATE(2274)] = 74862, + [SMALL_STATE(2275)] = 74878, + [SMALL_STATE(2276)] = 74894, + [SMALL_STATE(2277)] = 74910, + [SMALL_STATE(2278)] = 74924, + [SMALL_STATE(2279)] = 74938, + [SMALL_STATE(2280)] = 74954, + [SMALL_STATE(2281)] = 74970, + [SMALL_STATE(2282)] = 74986, + [SMALL_STATE(2283)] = 75000, + [SMALL_STATE(2284)] = 75014, + [SMALL_STATE(2285)] = 75030, + [SMALL_STATE(2286)] = 75044, + [SMALL_STATE(2287)] = 75060, + [SMALL_STATE(2288)] = 75074, + [SMALL_STATE(2289)] = 75090, + [SMALL_STATE(2290)] = 75106, + [SMALL_STATE(2291)] = 75120, + [SMALL_STATE(2292)] = 75136, + [SMALL_STATE(2293)] = 75152, + [SMALL_STATE(2294)] = 75168, + [SMALL_STATE(2295)] = 75182, + [SMALL_STATE(2296)] = 75196, + [SMALL_STATE(2297)] = 75210, + [SMALL_STATE(2298)] = 75226, + [SMALL_STATE(2299)] = 75242, + [SMALL_STATE(2300)] = 75258, + [SMALL_STATE(2301)] = 75274, + [SMALL_STATE(2302)] = 75290, + [SMALL_STATE(2303)] = 75306, + [SMALL_STATE(2304)] = 75320, + [SMALL_STATE(2305)] = 75336, + [SMALL_STATE(2306)] = 75352, + [SMALL_STATE(2307)] = 75368, + [SMALL_STATE(2308)] = 75384, + [SMALL_STATE(2309)] = 75398, + [SMALL_STATE(2310)] = 75412, + [SMALL_STATE(2311)] = 75426, + [SMALL_STATE(2312)] = 75440, + [SMALL_STATE(2313)] = 75454, + [SMALL_STATE(2314)] = 75468, + [SMALL_STATE(2315)] = 75484, + [SMALL_STATE(2316)] = 75498, + [SMALL_STATE(2317)] = 75514, + [SMALL_STATE(2318)] = 75530, + [SMALL_STATE(2319)] = 75544, + [SMALL_STATE(2320)] = 75560, + [SMALL_STATE(2321)] = 75574, + [SMALL_STATE(2322)] = 75590, + [SMALL_STATE(2323)] = 75604, + [SMALL_STATE(2324)] = 75618, + [SMALL_STATE(2325)] = 75632, + [SMALL_STATE(2326)] = 75648, + [SMALL_STATE(2327)] = 75664, + [SMALL_STATE(2328)] = 75680, + [SMALL_STATE(2329)] = 75696, + [SMALL_STATE(2330)] = 75710, + [SMALL_STATE(2331)] = 75724, + [SMALL_STATE(2332)] = 75738, + [SMALL_STATE(2333)] = 75754, + [SMALL_STATE(2334)] = 75770, + [SMALL_STATE(2335)] = 75786, + [SMALL_STATE(2336)] = 75802, + [SMALL_STATE(2337)] = 75818, + [SMALL_STATE(2338)] = 75834, + [SMALL_STATE(2339)] = 75850, + [SMALL_STATE(2340)] = 75864, + [SMALL_STATE(2341)] = 75880, + [SMALL_STATE(2342)] = 75894, + [SMALL_STATE(2343)] = 75910, + [SMALL_STATE(2344)] = 75926, + [SMALL_STATE(2345)] = 75942, + [SMALL_STATE(2346)] = 75958, + [SMALL_STATE(2347)] = 75974, + [SMALL_STATE(2348)] = 75990, + [SMALL_STATE(2349)] = 76006, + [SMALL_STATE(2350)] = 76020, + [SMALL_STATE(2351)] = 76034, + [SMALL_STATE(2352)] = 76048, + [SMALL_STATE(2353)] = 76062, + [SMALL_STATE(2354)] = 76076, + [SMALL_STATE(2355)] = 76090, + [SMALL_STATE(2356)] = 76106, + [SMALL_STATE(2357)] = 76122, + [SMALL_STATE(2358)] = 76136, + [SMALL_STATE(2359)] = 76150, + [SMALL_STATE(2360)] = 76166, + [SMALL_STATE(2361)] = 76182, + [SMALL_STATE(2362)] = 76196, + [SMALL_STATE(2363)] = 76210, + [SMALL_STATE(2364)] = 76224, + [SMALL_STATE(2365)] = 76240, + [SMALL_STATE(2366)] = 76256, + [SMALL_STATE(2367)] = 76272, + [SMALL_STATE(2368)] = 76288, + [SMALL_STATE(2369)] = 76304, + [SMALL_STATE(2370)] = 76318, + [SMALL_STATE(2371)] = 76334, + [SMALL_STATE(2372)] = 76348, + [SMALL_STATE(2373)] = 76362, + [SMALL_STATE(2374)] = 76376, + [SMALL_STATE(2375)] = 76392, + [SMALL_STATE(2376)] = 76408, + [SMALL_STATE(2377)] = 76422, + [SMALL_STATE(2378)] = 76436, + [SMALL_STATE(2379)] = 76452, + [SMALL_STATE(2380)] = 76466, + [SMALL_STATE(2381)] = 76482, + [SMALL_STATE(2382)] = 76498, + [SMALL_STATE(2383)] = 76512, + [SMALL_STATE(2384)] = 76528, + [SMALL_STATE(2385)] = 76542, + [SMALL_STATE(2386)] = 76558, + [SMALL_STATE(2387)] = 76572, + [SMALL_STATE(2388)] = 76588, + [SMALL_STATE(2389)] = 76604, + [SMALL_STATE(2390)] = 76618, + [SMALL_STATE(2391)] = 76634, + [SMALL_STATE(2392)] = 76650, + [SMALL_STATE(2393)] = 76666, + [SMALL_STATE(2394)] = 76682, + [SMALL_STATE(2395)] = 76698, + [SMALL_STATE(2396)] = 76714, + [SMALL_STATE(2397)] = 76730, + [SMALL_STATE(2398)] = 76746, + [SMALL_STATE(2399)] = 76762, + [SMALL_STATE(2400)] = 76778, + [SMALL_STATE(2401)] = 76792, + [SMALL_STATE(2402)] = 76808, + [SMALL_STATE(2403)] = 76822, + [SMALL_STATE(2404)] = 76838, + [SMALL_STATE(2405)] = 76852, + [SMALL_STATE(2406)] = 76868, + [SMALL_STATE(2407)] = 76884, + [SMALL_STATE(2408)] = 76900, + [SMALL_STATE(2409)] = 76914, + [SMALL_STATE(2410)] = 76928, + [SMALL_STATE(2411)] = 76944, + [SMALL_STATE(2412)] = 76960, + [SMALL_STATE(2413)] = 76976, + [SMALL_STATE(2414)] = 76992, + [SMALL_STATE(2415)] = 77008, + [SMALL_STATE(2416)] = 77024, + [SMALL_STATE(2417)] = 77040, + [SMALL_STATE(2418)] = 77056, + [SMALL_STATE(2419)] = 77072, + [SMALL_STATE(2420)] = 77088, + [SMALL_STATE(2421)] = 77104, + [SMALL_STATE(2422)] = 77118, + [SMALL_STATE(2423)] = 77134, + [SMALL_STATE(2424)] = 77148, + [SMALL_STATE(2425)] = 77164, + [SMALL_STATE(2426)] = 77178, + [SMALL_STATE(2427)] = 77194, + [SMALL_STATE(2428)] = 77210, + [SMALL_STATE(2429)] = 77224, + [SMALL_STATE(2430)] = 77240, + [SMALL_STATE(2431)] = 77254, + [SMALL_STATE(2432)] = 77270, + [SMALL_STATE(2433)] = 77286, + [SMALL_STATE(2434)] = 77300, + [SMALL_STATE(2435)] = 77316, + [SMALL_STATE(2436)] = 77332, + [SMALL_STATE(2437)] = 77348, + [SMALL_STATE(2438)] = 77362, + [SMALL_STATE(2439)] = 77378, + [SMALL_STATE(2440)] = 77392, + [SMALL_STATE(2441)] = 77408, + [SMALL_STATE(2442)] = 77424, + [SMALL_STATE(2443)] = 77440, + [SMALL_STATE(2444)] = 77454, + [SMALL_STATE(2445)] = 77470, + [SMALL_STATE(2446)] = 77486, + [SMALL_STATE(2447)] = 77502, + [SMALL_STATE(2448)] = 77518, + [SMALL_STATE(2449)] = 77534, + [SMALL_STATE(2450)] = 77550, + [SMALL_STATE(2451)] = 77564, + [SMALL_STATE(2452)] = 77580, + [SMALL_STATE(2453)] = 77596, + [SMALL_STATE(2454)] = 77612, + [SMALL_STATE(2455)] = 77628, + [SMALL_STATE(2456)] = 77644, + [SMALL_STATE(2457)] = 77660, + [SMALL_STATE(2458)] = 77676, + [SMALL_STATE(2459)] = 77692, + [SMALL_STATE(2460)] = 77708, + [SMALL_STATE(2461)] = 77724, + [SMALL_STATE(2462)] = 77740, + [SMALL_STATE(2463)] = 77756, + [SMALL_STATE(2464)] = 77772, + [SMALL_STATE(2465)] = 77786, + [SMALL_STATE(2466)] = 77802, + [SMALL_STATE(2467)] = 77818, + [SMALL_STATE(2468)] = 77832, + [SMALL_STATE(2469)] = 77848, + [SMALL_STATE(2470)] = 77862, + [SMALL_STATE(2471)] = 77878, + [SMALL_STATE(2472)] = 77894, + [SMALL_STATE(2473)] = 77910, + [SMALL_STATE(2474)] = 77924, + [SMALL_STATE(2475)] = 77938, + [SMALL_STATE(2476)] = 77952, + [SMALL_STATE(2477)] = 77966, + [SMALL_STATE(2478)] = 77982, + [SMALL_STATE(2479)] = 77996, + [SMALL_STATE(2480)] = 78012, + [SMALL_STATE(2481)] = 78028, + [SMALL_STATE(2482)] = 78044, + [SMALL_STATE(2483)] = 78058, + [SMALL_STATE(2484)] = 78074, + [SMALL_STATE(2485)] = 78088, + [SMALL_STATE(2486)] = 78102, + [SMALL_STATE(2487)] = 78116, + [SMALL_STATE(2488)] = 78132, + [SMALL_STATE(2489)] = 78146, + [SMALL_STATE(2490)] = 78162, + [SMALL_STATE(2491)] = 78178, + [SMALL_STATE(2492)] = 78192, + [SMALL_STATE(2493)] = 78206, + [SMALL_STATE(2494)] = 78222, + [SMALL_STATE(2495)] = 78238, + [SMALL_STATE(2496)] = 78254, + [SMALL_STATE(2497)] = 78268, + [SMALL_STATE(2498)] = 78284, + [SMALL_STATE(2499)] = 78300, + [SMALL_STATE(2500)] = 78314, + [SMALL_STATE(2501)] = 78328, + [SMALL_STATE(2502)] = 78342, + [SMALL_STATE(2503)] = 78356, + [SMALL_STATE(2504)] = 78372, + [SMALL_STATE(2505)] = 78388, + [SMALL_STATE(2506)] = 78404, + [SMALL_STATE(2507)] = 78420, + [SMALL_STATE(2508)] = 78434, + [SMALL_STATE(2509)] = 78450, + [SMALL_STATE(2510)] = 78464, + [SMALL_STATE(2511)] = 78480, + [SMALL_STATE(2512)] = 78494, + [SMALL_STATE(2513)] = 78510, + [SMALL_STATE(2514)] = 78526, + [SMALL_STATE(2515)] = 78542, + [SMALL_STATE(2516)] = 78558, + [SMALL_STATE(2517)] = 78574, + [SMALL_STATE(2518)] = 78588, + [SMALL_STATE(2519)] = 78604, + [SMALL_STATE(2520)] = 78620, + [SMALL_STATE(2521)] = 78634, + [SMALL_STATE(2522)] = 78650, + [SMALL_STATE(2523)] = 78664, + [SMALL_STATE(2524)] = 78678, + [SMALL_STATE(2525)] = 78694, + [SMALL_STATE(2526)] = 78710, + [SMALL_STATE(2527)] = 78726, + [SMALL_STATE(2528)] = 78742, + [SMALL_STATE(2529)] = 78758, + [SMALL_STATE(2530)] = 78774, + [SMALL_STATE(2531)] = 78790, + [SMALL_STATE(2532)] = 78806, + [SMALL_STATE(2533)] = 78820, + [SMALL_STATE(2534)] = 78836, + [SMALL_STATE(2535)] = 78850, + [SMALL_STATE(2536)] = 78864, + [SMALL_STATE(2537)] = 78880, + [SMALL_STATE(2538)] = 78896, + [SMALL_STATE(2539)] = 78912, + [SMALL_STATE(2540)] = 78926, + [SMALL_STATE(2541)] = 78942, + [SMALL_STATE(2542)] = 78956, + [SMALL_STATE(2543)] = 78972, + [SMALL_STATE(2544)] = 78988, + [SMALL_STATE(2545)] = 79002, + [SMALL_STATE(2546)] = 79018, + [SMALL_STATE(2547)] = 79034, + [SMALL_STATE(2548)] = 79050, + [SMALL_STATE(2549)] = 79066, + [SMALL_STATE(2550)] = 79080, + [SMALL_STATE(2551)] = 79096, + [SMALL_STATE(2552)] = 79112, + [SMALL_STATE(2553)] = 79128, + [SMALL_STATE(2554)] = 79144, + [SMALL_STATE(2555)] = 79160, + [SMALL_STATE(2556)] = 79176, + [SMALL_STATE(2557)] = 79189, + [SMALL_STATE(2558)] = 79202, + [SMALL_STATE(2559)] = 79215, + [SMALL_STATE(2560)] = 79228, + [SMALL_STATE(2561)] = 79241, + [SMALL_STATE(2562)] = 79254, + [SMALL_STATE(2563)] = 79267, + [SMALL_STATE(2564)] = 79280, + [SMALL_STATE(2565)] = 79293, + [SMALL_STATE(2566)] = 79306, + [SMALL_STATE(2567)] = 79319, + [SMALL_STATE(2568)] = 79332, + [SMALL_STATE(2569)] = 79345, + [SMALL_STATE(2570)] = 79358, + [SMALL_STATE(2571)] = 79371, + [SMALL_STATE(2572)] = 79384, + [SMALL_STATE(2573)] = 79397, + [SMALL_STATE(2574)] = 79410, + [SMALL_STATE(2575)] = 79423, + [SMALL_STATE(2576)] = 79436, + [SMALL_STATE(2577)] = 79449, + [SMALL_STATE(2578)] = 79462, + [SMALL_STATE(2579)] = 79475, + [SMALL_STATE(2580)] = 79488, + [SMALL_STATE(2581)] = 79501, + [SMALL_STATE(2582)] = 79514, + [SMALL_STATE(2583)] = 79527, + [SMALL_STATE(2584)] = 79540, + [SMALL_STATE(2585)] = 79553, + [SMALL_STATE(2586)] = 79566, + [SMALL_STATE(2587)] = 79579, + [SMALL_STATE(2588)] = 79592, + [SMALL_STATE(2589)] = 79605, + [SMALL_STATE(2590)] = 79618, + [SMALL_STATE(2591)] = 79631, + [SMALL_STATE(2592)] = 79644, + [SMALL_STATE(2593)] = 79657, + [SMALL_STATE(2594)] = 79670, + [SMALL_STATE(2595)] = 79683, + [SMALL_STATE(2596)] = 79696, + [SMALL_STATE(2597)] = 79709, + [SMALL_STATE(2598)] = 79722, + [SMALL_STATE(2599)] = 79735, + [SMALL_STATE(2600)] = 79748, + [SMALL_STATE(2601)] = 79761, + [SMALL_STATE(2602)] = 79774, + [SMALL_STATE(2603)] = 79787, + [SMALL_STATE(2604)] = 79800, + [SMALL_STATE(2605)] = 79813, + [SMALL_STATE(2606)] = 79826, + [SMALL_STATE(2607)] = 79839, + [SMALL_STATE(2608)] = 79852, + [SMALL_STATE(2609)] = 79865, + [SMALL_STATE(2610)] = 79878, + [SMALL_STATE(2611)] = 79891, + [SMALL_STATE(2612)] = 79904, + [SMALL_STATE(2613)] = 79917, + [SMALL_STATE(2614)] = 79930, + [SMALL_STATE(2615)] = 79943, + [SMALL_STATE(2616)] = 79956, + [SMALL_STATE(2617)] = 79969, + [SMALL_STATE(2618)] = 79982, + [SMALL_STATE(2619)] = 79995, + [SMALL_STATE(2620)] = 80008, + [SMALL_STATE(2621)] = 80021, + [SMALL_STATE(2622)] = 80034, + [SMALL_STATE(2623)] = 80047, + [SMALL_STATE(2624)] = 80060, + [SMALL_STATE(2625)] = 80073, + [SMALL_STATE(2626)] = 80086, + [SMALL_STATE(2627)] = 80099, + [SMALL_STATE(2628)] = 80112, + [SMALL_STATE(2629)] = 80125, + [SMALL_STATE(2630)] = 80138, + [SMALL_STATE(2631)] = 80151, + [SMALL_STATE(2632)] = 80164, + [SMALL_STATE(2633)] = 80177, + [SMALL_STATE(2634)] = 80190, + [SMALL_STATE(2635)] = 80203, + [SMALL_STATE(2636)] = 80216, + [SMALL_STATE(2637)] = 80229, + [SMALL_STATE(2638)] = 80242, + [SMALL_STATE(2639)] = 80255, + [SMALL_STATE(2640)] = 80268, + [SMALL_STATE(2641)] = 80281, + [SMALL_STATE(2642)] = 80294, + [SMALL_STATE(2643)] = 80307, + [SMALL_STATE(2644)] = 80320, + [SMALL_STATE(2645)] = 80333, + [SMALL_STATE(2646)] = 80346, + [SMALL_STATE(2647)] = 80359, + [SMALL_STATE(2648)] = 80372, + [SMALL_STATE(2649)] = 80385, + [SMALL_STATE(2650)] = 80398, + [SMALL_STATE(2651)] = 80411, + [SMALL_STATE(2652)] = 80424, + [SMALL_STATE(2653)] = 80437, + [SMALL_STATE(2654)] = 80450, + [SMALL_STATE(2655)] = 80463, + [SMALL_STATE(2656)] = 80476, + [SMALL_STATE(2657)] = 80489, + [SMALL_STATE(2658)] = 80502, + [SMALL_STATE(2659)] = 80515, + [SMALL_STATE(2660)] = 80528, + [SMALL_STATE(2661)] = 80541, + [SMALL_STATE(2662)] = 80554, + [SMALL_STATE(2663)] = 80567, + [SMALL_STATE(2664)] = 80580, + [SMALL_STATE(2665)] = 80593, + [SMALL_STATE(2666)] = 80606, + [SMALL_STATE(2667)] = 80619, + [SMALL_STATE(2668)] = 80632, + [SMALL_STATE(2669)] = 80645, + [SMALL_STATE(2670)] = 80658, + [SMALL_STATE(2671)] = 80671, + [SMALL_STATE(2672)] = 80684, + [SMALL_STATE(2673)] = 80697, + [SMALL_STATE(2674)] = 80710, + [SMALL_STATE(2675)] = 80723, + [SMALL_STATE(2676)] = 80736, + [SMALL_STATE(2677)] = 80749, + [SMALL_STATE(2678)] = 80762, + [SMALL_STATE(2679)] = 80775, + [SMALL_STATE(2680)] = 80788, + [SMALL_STATE(2681)] = 80801, + [SMALL_STATE(2682)] = 80814, + [SMALL_STATE(2683)] = 80827, + [SMALL_STATE(2684)] = 80840, + [SMALL_STATE(2685)] = 80853, + [SMALL_STATE(2686)] = 80866, + [SMALL_STATE(2687)] = 80879, + [SMALL_STATE(2688)] = 80892, + [SMALL_STATE(2689)] = 80905, + [SMALL_STATE(2690)] = 80918, + [SMALL_STATE(2691)] = 80931, + [SMALL_STATE(2692)] = 80944, + [SMALL_STATE(2693)] = 80957, + [SMALL_STATE(2694)] = 80970, + [SMALL_STATE(2695)] = 80983, + [SMALL_STATE(2696)] = 80996, + [SMALL_STATE(2697)] = 81009, + [SMALL_STATE(2698)] = 81022, + [SMALL_STATE(2699)] = 81035, + [SMALL_STATE(2700)] = 81048, + [SMALL_STATE(2701)] = 81061, + [SMALL_STATE(2702)] = 81074, + [SMALL_STATE(2703)] = 81087, + [SMALL_STATE(2704)] = 81100, + [SMALL_STATE(2705)] = 81113, + [SMALL_STATE(2706)] = 81126, + [SMALL_STATE(2707)] = 81139, + [SMALL_STATE(2708)] = 81152, + [SMALL_STATE(2709)] = 81165, + [SMALL_STATE(2710)] = 81178, + [SMALL_STATE(2711)] = 81191, + [SMALL_STATE(2712)] = 81204, + [SMALL_STATE(2713)] = 81217, + [SMALL_STATE(2714)] = 81230, + [SMALL_STATE(2715)] = 81243, + [SMALL_STATE(2716)] = 81256, + [SMALL_STATE(2717)] = 81269, + [SMALL_STATE(2718)] = 81282, + [SMALL_STATE(2719)] = 81295, + [SMALL_STATE(2720)] = 81308, + [SMALL_STATE(2721)] = 81321, + [SMALL_STATE(2722)] = 81334, + [SMALL_STATE(2723)] = 81347, + [SMALL_STATE(2724)] = 81360, + [SMALL_STATE(2725)] = 81373, + [SMALL_STATE(2726)] = 81386, + [SMALL_STATE(2727)] = 81399, + [SMALL_STATE(2728)] = 81412, + [SMALL_STATE(2729)] = 81425, + [SMALL_STATE(2730)] = 81438, + [SMALL_STATE(2731)] = 81451, + [SMALL_STATE(2732)] = 81464, + [SMALL_STATE(2733)] = 81477, + [SMALL_STATE(2734)] = 81490, + [SMALL_STATE(2735)] = 81503, + [SMALL_STATE(2736)] = 81516, + [SMALL_STATE(2737)] = 81529, + [SMALL_STATE(2738)] = 81542, + [SMALL_STATE(2739)] = 81555, + [SMALL_STATE(2740)] = 81568, + [SMALL_STATE(2741)] = 81581, + [SMALL_STATE(2742)] = 81594, + [SMALL_STATE(2743)] = 81607, + [SMALL_STATE(2744)] = 81620, + [SMALL_STATE(2745)] = 81633, + [SMALL_STATE(2746)] = 81646, + [SMALL_STATE(2747)] = 81659, + [SMALL_STATE(2748)] = 81672, + [SMALL_STATE(2749)] = 81685, + [SMALL_STATE(2750)] = 81698, + [SMALL_STATE(2751)] = 81702, }; 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(1617), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), [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(60), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), [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(798), - [22] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(548), - [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1423), - [28] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1927), - [31] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1659), - [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1381), - [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1490), - [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1164), - [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2214), - [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(2645), - [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2644), - [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2643), + [19] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(850), + [22] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(468), + [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1474), + [28] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2193), + [31] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1635), + [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1454), + [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1521), + [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1136), + [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2273), + [46] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2274), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2275), + [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2276), [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(2642), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1323), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1328), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1327), - [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(1867), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(94), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2635), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(195), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1935), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2633), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2631), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1105), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2232), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2628), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(190), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(184), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(187), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(310), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2240), + [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2281), + [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1350), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1365), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1368), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1366), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1836), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(93), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2717), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(192), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2178), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2715), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2714), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1184), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2297), + [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2712), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(195), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(200), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(199), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(283), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2298), [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(79), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2626), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2625), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2243), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2244), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2245), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(316), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(316), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(325), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(576), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(333), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(663), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(833), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2621), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(109), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(740), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1137), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1138), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1434), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1384), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1853), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1939), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1386), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1688), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2710), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2709), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2304), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2305), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2306), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(294), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(294), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(299), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(579), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(321), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(671), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(849), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2704), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(108), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(753), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1164), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1165), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1459), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1452), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1838), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2169), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1450), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1642), [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(349), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(353), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(356), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(357), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1105), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(364), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(391), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(403), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(611), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 143), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 143), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 134), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 134), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 143), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 143), [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 134), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 134), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2668), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2277), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2677), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2562), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2278), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(903), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(737), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 3), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2524), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2353), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 3), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 3), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 18), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(2191), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(83), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 47), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 47), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 47), SHIFT(2191), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 47), SHIFT(83), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 3), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 3), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 91), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 91), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 91), SHIFT_REPEAT(2191), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 184), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 184), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 166), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 166), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 140), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 140), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 177), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 177), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 151), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 151), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 63), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 63), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 139), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 139), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 6, .production_id = 99), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 6, .production_id = 99), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 12), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 12), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 42), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 42), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 109), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 109), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 107), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 107), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 40), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 40), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 186), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 186), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 152), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 152), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, .production_id = 40), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, .production_id = 40), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 176), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 176), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 150), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 150), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 99), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 99), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 170), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 170), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 88), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 88), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 96), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 96), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 12), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 12), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 3), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 3), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 151), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 151), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 150), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 150), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 175), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 175), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 89), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 89), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 18), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 18), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 18), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 18), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 47), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 47), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 46), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 46), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 140), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 140), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 18), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 18), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 42), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 42), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 18), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 18), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 139), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 139), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 42), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 42), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 88), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 88), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 131), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 131), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 55), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 55), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 87), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 87), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 12), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 12), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 186), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 186), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 42), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 42), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 167), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 167), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 46), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 45), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 45), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 167), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 167), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 90), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 90), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 109), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 109), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 107), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 107), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 27), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 27), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 63), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 63), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 18), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 18), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 107), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 107), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 90), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 90), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 149), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 149), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 177), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 177), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 11), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 11), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 9), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 9), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1, .production_id = 1), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1, .production_id = 1), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 63), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 63), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 97), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 97), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 170), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 170), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 176), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 176), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 96), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 96), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 12), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 12), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 152), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 152), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 44), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 44), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 25), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 25), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 24), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 24), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 25), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 25), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 102), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 102), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 102), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 102), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 8), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 8), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 142), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 142), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 142), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 142), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 60), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 60), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 141), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 141), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 61), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 61), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 61), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 61), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2555), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 22), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 22), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 101), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 101), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1422), - [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(740), - [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1974), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2214), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(98), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2577), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(119), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1385), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1840), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2109), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1684), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name, 2, .production_id = 52), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_name, 2, .production_id = 52), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 17), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 17), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 19), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 19), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 92), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 92), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 93), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 93), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 94), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 94), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 168), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 168), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 51), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 51), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 169), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 169), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 138), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 138), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 137), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 137), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 17), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 17), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 17), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 17), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 39), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 39), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 48), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 48), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_suppression_expression, 2), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_suppression_expression, 2), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 28), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 28), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 36), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 185), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 185), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 174), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 174), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 173), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 173), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 172), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 172), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 171), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 171), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 48), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 48), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 38), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 38), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 154), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 154), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 148), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 148), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 147), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 147), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 146), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 146), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 145), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 48), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 48), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 144), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 143), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 143), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 48), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 48), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 10), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 62), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 62), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 67), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 67), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 68), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 68), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 14), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 14), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 126), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 126), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 69), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 69), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 81), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 81), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 82), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 82), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 83), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 83), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 114), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 113), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 113), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 112), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 112), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 103), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 103), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 104), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 18), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 18), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 105), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 106), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 106), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1434), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 59), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 58), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 58), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 22), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 21), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 100), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 100), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 1), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1331), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1323), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1328), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1327), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1329), - [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1326), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 29), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 132), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 54), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 53), - [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1331), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1442), - [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1537), - [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1164), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1323), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1328), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1327), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1329), - [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1326), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1434), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 133), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 178), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 179), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 180), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 181), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 125), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 157), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 119), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 117), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 115), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 79), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 156), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 158), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 155), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 95), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, .production_id = 187), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 160), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 162), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1331), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1442), - [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1537), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2620), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1323), - [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1328), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1327), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1329), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1326), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1434), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(237), - [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1544), - [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1544), - [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1416), - [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1727), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_heredoc_body, 2), SHIFT(1416), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(237), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1544), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1544), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1727), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 128), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 27), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 165), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 164), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 129), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 130), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 9), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 85), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1, .production_id = 1), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 75), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 41), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 40), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 182), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 127), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 163), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 182), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 40), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 183), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 86), - [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(348), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1644), - [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1644), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1755), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(407), - [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1649), - [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1649), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1750), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 163), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 11), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 84), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 188), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3102] = {.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), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3109] = {.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), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types, 1), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1344), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1345), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1342), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2656), - [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2264), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), - [3405] = {.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), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 25), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 25), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(314), - [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2194), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 7), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 7), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 47), SHIFT(2319), - [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 47), SHIFT(82), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(2319), - [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 18), SHIFT(82), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1347), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1346), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1333), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 35), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 91), - [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 91), SHIFT_REPEAT(2199), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 91), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1903), - [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1903), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1446), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1334), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1343), - [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 91), SHIFT_REPEAT(2319), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2555), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2679), - [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1785), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1785), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 13), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2679), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2679), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2013), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2013), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1348), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 2), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1438), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1641), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1348), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(2024), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(2029), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1430), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1570), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), - [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(2051), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(2031), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 32), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 31), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 136), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 78), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(147), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 77), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 30), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 37), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 34), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 76), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 74), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(749), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 72), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 71), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1889), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 4), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 33), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 159), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1753), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 6), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 66), - [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 2), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 1), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 136), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 15), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(308), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 64), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(153), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 26), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(808), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 50), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 56), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 18), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 18), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 20), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1420), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(150), - [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(135), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 50), - [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(154), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 80), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 50), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 49), - [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(149), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 124), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 122), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 121), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 116), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 110), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 45), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 45), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2363), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 118), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 120), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 123), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 4), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 11), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 75), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2363), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 73), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 70), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 161), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 135), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2555), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 153), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 3), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 65), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 16), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 57), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 98), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 43), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 108), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 111), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5000] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2738), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2399), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2747), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2684), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2344), + [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(773), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 1), SHIFT(897), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_placeholder, 1), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 3), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2597), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2508), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 3), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 3), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 51), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 51), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 20), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 20), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 20), SHIFT(2333), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 20), SHIFT(77), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 51), SHIFT(2333), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 51), SHIFT(77), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 194), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 194), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(2333), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 3), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 3), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, .production_id = 15), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, .production_id = 15), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 175), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 175), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 45), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 45), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 160), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 160), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 148), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 148), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 161), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 161), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 180), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 180), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 186), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 186), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 187), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 187), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 12), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 12), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 96), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 96), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 159), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 159), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 6, .production_id = 108), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 6, .production_id = 108), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 43), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 43), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 69), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 69), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, .production_id = 94), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, .production_id = 94), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 118), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 118), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 196), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 196), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 116), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 116), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4, .production_id = 43), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4, .production_id = 43), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5, .production_id = 108), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5, .production_id = 108), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 105), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 105), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 69), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 69), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 118), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 118), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1, .production_id = 1), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1, .production_id = 1), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 116), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 116), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 158), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 158), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 3), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 3), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 95), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 95), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 45), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 45), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 3), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 106), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 106), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 105), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 105), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 51), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 51), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 50), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 50), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 20), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 20), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 50), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 50), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 49), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 49), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 20), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 20), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 98), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 98), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 20), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 20), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 96), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 96), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 140), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 140), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 3), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 3), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 99), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 99), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 20), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 20), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 20), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 20), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 12), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 12), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 45), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 45), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration_list, 2), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration_list, 2), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 45), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 45), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 202), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 202), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3, .production_id = 19), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3, .production_id = 19), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 201), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 201), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 62), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 62), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 200), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 200), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 196), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 196), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 12), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 176), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 176), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 12), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 12), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 177), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 177), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 12), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 12), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 177), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 177), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 99), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 99), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 199), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 199), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 116), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 116), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 148), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 148), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 149), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 149), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 187), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 187), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 186), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 186), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 185), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 185), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 159), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 159), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 160), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 160), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 12), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 11), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 11), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 180), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 180), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 69), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 69), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 10), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 10), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 111), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 111), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 47), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 47), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 111), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 111), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 27), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 27), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 28), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 28), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 28), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 28), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 66), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 66), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 67), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 67), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 67), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 67), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 151), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 151), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 150), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 150), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 8), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 8), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 151), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 151), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 1), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym__array_destructing_element, 3), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2584), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 24), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 24), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 110), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 5, .production_id = 110), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1465), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(753), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2132), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2273), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(97), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2671), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(125), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1445), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1896), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2151), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1678), + [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1606), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_by_ref, 2), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_by_ref, 2), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 48), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 48), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_name, 2, .production_id = 58), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_name, 2, .production_id = 58), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 4, .production_id = 57), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 4, .production_id = 57), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 56), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 56), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 21), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 21), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 97), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 97), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 7, .production_id = 179), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 7, .production_id = 179), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 6, .production_id = 147), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 6, .production_id = 147), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 7, .production_id = 178), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 7, .production_id = 178), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6, .production_id = 97), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6, .production_id = 97), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 18), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 18), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 6, .production_id = 146), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 6, .production_id = 146), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 3, .production_id = 22), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 3, .production_id = 22), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc, 5, .production_id = 103), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nowdoc, 5, .production_id = 103), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 102), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 102), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc, 5, .production_id = 101), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc, 5, .production_id = 101), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 21), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 21), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 56), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 56), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 2), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 2), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encapsed_string, 3), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encapsed_string, 3), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_modifier, 1), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_modifier, 1), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 113), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 113), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1459), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 73), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 73), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 74), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 74), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 75), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 75), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 195), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 8, .production_id = 195), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 182), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 182), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 7, .production_id = 52), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 7, .production_id = 52), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 163), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 163), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 155), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 155), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 47), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 47), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 88), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 88), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 89), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 89), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 90), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 90), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 157), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 157), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 156), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 156), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 183), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 183), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 154), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 154), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 135), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 135), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 20), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 20), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 153), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 153), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 152), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 152), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 184), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 184), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5, .production_id = 52), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5, .production_id = 52), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 42), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 42), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 31), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 31), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 41), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 41), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2, .production_id = 5), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 112), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 112), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 114), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 114), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 68), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 68), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 123), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 123), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 39), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 39), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 115), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 115), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 2), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 2), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 181), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 181), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 122), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 122), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command_expression, 3), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_command_expression, 3), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6, .production_id = 52), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6, .production_id = 52), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_suppression_expression, 2), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_suppression_expression, 2), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3, .production_id = 55), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 3, .production_id = 55), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 52), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 52), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 14), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 14), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 121), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 121), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 5), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 5), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_assignment_expression, 4, .production_id = 61), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 65), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 65), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 26), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 24), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 4), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 4), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat1, 1), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 1), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 109), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 109), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_group, 3), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_group, 3), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1371), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1350), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1365), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1368), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1370), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1366), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1370), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1371), + [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1470), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1568), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1136), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1350), + [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1365), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1368), + [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1370), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1366), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1459), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 32), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 165), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 59), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 60), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 188), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 189), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 6, .production_id = 190), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 191), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 141), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 142), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 134), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 86), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 128), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 126), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 124), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 7, .production_id = 197), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 169), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 104), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 171), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 167), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 164), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 166), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1371), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1470), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1568), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(2365), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1350), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1365), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1368), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1370), + [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1366), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 2), SHIFT_REPEAT(1459), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1), + [2912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__modifier, 1), REDUCE(sym_named_type, 1), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_final_modifier, 1), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final_modifier, 1), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_modifier, 1), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_modifier, 1), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_modifier, 1), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_modifier, 1), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 173), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 174), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(369), + [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1612), + [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1612), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1460), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(1662), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 137), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_heredoc_body, 2), SHIFT(1460), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 138), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 139), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 10), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 92), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 30), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 172), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 172), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 192), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_member_declaration, 1), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_declaration_list_repeat1, 1), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1, .production_id = 1), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 91), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 44), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 93), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 3, .production_id = 11), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 6, .production_id = 198), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(369), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1612), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1612), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), SHIFT_REPEAT(1662), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 5, .production_id = 193), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 43), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 192), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 43), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_case, 4, .production_id = 82), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 3, .production_id = 136), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(345), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1689), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1689), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), SHIFT_REPEAT(1636), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(242), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1681), + [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1681), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 2), SHIFT_REPEAT(1631), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3251] = {.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), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3258] = {.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), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types, 1), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 4), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_intersection_type_repeat1, 2), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), + [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1387), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1385), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1375), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 3, .dynamic_precedence = -1), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 2, .dynamic_precedence = -1), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunctive_normal_form_type, 4, .dynamic_precedence = -1), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2726), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2533), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_subscript_expression, 4), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_expression, 4), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__complex_string_part, 3), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__complex_string_part, 3), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(409), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(2315), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3646] = {.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(1388), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 1), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body_heredoc, 2), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 28), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_member_access_expression, 3, .production_id = 28), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_string_part, 1, .production_id = 7), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_part, 1, .production_id = 7), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 51), SHIFT(2477), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 51), SHIFT(82), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 20), SHIFT(2477), + [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 20), SHIFT(82), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_string_body, 1), + [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 1), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 1), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_execution_operator_body, 2), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interpolated_string_body, 2), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), + [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2584), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1378), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1383), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1386), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 38), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_disjunctive_normal_form_type_repeat1, 2), SHIFT_REPEAT(1382), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2567), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1384), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2567), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 13), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 100), + [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 100), SHIFT_REPEAT(2328), + [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 100), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1464), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2567), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), + [4073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1953), + [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1953), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(2477), + [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1834), + [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1834), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_intersection_type, 2), SHIFT(1388), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, .production_id = 4), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, .production_id = 76), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 76), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 2), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 2), SHIFT_REPEAT(2086), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1580), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), + [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1709), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), + [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1995), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_intersection_type_repeat1, 2), SHIFT_REPEAT(1388), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nowdoc_body, 2), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, .production_id = 4), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1477), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), + [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1986), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), + [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(2016), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2032), + [4260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2032), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_interface_clause_repeat1, 2), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), + [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1468), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 2), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 131), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 133), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 1), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 16), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 125), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), + [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_interface_clause_repeat1, 2), SHIFT_REPEAT(1496), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(149), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 119), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 35), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 20), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 20), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 25), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(154), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 87), + [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(349), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 1, .production_id = 6), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 29), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 145), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 3), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nowdoc_body_repeat1, 1), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 33), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 2, .production_id = 4), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 2, .production_id = 34), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 40), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 4, .production_id = 130), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 36), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 37), + [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1724), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 5, .production_id = 168), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1793), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(133), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 145), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(150), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 54), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 49), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 49), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 72), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(824), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 53), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 54), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(155), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 85), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing_element, 3, .production_id = 54), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 84), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 83), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 81), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(144), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 79), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_promotion_parameter, 3, .production_id = 78), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), SHIFT_REPEAT(1458), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_group_repeat1, 2), + [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(724), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 63), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 70), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(2269), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 77), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 80), + [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 82), + [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 3), REDUCE(sym_array_element_initializer, 3, .production_id = 55), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(2269), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 170), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 11), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 4), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 144), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing_element, 1), REDUCE(sym_array_element_initializer, 1), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2584), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 127), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 129), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_reference, 2), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 132), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 3, .production_id = 17), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 120), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 117), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name_as_prefix, 4), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 6, .production_id = 162), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 5, .production_id = 107), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 46), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_subscript_unary_expression, 2), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 3), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_string_array_access_argument, 1), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 64), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow_function_header, 4, .production_id = 71), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5346] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), }; enum ts_external_scanner_symbol_identifiers { @@ -144215,10 +148161,10 @@ static const bool ts_external_scanner_states[15][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, @@ -144226,13 +148172,13 @@ static const bool ts_external_scanner_states[15][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__eof] = true, }, @@ -144244,10 +148190,10 @@ static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_end] = true, }, [13] = { - [ts_external_token_heredoc_start] = true, + [ts_external_token_nowdoc_string] = true, }, [14] = { - [ts_external_token_nowdoc_string] = true, + [ts_external_token_heredoc_start] = true, }, }; @@ -144260,15 +148206,11 @@ 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 TREE_SITTER_HIDE_SYMBOLS -#define TS_PUBLIC -#elif defined(_WIN32) -#define TS_PUBLIC __declspec(dllexport) -#else -#define TS_PUBLIC __attribute__((visibility("default"))) +#ifdef _WIN32 +#define extern __declspec(dllexport) #endif -TS_PUBLIC const TSLanguage *tree_sitter_php() { +extern const TSLanguage *tree_sitter_php(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/resources/language-metavariables/tree-sitter-php/php/src/tree_sitter/alloc.h b/resources/language-metavariables/tree-sitter-php/php/src/tree_sitter/alloc.h deleted file mode 100644 index 1f4466d75..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/src/tree_sitter/alloc.h +++ /dev/null @@ -1,54 +0,0 @@ -#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/resources/language-metavariables/tree-sitter-php/php/src/tree_sitter/array.h b/resources/language-metavariables/tree-sitter-php/php/src/tree_sitter/array.h deleted file mode 100644 index 15a3b233b..000000000 --- a/resources/language-metavariables/tree-sitter-php/php/src/tree_sitter/array.h +++ /dev/null @@ -1,290 +0,0 @@ -#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/resources/language-metavariables/tree-sitter-php/php_only/.editorconfig b/resources/language-metavariables/tree-sitter-php/php_only/.editorconfig deleted file mode 100644 index d3a8b5b69..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/.editorconfig +++ /dev/null @@ -1,39 +0,0 @@ -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/resources/language-metavariables/tree-sitter-php/php_only/.gitattributes b/resources/language-metavariables/tree-sitter-php/php_only/.gitattributes deleted file mode 100644 index ffb52abec..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/.gitattributes +++ /dev/null @@ -1,11 +0,0 @@ -* text eol=lf - -src/*.json linguist-generated -src/parser.c linguist-generated -src/tree_sitter/* linguist-generated - -bindings/** linguist-generated -binding.gyp linguist-generated -setup.py linguist-generated -Makefile linguist-generated -Package.swift linguist-generated diff --git a/resources/language-metavariables/tree-sitter-php/php_only/.gitignore b/resources/language-metavariables/tree-sitter-php/php_only/.gitignore deleted file mode 100644 index 27fc43f72..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/.gitignore +++ /dev/null @@ -1,38 +0,0 @@ -# Rust artifacts -Cargo.lock -target/ - -# Node artifacts -build/ -prebuilds/ -node_modules/ -*.tgz - -# Swift artifacts -.build/ - -# Go artifacts -go.sum -_obj/ - -# Python artifacts -.venv/ -dist/ -*.egg-info -*.whl - -# C artifacts -*.a -*.so -*.so.* -*.dylib -*.dll -*.pc - -# Example dirs -/examples/*/ - -# Grammar volatiles -*.wasm -*.obj -*.o diff --git a/resources/language-metavariables/tree-sitter-php/php_only/Cargo.toml b/resources/language-metavariables/tree-sitter-php/php_only/Cargo.toml index 07148ddb0..e1d456d46 100644 --- a/resources/language-metavariables/tree-sitter-php/php_only/Cargo.toml +++ b/resources/language-metavariables/tree-sitter-php/php_only/Cargo.toml @@ -1,23 +1,26 @@ [package] name = "tree-sitter-php-only" -description = "PhpOnly grammar for tree-sitter" +description = "php-only grammar for the tree-sitter parsing library" version = "0.0.1" -license = "MIT" -readme = "README.md" -keywords = ["incremental", "parsing", "tree-sitter", "php-only"] +keywords = ["incremental", "parsing", "php-only"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-php-only" -edition = "2021" -autoexamples = false +edition = "2018" +license = "MIT" build = "bindings/rust/build.rs" -include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", +] [lib] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = ">=0.22.2" +tree-sitter = "~0.20.10" [build-dependencies] -cc = "1.0.87" +cc = "1.0" diff --git a/resources/language-metavariables/tree-sitter-php/php_only/Makefile b/resources/language-metavariables/tree-sitter-php/php_only/Makefile deleted file mode 100644 index a4bf96ad4..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/Makefile +++ /dev/null @@ -1,110 +0,0 @@ -VERSION := 0.0.1 - -LANGUAGE_NAME := tree-sitter-php_only - -# 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 - -# object files -OBJS := $(patsubst %.c,%.o,$(wildcard $(SRC_DIR)/*.c)) - -# 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)|' $< > $@ - -$(SRC_DIR)/parser.c: 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 -m644 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) - -test: - $(TS) test - -.PHONY: all install uninstall clean test diff --git a/resources/language-metavariables/tree-sitter-php/php_only/Package.swift b/resources/language-metavariables/tree-sitter-php/php_only/Package.swift deleted file mode 100644 index 586cedaf9..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/Package.swift +++ /dev/null @@ -1,48 +0,0 @@ -// swift-tools-version:5.3 -import PackageDescription - -let package = Package( - name: "TreeSitterPhpOnly", - platforms: [.macOS(.v10_13), .iOS(.v11)], - products: [ - .library(name: "TreeSitterPhpOnly", targets: ["TreeSitterPhpOnly"]), - ], - dependencies: [], - targets: [ - .target(name: "TreeSitterPhpOnly", - path: ".", - exclude: [ - "Cargo.toml", - "Makefile", - "binding.gyp", - "bindings/c", - "bindings/go", - "bindings/node", - "bindings/python", - "bindings/rust", - "prebuilds", - "grammar.js", - "package.json", - "package-lock.json", - "pyproject.toml", - "setup.py", - "test", - "examples", - ".editorconfig", - ".github", - ".gitignore", - ".gitattributes", - ".gitmodules", - ], - sources: [ - "src/parser.c", - // NOTE: if your language has an external scanner, add it here. - ], - resources: [ - .copy("queries") - ], - publicHeadersPath: "bindings/swift", - cSettings: [.headerSearchPath("src")]) - ], - cLanguageStandard: .c11 -) diff --git a/resources/language-metavariables/tree-sitter-php/php_only/binding.gyp b/resources/language-metavariables/tree-sitter-php/php_only/binding.gyp index 82358c213..d84692e9e 100644 --- a/resources/language-metavariables/tree-sitter-php/php_only/binding.gyp +++ b/resources/language-metavariables/tree-sitter-php/php_only/binding.gyp @@ -2,20 +2,18 @@ "targets": [ { "target_name": "tree_sitter_php_only_binding", - "dependencies": [ - " +#include "tree_sitter/parser.h" +#include +#include "nan.h" -typedef struct TSLanguage TSLanguage; +using namespace v8; -extern "C" TSLanguage *tree_sitter_php_only(); +extern "C" TSLanguage * tree_sitter_php_only(); -// "tree-sitter", "language" hashed with BLAKE2 -const napi_type_tag LANGUAGE_TYPE_TAG = { - 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 -}; +namespace { -Napi::Object Init(Napi::Env env, Napi::Object exports) { - exports["name"] = Napi::String::New(env, "php_only"); - auto language = Napi::External::New(env, tree_sitter_php_only()); - language.TypeTag(&LANGUAGE_TYPE_TAG); - exports["language"] = language; - return exports; +NAN_METHOD(New) {} + +void Init(Local exports, Local module) { + Local tpl = Nan::New(New); + tpl->SetClassName(Nan::New("Language").ToLocalChecked()); + tpl->InstanceTemplate()->SetInternalFieldCount(1); + + Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); + Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); + Nan::SetInternalFieldPointer(instance, 0, tree_sitter_php_only()); + + Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("php_only").ToLocalChecked()); + Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); } -NODE_API_MODULE(tree_sitter_php_only_binding, Init) +NODE_MODULE(tree_sitter_php_only_binding, Init) + +} // namespace diff --git a/resources/language-metavariables/tree-sitter-php/php_only/bindings/node/index.d.ts b/resources/language-metavariables/tree-sitter-php/php_only/bindings/node/index.d.ts deleted file mode 100644 index efe259eed..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/bindings/node/index.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -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 language: Language; -export = language; diff --git a/resources/language-metavariables/tree-sitter-php/php_only/bindings/node/index.js b/resources/language-metavariables/tree-sitter-php/php_only/bindings/node/index.js index 6657bcf42..48949b325 100644 --- a/resources/language-metavariables/tree-sitter-php/php_only/bindings/node/index.js +++ b/resources/language-metavariables/tree-sitter-php/php_only/bindings/node/index.js @@ -1,6 +1,18 @@ -const root = require("path").join(__dirname, "..", ".."); - -module.exports = require("node-gyp-build")(root); +try { + module.exports = require("../../build/Release/tree_sitter_php_only_binding"); +} catch (error1) { + if (error1.code !== 'MODULE_NOT_FOUND') { + throw error1; + } + try { + module.exports = require("../../build/Debug/tree_sitter_php_only_binding"); + } catch (error2) { + if (error2.code !== 'MODULE_NOT_FOUND') { + throw error2; + } + throw error1 + } +} try { module.exports.nodeTypeInfo = require("../../src/node-types.json"); diff --git a/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/__init__.py b/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/__init__.py deleted file mode 100644 index 156359398..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -"PhpOnly grammar for tree-sitter" - -from ._binding import language - -__all__ = ["language"] diff --git a/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/__init__.pyi b/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/__init__.pyi deleted file mode 100644 index 5416666fc..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/__init__.pyi +++ /dev/null @@ -1 +0,0 @@ -def language() -> int: ... diff --git a/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/binding.c b/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/binding.c deleted file mode 100644 index e3639f322..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/binding.c +++ /dev/null @@ -1,27 +0,0 @@ -#include - -typedef struct TSLanguage TSLanguage; - -TSLanguage *tree_sitter_php_only(void); - -static PyObject* _binding_language(PyObject *self, PyObject *args) { - return PyLong_FromVoidPtr(tree_sitter_php_only()); -} - -static PyMethodDef methods[] = { - {"language", _binding_language, METH_NOARGS, - "Get the tree-sitter language for this grammar."}, - {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/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/py.typed b/resources/language-metavariables/tree-sitter-php/php_only/bindings/python/tree_sitter_php_only/py.typed deleted file mode 100644 index e69de29bb..000000000 diff --git a/resources/language-metavariables/tree-sitter-php/php_only/bindings/rust/build.rs b/resources/language-metavariables/tree-sitter-php/php_only/bindings/rust/build.rs index 2822a38ed..f14262473 100644 --- a/resources/language-metavariables/tree-sitter-php/php_only/bindings/rust/build.rs +++ b/resources/language-metavariables/tree-sitter-php/php_only/bindings/rust/build.rs @@ -2,18 +2,39 @@ fn main() { let src_dir = std::path::Path::new("src"); let mut c_config = cc::Build::new(); - c_config.std("c11").include(src_dir); - + c_config.include(&src_dir); + c_config + .flag_if_supported("-w") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - // NOTE: if your language uses an external scanner, uncomment this block: + // If your language uses an external scanner written in C, + // then include this block of code: + /* let scanner_path = src_dir.join("scanner.c"); c_config.file(&scanner_path); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); */ - c_config.compile("tree-sitter-php_only"); + c_config.compile("parser"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + // If your language uses an external scanner written in C++, + // then include this block of code: + + /* + let mut cpp_config = cc::Build::new(); + cpp_config.cpp(true); + cpp_config.include(&src_dir); + cpp_config + .flag_if_supported("-w") + .flag_if_supported("-Wno-unused-but-set-variable"); + let scanner_path = src_dir.join("scanner.cc"); + cpp_config.file(&scanner_path); + cpp_config.compile("scanner"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ } diff --git a/resources/language-metavariables/tree-sitter-php/php_only/bindings/rust/lib.rs b/resources/language-metavariables/tree-sitter-php/php_only/bindings/rust/lib.rs index 687d43309..7ba1b0dc7 100644 --- a/resources/language-metavariables/tree-sitter-php/php_only/bindings/rust/lib.rs +++ b/resources/language-metavariables/tree-sitter-php/php_only/bindings/rust/lib.rs @@ -1,15 +1,13 @@ -//! This crate provides PhpOnly language support for the [tree-sitter][] parsing library. +//! This crate provides php_only language support for the [tree-sitter][] parsing library. //! //! Typically, you will use the [language][language func] function to add this language to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` -//! let code = r#" -//! "#; +//! let code = ""; //! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(&tree_sitter_php_only::language()).expect("Error loading PhpOnly grammar"); +//! parser.set_language(tree_sitter_php_only::language()).expect("Error loading php_only 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 @@ -33,14 +31,14 @@ pub fn language() -> 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 NODE_TYPES: &str = include_str!("../../src/node-types.json"); +pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); // Uncomment these to include any queries that this grammar contains -// pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); -// pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); -// pub const LOCALS_QUERY: &str = include_str!("../../queries/locals.scm"); -// pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); +// pub const HIGHLIGHTS_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"); #[cfg(test)] mod tests { @@ -48,7 +46,7 @@ mod tests { fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(&super::language()) - .expect("Error loading PhpOnly grammar"); + .set_language(super::language()) + .expect("Error loading php_only language"); } } diff --git a/resources/language-metavariables/tree-sitter-php/php_only/bindings/swift/TreeSitterPhpOnly/php_only.h b/resources/language-metavariables/tree-sitter-php/php_only/bindings/swift/TreeSitterPhpOnly/php_only.h deleted file mode 100644 index 35ac46b2d..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/bindings/swift/TreeSitterPhpOnly/php_only.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef TREE_SITTER_PHP_ONLY_H_ -#define TREE_SITTER_PHP_ONLY_H_ - -typedef struct TSLanguage TSLanguage; - -#ifdef __cplusplus -extern "C" { -#endif - -const TSLanguage *tree_sitter_php_only(void); - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PHP_ONLY_H_ diff --git a/resources/language-metavariables/tree-sitter-php/php_only/package.json b/resources/language-metavariables/tree-sitter-php/php_only/package.json index c48e5ed35..622fd5b31 100644 --- a/resources/language-metavariables/tree-sitter-php/php_only/package.json +++ b/resources/language-metavariables/tree-sitter-php/php_only/package.json @@ -1,6 +1,5 @@ { "main": "../bindings/node/php_only", - "types": "bindings/node", "tree-sitter": [ { "scope": "source.php", @@ -14,31 +13,5 @@ "../common/scanner.h" ] } - ], - "dependencies": { - "node-gyp-build": "^4.8.0" - }, - "peerDependencies": { - "tree-sitter": "^0.21.0" - }, - "peerDependenciesMeta": { - "tree_sitter": { - "optional": true - } - }, - "devDependencies": { - "prebuildify": "^6.0.0" - }, - "scripts": { - "install": "node-gyp-build", - "prebuildify": "prebuildify --napi --strip" - }, - "files": [ - "grammar.js", - "binding.gyp", - "prebuilds/**", - "bindings/node/*", - "queries/*", - "src/**" ] } diff --git a/resources/language-metavariables/tree-sitter-php/php_only/pyproject.toml b/resources/language-metavariables/tree-sitter-php/php_only/pyproject.toml deleted file mode 100644 index 66435e65f..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/pyproject.toml +++ /dev/null @@ -1,29 +0,0 @@ -[build-system] -requires = ["setuptools>=42", "wheel"] -build-backend = "setuptools.build_meta" - -[project] -name = "tree-sitter-php-only" -description = "PhpOnly grammar for tree-sitter" -version = "0.0.1" -keywords = ["incremental", "parsing", "tree-sitter", "php-only"] -classifiers = [ - "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", - "Topic :: Software Development :: Compilers", - "Topic :: Text Processing :: Linguistic", - "Typing :: Typed" -] -requires-python = ">=3.8" -license.text = "MIT" -readme = "README.md" - -[project.urls] -Homepage = "https://github.com/tree-sitter/tree-sitter-php-only" - -[project.optional-dependencies] -core = ["tree-sitter~=0.21"] - -[tool.cibuildwheel] -build = "cp38-*" -build-frontend = "build" diff --git a/resources/language-metavariables/tree-sitter-php/php_only/setup.py b/resources/language-metavariables/tree-sitter-php/php_only/setup.py deleted file mode 100644 index 06188750a..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/setup.py +++ /dev/null @@ -1,57 +0,0 @@ -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_php_only", "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_php_only": ["*.pyi", "py.typed"], - "tree_sitter_php_only.queries": ["*.scm"], - }, - ext_package="tree_sitter_php_only", - ext_modules=[ - Extension( - name="_binding", - sources=[ - "bindings/python/tree_sitter_php_only/binding.c", - "src/parser.c", - # NOTE: if your language uses an external scanner, add it here. - ], - extra_compile_args=( - ["-std=c11"] if system() != 'Windows' else [] - ), - define_macros=[ - ("Py_LIMITED_API", "0x03080000"), - ("PY_SSIZE_T_CLEAN", None) - ], - include_dirs=["src"], - py_limited_api=True, - ) - ], - cmdclass={ - "build": Build, - "bdist_wheel": BdistWheel - }, - zip_safe=False -) diff --git a/resources/language-metavariables/tree-sitter-php/php_only/src/parser.c b/resources/language-metavariables/tree-sitter-php/php_only/src/parser.c index f12c3e472..1981f451f 100644 --- a/resources/language-metavariables/tree-sitter-php/php_only/src/parser.c +++ b/resources/language-metavariables/tree-sitter-php/php_only/src/parser.c @@ -1,6 +1,7 @@ #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -137255,15 +137256,11 @@ 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 TREE_SITTER_HIDE_SYMBOLS -#define TS_PUBLIC -#elif defined(_WIN32) -#define TS_PUBLIC __declspec(dllexport) -#else -#define TS_PUBLIC __attribute__((visibility("default"))) +#ifdef _WIN32 +#define extern __declspec(dllexport) #endif -TS_PUBLIC const TSLanguage *tree_sitter_php_only() { +extern const TSLanguage *tree_sitter_php_only(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/resources/language-metavariables/tree-sitter-php/php_only/src/tree_sitter/alloc.h b/resources/language-metavariables/tree-sitter-php/php_only/src/tree_sitter/alloc.h deleted file mode 100644 index 1f4466d75..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/src/tree_sitter/alloc.h +++ /dev/null @@ -1,54 +0,0 @@ -#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/resources/language-metavariables/tree-sitter-php/php_only/src/tree_sitter/array.h b/resources/language-metavariables/tree-sitter-php/php_only/src/tree_sitter/array.h deleted file mode 100644 index 15a3b233b..000000000 --- a/resources/language-metavariables/tree-sitter-php/php_only/src/tree_sitter/array.h +++ /dev/null @@ -1,290 +0,0 @@ -#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/resources/language-metavariables/tree-sitter-php/src/grammar.json b/resources/language-metavariables/tree-sitter-php/src/grammar.json deleted file mode 100644 index 075bf42ce..000000000 --- a/resources/language-metavariables/tree-sitter-php/src/grammar.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "php", - "rules": { - "source_file": { - "type": "STRING", - "value": "hello" - } - }, - "extras": [ - { - "type": "PATTERN", - "value": "\\s" - } - ], - "conflicts": [], - "precedences": [], - "externals": [], - "inline": [], - "supertypes": [] -} diff --git a/resources/language-metavariables/tree-sitter-php/src/node-types.json b/resources/language-metavariables/tree-sitter-php/src/node-types.json deleted file mode 100644 index 43a64428b..000000000 --- a/resources/language-metavariables/tree-sitter-php/src/node-types.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "type": "source_file", - "named": true, - "fields": {} - }, - { - "type": "hello", - "named": false - } -] \ No newline at end of file diff --git a/resources/language-metavariables/tree-sitter-php/src/parser.backup b/resources/language-metavariables/tree-sitter-php/src/parser.backup deleted file mode 100644 index e869dcfff..000000000 --- a/resources/language-metavariables/tree-sitter-php/src/parser.backup +++ /dev/null @@ -1,175 +0,0 @@ -#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 4 -#define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 3 -#define ALIAS_COUNT 0 -#define TOKEN_COUNT 2 -#define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 0 -#define MAX_ALIAS_SEQUENCE_LENGTH 1 -#define PRODUCTION_ID_COUNT 1 - -enum ts_symbol_identifiers { - anon_sym_hello = 1, - sym_source_file = 2, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [anon_sym_hello] = "hello", - [sym_source_file] = "source_file", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [anon_sym_hello] = anon_sym_hello, - [sym_source_file] = sym_source_file, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [anon_sym_hello] = { - .visible = true, - .named = false, - }, - [sym_source_file] = { - .visible = true, - .named = true, - }, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, -}; - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(5); - if (lookahead == 'h') ADVANCE(1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0) - END_STATE(); - case 1: - if (lookahead == 'e') ADVANCE(3); - END_STATE(); - case 2: - if (lookahead == 'l') ADVANCE(4); - END_STATE(); - case 3: - if (lookahead == 'l') ADVANCE(2); - END_STATE(); - case 4: - if (lookahead == 'o') ADVANCE(6); - END_STATE(); - case 5: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 6: - ACCEPT_TOKEN(anon_sym_hello); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 0}, - [2] = {.lex_state = 0}, - [3] = {.lex_state = 0}, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_hello] = ACTIONS(1), - }, - [1] = { - [sym_source_file] = STATE(3), - [anon_sym_hello] = ACTIONS(3), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 1, - ACTIONS(5), 1, - ts_builtin_sym_end, - [4] = 1, - ACTIONS(7), 1, - ts_builtin_sym_end, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 4, -}; - -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(2), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [7] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), -}; - -#ifdef __cplusplus -extern "C" { -#endif -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_php(void) { - static const TSLanguage language = { - .version = LANGUAGE_VERSION, - .symbol_count = SYMBOL_COUNT, - .alias_count = ALIAS_COUNT, - .token_count = TOKEN_COUNT, - .external_token_count = EXTERNAL_TOKEN_COUNT, - .state_count = STATE_COUNT, - .large_state_count = LARGE_STATE_COUNT, - .production_id_count = PRODUCTION_ID_COUNT, - .field_count = FIELD_COUNT, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = &ts_parse_table[0][0], - .small_parse_table = ts_small_parse_table, - .small_parse_table_map = ts_small_parse_table_map, - .parse_actions = ts_parse_actions, - .symbol_names = ts_symbol_names, - .symbol_metadata = ts_symbol_metadata, - .public_symbol_map = ts_symbol_map, - .alias_map = ts_non_terminal_alias_map, - .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, - .lex_fn = ts_lex, - .primary_state_ids = ts_primary_state_ids, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/resources/language-metavariables/tree-sitter-php/src/tree_sitter/alloc.h b/resources/language-metavariables/tree-sitter-php/src/tree_sitter/alloc.h deleted file mode 100644 index 1f4466d75..000000000 --- a/resources/language-metavariables/tree-sitter-php/src/tree_sitter/alloc.h +++ /dev/null @@ -1,54 +0,0 @@ -#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/resources/language-metavariables/tree-sitter-php/src/tree_sitter/array.h b/resources/language-metavariables/tree-sitter-php/src/tree_sitter/array.h deleted file mode 100644 index 15a3b233b..000000000 --- a/resources/language-metavariables/tree-sitter-php/src/tree_sitter/array.h +++ /dev/null @@ -1,290 +0,0 @@ -#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/resources/language-metavariables/tree-sitter-php/src/tree_sitter/parser.h b/resources/language-metavariables/tree-sitter-php/src/tree_sitter/parser.h deleted file mode 100644 index 17b4fde98..000000000 --- a/resources/language-metavariables/tree-sitter-php/src/tree_sitter/parser.h +++ /dev/null @@ -1,230 +0,0 @@ -#ifndef TREE_SITTER_PARSER_H_ -#define TREE_SITTER_PARSER_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include - -#define ts_builtin_sym_error ((TSSymbol)-1) -#define ts_builtin_sym_end 0 -#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSStateId; -typedef uint16_t TSSymbol; -typedef uint16_t TSFieldId; -typedef struct TSLanguage TSLanguage; -#endif - -typedef struct { - TSFieldId field_id; - uint8_t child_index; - bool inherited; -} TSFieldMapEntry; - -typedef struct { - uint16_t index; - uint16_t length; -} TSFieldMapSlice; - -typedef struct { - bool visible; - bool named; - bool supertype; -} TSSymbolMetadata; - -typedef struct TSLexer TSLexer; - -struct TSLexer { - int32_t lookahead; - TSSymbol result_symbol; - void (*advance)(TSLexer *, bool); - void (*mark_end)(TSLexer *); - uint32_t (*get_column)(TSLexer *); - bool (*is_at_included_range_start)(const TSLexer *); - bool (*eof)(const TSLexer *); -}; - -typedef enum { - TSParseActionTypeShift, - TSParseActionTypeReduce, - TSParseActionTypeAccept, - TSParseActionTypeRecover, -} TSParseActionType; - -typedef union { - struct { - uint8_t type; - TSStateId state; - bool extra; - bool repetition; - } shift; - struct { - uint8_t type; - uint8_t child_count; - TSSymbol symbol; - int16_t dynamic_precedence; - uint16_t production_id; - } reduce; - uint8_t type; -} TSParseAction; - -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; -} TSLexMode; - -typedef union { - TSParseAction action; - struct { - uint8_t count; - bool reusable; - } entry; -} TSParseActionEntry; - -struct TSLanguage { - uint32_t version; - uint32_t symbol_count; - uint32_t alias_count; - uint32_t token_count; - uint32_t external_token_count; - uint32_t state_count; - uint32_t large_state_count; - uint32_t production_id_count; - uint32_t field_count; - uint16_t max_alias_sequence_length; - const uint16_t *parse_table; - const uint16_t *small_parse_table; - const uint32_t *small_parse_table_map; - const TSParseActionEntry *parse_actions; - const char * const *symbol_names; - const char * const *field_names; - const TSFieldMapSlice *field_map_slices; - const TSFieldMapEntry *field_map_entries; - const TSSymbolMetadata *symbol_metadata; - const TSSymbol *public_symbol_map; - const uint16_t *alias_map; - const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; - bool (*lex_fn)(TSLexer *, TSStateId); - bool (*keyword_lex_fn)(TSLexer *, TSStateId); - TSSymbol keyword_capture_token; - struct { - const bool *states; - const TSSymbol *symbol_map; - void *(*create)(void); - void (*destroy)(void *); - bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); - unsigned (*serialize)(void *, char *); - void (*deserialize)(void *, const char *, unsigned); - } external_scanner; - const TSStateId *primary_state_ids; -}; - -/* - * Lexer Macros - */ - -#ifdef _MSC_VER -#define UNUSED __pragma(warning(suppress : 4101)) -#else -#define UNUSED __attribute__((unused)) -#endif - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - UNUSED \ - bool eof = false; \ - int32_t lookahead; \ - goto start; \ - next_state: \ - lexer->advance(lexer, skip); \ - start: \ - skip = false; \ - lookahead = lexer->lookahead; - -#define ADVANCE(state_value) \ - { \ - state = state_value; \ - goto next_state; \ - } - -#define SKIP(state_value) \ - { \ - skip = true; \ - state = state_value; \ - goto next_state; \ - } - -#define ACCEPT_TOKEN(symbol_value) \ - result = true; \ - lexer->result_symbol = symbol_value; \ - lexer->mark_end(lexer); - -#define END_STATE() return result; - -/* - * Parse Table Macros - */ - -#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) - -#define STATE(id) id - -#define ACTIONS(id) id - -#define SHIFT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = (state_value) \ - } \ - }} - -#define SHIFT_REPEAT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = (state_value), \ - .repetition = true \ - } \ - }} - -#define SHIFT_EXTRA() \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .extra = true \ - } \ - }} - -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_